@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Poppins:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap');


/*------------------------------------
全体設定　ここから
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800
-------------------------------------*/
/* 初期設定 */
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', 'DM Sans', system-ui;
  font-weight: 400;
  color: #333;
  text-align: justify;
  word-break: break-all;
}

body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-weight: normal;
}
h1{
  font-size: 1rem;
}
h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
h3{
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1em;
}

p{
  line-height: 2;
}
img,
svg {
  width: 100%;
  object-fit: cover;
  display: block;
}
a {
  color: #fff;
  display: inline;
  text-align: center;
  vertical-align: baseline;
  text-decoration: none;
}
ul li {
  list-style-type: none;
}

.parentheses{
  display: inline-block;
  padding: 15px 20px;
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.75;
  position: relative;
  margin-bottom: 1.8em;
}
.parentheses::before{
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  top: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(26,107,168,0.5);
  border-left: 1px solid rgba(26,107,168,0.5);
}
.parentheses::after{
  content: "";
  position: absolute;
  width: 15px;
  height: 25px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(26,107,168,0.5);
  border-right: 1px solid rgba(26,107,168,0.5);
}
.flex-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sp-newline,
.sp-only{
  display: none;
}

@media screen and (max-width: 768px){
  h3{
    font-size: 4.0rem;
  }
  .pc-newline,
  .pc-only{
    display: none;
  }
  .sp-newline,
  .sp-only{
    display: block;
  }
  .sp-left{
    text-align: justify;
  }
}
@media screen and (max-width: 570px){
  body {
    font-size: 1.5rem;
  }
  h2{
    font-size: 1.6rem;
  }
  h3{
    font-size: 2.8rem;
  }
  p{
    line-height: 1.75;
  }
  .parentheses{
    padding: 10px 15px;
    font-size: 17px;
    margin-bottom: 1.3em;
  }
}

/* 初期設定----------------------------------------------- */

/* セクション設定 */
.section-wrapper{
  padding: 19.2rem 4rem;
}
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.sectiontitle_wrap{
  margin-bottom: 7em;
}
.subtitle_h2{
  color: #1a6ba8;
  font-size: 6.4rem;
  font-weight: 700;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.subtitle_h3{
  color: #1a6ba8;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  .subtitle_h2{
    font-size: 5.4rem;
  }
  .section-wrapper{
    padding: 8rem 4rem;
  }
}
@media screen and (max-width: 570px){
  .subtitle_h2{
    font-size: 3.5rem;
  }
  .subtitle_h3{
    font-size: 1.8rem;
  }
  .section-wrapper{
    padding: 6rem 2rem;
  }
  .sectiontitle_wrap{
    margin-bottom: 4em;
  }
}

/** -----------------------------------
ボタン
-------------------------------------**/
.button{
  display: block;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 12px;
  transition: all .2s;
  padding: 1.5em 0.75em;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  background: #000;
  position: relative;
  margin: 0 auto;
}
.button::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  bottom: -6px;
  left: 0;
  z-index: -1;
  transition: all .2s;
}
.button:hover{
  transform: translateY(6px);
}
.button:hover::after{
  transform: translateY(-6px);
}

.viremore_btn{
  display: inline-flex;
  margin-left: 30px;
  color: #1a6ba8;
  text-decoration: underline;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  align-items: center;
  gap:15px;
  position: relative;
  transition: all .2s;
}
.viremore_btn:hover{
  opacity: 0.8;
}
.viremore_btn::before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 22.5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 2;
  transition: all .2s;
}
.viremore_btn:hover::before{
  right: 20px;
}
.viremore_btn::after{
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1a6ba8;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  .button{
    font-size: 1.6rem;
  }
  .viremore_btn{
    margin-left: auto;
  }
  .viremore_btn::after{
    width: 40px;
    height: 40px;
  }
  .viremore_btn::before{
    right: 17.5px;
  }
}

/** -----------------------------------
ヘッダー
-------------------------------------**/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
  z-index: 10;
  background: linear-gradient(0deg, rgba(102, 102, 102, 0), rgba(0, 0, 0, 0.5));
}

#header .header-logo{
  max-width: 200px;
}
#header .header-logo img{
  object-fit: contain;
  object-position: center left;
}
#header .flex-container{
  align-items: center;
  flex-wrap: nowrap;
}
#header .gnav-pc-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .gnav-pc-wrap ul.gnav-pc{
  display: flex;
  text-align: center;
  gap: 40px;
}
#header .gnav-pc-wrap ul.gnav-pc li{
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: .2s all;
}
#header .gnav-pc-wrap ul.gnav-pc li:hover{
  opacity: 0.7;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #header .gnav-pc-wrap{
    display: none;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #header{
    padding: 10px 20px;
    padding-right: 0.5rem;
  }
  #header .header-logo{
    max-width: 150px;
  }
}

/*	ハンバーガーメニュー（ボタン）	*/
.openbtn{
  position: relative;
  cursor: pointer;
  width: 55px;
  height: 55px;
  transition: all .2s;
}
.openbtn span{
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
  transition: all .2s;
}
.openbtn span:nth-of-type(1) {
  top:18px;
}
.openbtn span:nth-of-type(2) {
  top:26px;
}
.openbtn span:nth-of-type(3) {
  top:34px;
}
.openbtn.is-active span{
  width: 55%;
  left: 12.7px;
}
.openbtn.is-active span:nth-of-type(1){
  top: 20px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.is-active span:nth-of-type(2){
  opacity: 0;
}
.openbtn.is-active span:nth-of-type(3) {
  top: 32px;
  transform: translateY(-6px) rotate(45deg);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  .openbtn{
    transform: scale(0.9);
  }
}


/*	ハンバーガーメニュー（メニュー）	*/
.gnav-sp-wrap{
  display: none;
  z-index: 7;
}
.gnav-sp-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  visibility: hidden;
  opacity: 0;
  background: rgba(255,255,255,0.9);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 9;
  padding: 4rem 2rem;
  overflow: auto;
  backdrop-filter: blur(5px);
}
.gnav-sp-list.is-active{
  visibility: visible;
  opacity: 1;
}
.gnav-sp-list ul.gnav-sp{
  width: 100%;
}
.gnav-sp-list ul.gnav-sp li{
  padding: 1.0em;
}
.gnav-sp-list ul.gnav-sp li a{
  font-size: 1.6rem;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  .gnav-sp-wrap{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
}


/** -----------------------------------
フッター
-------------------------------------**/
#footer {
  background-color: #1a69a8;
  padding: 9.6rem 4rem;
  text-align: center;
}
#footer .footerBtnWrap{
  margin-bottom: 96px;
}
#footer .footerBtnWrap .footerBtn{
  width: 49%;
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
#footer .footerBtnWrap .footerBtn *{
  transition: .2s all;
  line-height: 1;
  font-weight: 400;
}
#footer .footerBtnWrap .footerBtn:hover *{
  opacity: 0.6;
}
#footer .footerBtnWrap .footerBtn span{
  color: #1e5a9f;
  font-size: clamp(1.6em,3.5vw,2.2em);
  font-weight: 700;
  margin-bottom: 0.5em;
}
#footer .footerBtnWrap .footerBtn::after{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 10%;
  border-top: 4px solid #1e5a9f;
  border-right: 4px solid #1e5a9f;
  transform: translateY(-50%) rotate(45deg);
  transition: .2s all;
}
#footer .footerBtnWrap .footerBtn:hover::after{
  right: 8.5%;
  opacity: 0.6;
}
#footer .footer-logo{
  max-width: 200px;
}
#footer .gnav-footer-wrap ul.gnav-footer{
  display: flex;
  text-align: center;
  gap: 40px;
}
#footer .gnav-footer-wrap ul.gnav-footer li{
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: .2s all;
}
#footer .gnav-footer-wrap ul.gnav-footer li:hover{
  opacity: 0.7;
}
#footer .copyright{
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #fff;
  margin-top: 6em;
  display: block;
  letter-spacing: 0.05em;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #footer .footerNavWrap{
    justify-content: center;
  }
  #footer .flex-item.nav{
    display: none;
  }
}
@media screen and (max-width: 768px){
  #footer .footerBtnWrap .footerBtn{
    width: 100%;
  }
  #footer .footerBtnWrap .footerBtn:first-of-type{
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 570px){
  #footer{
    padding: 6rem 2rem;
  }
  #footer .footerBtnWrap{
    margin-bottom: 60px;
  }
  #footer .footerBtnWrap .footerBtn{
    padding: 20px;
    font-size: 14px;
  }
  #footer .footerBtnWrap .footerBtn span{
    margin-bottom: 0.4em;
  }
  #footer .footerBtnWrap .footerBtn::after{
    width: 10px;
    height: 10px;
    border-top: 2px solid #1e5a9f;
    border-right: 2px solid #1e5a9f;
  }
  #footer .footer-logo{
    max-width: 150px;
  }
  #footer .copyright{
    margin-top: 4em;
  }
}


/** -----------------------------------
下層ページ
-------------------------------------**/
#page-header{
  width: 100%;
  padding: 19.2rem 4.8rem;
  position: relative;
}
#page-header::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/mv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 23vw 15%;
  opacity: 0.3;
  z-index: -2;
}
#page-header::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: -1;
}
#page-header > *{
  text-align: left;
  color: #fff;
}

#pankuzu{
  width: 100%;
  padding: 2.4rem 4.8rem;
}
#pankuzu a,
#pankuzu span{
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#pankuzu a{
  color: #aaaaaa;
}
#pankuzu span{
  color: #1e5a9f;
}
#pankuzu *:not(:first-child)::before{
  content: "";
  margin: 0 20px 0 12px;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-0.15em);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #page-header{
    padding: 14rem 2rem 10rem;
  }
  #pankuzu{
    padding: 1.0rem 2rem;
  }
}


.lower-page{
  background: #f8f7f6;
}
.lower-page .section-wrapper{
  padding: 9.6rem 4.8rem;
}
.lower-page h3{
  font-size: 40px;
}
.lower-page .lp_titleWrap{
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 570px){
  .lower-page .section-wrapper{
    padding: 6rem 2rem;
  }
  .lower-page h3{
    font-size: 2.5rem;
  }
  .lower-page .lp_titleWrap{
    margin-bottom: 40px;
  }
}



/* contact */
#contact{
  text-align: center;
}
#contact .contact_wrap{
  background: #fff;
  border-radius: 12px;
  box-shadow: 20px 30px 50px rgba(0, 0, 0, 0.2);
  padding: 80px 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#contact .contact_wrap .topText{
  font-size: 15px;
  margin-bottom: 40px;
  font-weight: 400;
}
#contact table{
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  line-height: 2.14;
  text-align: left;
  border-spacing: 0 2rem;
}
#contact table th,
#contact table td{
  display: block;
  width: 100%;
}
#contact table th{
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.3em;
}
#contact table input,
#contact table textarea,
#contact table select,
#contact table date{
  font-size: 1.4rem;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #eee;
  background: #f8f7f6;
  border-radius: 1rem;
}
#contact table input:focus,
#contact table textarea:focus,
#contact table select:focus{
  border: 1px solid #aaa;
  outline: 0;
}
#contact table textarea{
  height: 18rem;
  resize: none;
}
#contact table .essential{
  color: #f23a3c;
  font-weight: 700;
  margin-left: 0.4em;
}
#contact .contactBtn{
  background: #333;
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}


/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #contact .contact_wrap{
    padding: 40px 20px;
  }
  #contact .contact_wrap .topText{
    font-size: 14px;
  }
}
