/* ローディング */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1s 2.5s forwards;
  z-index:1000;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}



/* ヘッダー */
    header {
      position: fixed;
      z-index: 10;
      top: 0;
      right: 0;
      left: 0;
      width: 100%;
      max-width: 1920px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
      background: #122b51;
    }

    @media (min-width: 1025px) {
      header {
        padding: 0;
        background: #fff;
      }

    }

    @media (max-width: 768px) and (orientation: landscape) {
      header {
        padding: clamp(10px, 2.998500749625187vw, 20px);
      }
    }

    .header-container {
      display: -ms-grid;
      display: grid;
      -webkit-box-align: center;
      align-items: center;
      -ms-flex-align: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -ms-grid-columns: 1fr 2fr;
      background: #fff;
      grid-template-columns: 3fr 2fr 1fr;
    }


    @media (min-width: 1025px) {
    .header-container {
      grid-template-columns: 2fr 0fr 4fr;
      }

    }

    @media (max-width: 768px) and (orientation: landscape) {
    .header-container {
      grid-template-columns: 2.5fr 1.8fr 1fr;
      }
    }


    .header-logo {
      width: -moz-fit-content;
      width: -webkit-fit-content;
      width: fit-content;
      padding: 1.5vw 3vw;
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .header-logo {
        width: clamp(70px, 17.991004497751124vw, 140px);
      }
    }

    .logo-link {
      display: block;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    .logo-link:hover {
      opacity: 0.6;
    }

    @media (max-width: 1024px) {
      .nav-menu {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding-right: clamp(30px, 8vw, 60px);
        padding-bottom: clamp(30px, 8vw, 60px);
        padding-left: clamp(30px, 8vw, 60px);
        transition-duration: 300ms;
        transform: translateX(200%);
        overflow: auto;
        /* ナビメニューの背景色を変えたい時 */
        background-color: rgba(0, 0, 0, 0.8);
        padding-top: 29vw;
      }

      .nav-menu.active {
        transform: translateX(0);
      }
    }

    @media (min-width: 1025px) {
      .nav-menu {
        padding-top: 0 !important;
      }
      
    }

    @media (min-width: 1025px) {
      .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: space-evenly;
        gap: clamp(20px, 2.0833333333333335vw, 40px);
      }


    }

    @media (max-width: 1024px) {
      .menu-item {
        /* 各ナビメニューの下線を変えたい時 */
        border-style: solid;
        border-color: #fff;
        border-bottom-width: 1px;
      }
    }

    .menu-link {
      display: block;
      color: #000;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    .menu-linf_contact {
      background: #122b51;
      color: #fff;
      padding: 1vw 3vw;
    }

    .menu-button {
	  font-size: clamp(12px, 1.0416666666666667vw, 16px);
      padding: clamp(12px, 1.0416666666666667vw, 16px);
      text-align: center;
      color: #ffffff;
      background: #122b51;
      display: block;
      }

    .menu-link:hover {
      opacity: 0.6;
    }

    .nav-menu.active .menu-link {
      color: #fff;
    }

    @media (max-width: 1024px) {
      .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
        padding-top: clamp(10px, 2.6666666666666665vw, 20px);
        padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
        text-align: center;
        /* ナビメニューの文字色を変えたい時 */
        color: #000;
      }

    }

    @media (min-width: 1025px) {
      .menu-link {
        font-size: clamp(16px, 1vw, 20px);
        font-weight: 600;
      }
     .menu-button {
	  display:none;
      }
    }

    .hamburger-button {
      width: -moz-fit-content;
      width: -webkit-fit-content;
      width: fit-content;
      /* height: clamp(13px, 3.466666666666667vw, 26px); */
      margin-right: 3.7vw;
      margin-left: auto;
      /* cursor: pointer; */
    }

    .hamburger-lines {
      position: relative;
      width: clamp(40px, 10.666666666666666vw, 90px);
      height: clamp(13px, 3.466666666666667vw, 26px);
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    @media (max-width: 1024px) {
      .hamburger-lines {
        width: 30px;
        height: 23px;
      }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .hamburger-lines {
        width: clamp(30px, 7.496251874062969vw, 50px);
        height: clamp(15px, 2.998500749625187vw, 20px);
      }
    }

    .hamburger-lines.active {
      height: 1px;
    }

    .hamburger-lines .line {
      position: absolute;
      right: 0;
      left: 0;
      display: block;
      width: 100%;
      height: clamp(2px, .26666666666666666vw, 2px);
      margin: auto;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
      background-color: #000;
    }

    .hamburger-lines.active .line {
      /* ハンバーガーメニューオープン時の線の色を変えたい時 */
      /* background-color: #fff; */
    }

    .hamburger-lines .line:nth-child(1) {
      top: 0;
    }

    .hamburger-lines .line:nth-child(2) {
      bottom: 0;
    }
    
    .hamburger-lines .line:nth-child(3) {
    top: 11px!important;
    }

    @media (min-width: 1025px) {

      /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
      .hamburger-button {
        display: none;
      }
    }
    



 /* hero */

  #hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }


  @media (max-width: 768px) {
    #hero {
      min-height: 50vh;
      /* min-height: calc(var(--vh, 1vh) * 83); */
      margin: 26vw 0px 0;
      position: relative;
    }
  }



  .hero {
    /* ↑のパス指定はこのファイルの位置から見て画像がどこに位置するかで変わります。 */
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  @media (orientation: landscape) {
    .hero {
      background-image: url("../images/hero_bg_pc.jpg");
      background-position: center bottom;
    }
  }

  @media (orientation: portrait) {
    .hero {
      background-image: url("../images/hero_bg_sp.jpg");
      background-size: cover;
      background-position: 50% 50%;
    }
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0px;
    /* background-color: rgba(0, 0, 0, 0.4); */
  }

  .hero .hero-text {
    /* position: absolute; */
    color: #fff;
    padding-right: clamp(10px, 2.6666666666666665vw, 30px);
    padding-left: 0;
    padding-top: 8vw;
  }

  @media (min-width: 1025px) {
    .hero .hero-text {
      padding-right: clamp(24px, 1.125vw, 60px);
      padding-left: 0;
      top: 0;
      padding-top: 11vw;
      display: inline-grid;
      justify-items: start;
    }
  }

  @media (max-width: 778px) {
    .hero .hero-text {
      inset: 0px;
      margin: -10vw auto;
      height: -moz-fit-content;
      height: -webkit-fit-content;
      height: auto;
    }
  }

  .hero-text .main-text {
    font-weight: 700;
    font-size: clamp(18px, 5.4vw, 30px);
  }

  .hero-text .sub-text {
    font-weight: 700;
    font-size: clamp(14px, 3.4vw, 26px);
  }
  @media (min-width: 1025px) {
    .hero-text .main-text {
      font-size: clamp(30px, 5.66667vw, 45px);
      line-height: 1.3;
      text-align: left;
      background: #fff;
      color: #122b51;
      display: inline-block;
      padding: 1.5vw 1.5vw 1.5vw 3vw;
      z-index: 2;
    }

    .hero-text .sub-text {
      font-size: clamp(28px, 1.8vw, 34px);
      line-height: 1.3;
      text-align: left;
      background: #fff;
      color: #122b51;
      display: inline-block;
      padding: 1vw 1.5vw 1vw 3vw;
      margin-top: 2vw;
      z-index: 2;
    }


  }

  @media (max-width: 1024px) and (orientation: landscape) {
    .hero-text .main-text {
      font-size: clamp(24px, 6.4vw, 32px);
    }
    .hero-text .sub-text {
      font-size: clamp(24px, 6.4vw, 32px);
    }
  }

  @media (max-width: 1024px) {
    .hero-text .main-text {
      line-height: 1.3;
      text-align: left;
      background: #fff;
      color: #122b51;
      display: inline-block;
      padding: 0vw 3vw;
    }
    .hero-text .sub-text {
      line-height: 1.3;
      text-align: left;
      background: #fff;
      color: #122b51;
      display: inline-block;
      padding: 1vw 3vw;
      margin-top: 2vw;
    }
  }




 
 /* キャッチコピー */

.fadeIn3s {
    animation-name: fadeIn3s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes fadeIn3s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.main-text {
    animation-name: main-text;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes main-text {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.sub-text {
    animation-name: sub-text;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes sub-text {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}




 /* コンテンツ */
 

.wrapper{
    padding: 0 30px;
} 
 
#sec01 {
    max-width: 916px;
    margin: 7vw auto 50px;
    text-align: center;
} 


#sec01 h2 {
    margin-top: 50px;
    width: 916px;
    margin: 50px auto 0;
    text-align: center;
    font-size: clamp(30px, 1vw, 50px);
    font-weight: 600;
    color: #122b51;
    width: 100%;
} 

#sec01 p {
    margin-top: 50px;
    width: 916px;
    margin: 50px auto 0;
    text-align: center;
    font-size: clamp(20px, 1vw, 50px);
    width: 100%;
    line-height: 2;
} 

.button a{
    margin-top: 50px;
    width: 916px;
    margin: 50px auto 0;
    text-align: center;
    font-size: clamp(24px, 1vw, 40px);
    font-weight: 600;
    color: #fff;
    background: #122b51;
    display: block;
    width: 11em;
    padding: 15px;
}

.button a:hover {
  opacity: 0.6;
}

.arrow-button a{
	width: 200px;
	display: inline-block;
	position: relative;
	font-size: 1.1rem;
	font-weight: 500;
	color: #111;
	border-bottom: solid 1px;
	margin: 20px auto 0;
	display: block;
	text-align: left;
}
.arrow-button a::before{
	content: '';
	width: 42px;
	height: 1px;
	position: absolute;
	background-color: #111;
	right: 0;
	bottom: 11px;
	transition: all .3s;
}
.arrow-button a::after{
	content: '';
	width: 12px;
	height: 1px;
	position: absolute;
	background: #111;
	bottom: 15px;
	right: 0;
	transform: rotate(40deg);
	transition: all .3s;
}
.arrow-button a:hover::before{ transform: translateX(10px); }
.arrow-button a:hover::after{ transform: translateX(10px) rotate(40deg)}




#plus_box_flex{
    margin: 50px auto;
    text-align: center;
    max-width: 916px;
    margin: 50px auto;
    text-align: center;
    padding: 70px 0 0;
    position: relative;
    justify-content: space-between;
    display: flex;
}


#plus_box_flex div{
    max-width: 48%;
}

#plus_box_flex:before{
  content:"";
  /* position: absolute; */
  /* top: 0; */
  background-image: url(../images/icon_plus.png);
  background-repeat: no-repeat;
  background-position: top center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}
#plus_box_flex l_box sbg{
    width: 50%;
}

#plus_box_flex h2{
	font-size: clamp(24px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: left;
}

#plus_box_flex p{
	font-size: clamp(16px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: left;
	line-height: 2;
}

#plus_box_flex h2:before{
  content: attr( data-title );
  position: absolute;
  top: 0;
  font-size: clamp(17px, 1vw, 29px);
  font-weight: 300;
}




#inner_box{
    margin: 50px auto;
    text-align: center;
    max-width: 916px;
    margin: 0px auto 50px;
    text-align: center;
    padding: 0px 0 0;
    position: relative;
}


#inner_box div{
    max-width: 100%;
}

#inner_box h3{
	font-size: clamp(20px, 1vw, 28px);
	position: relative;
	padding-top: 0;
	text-align: left;
	font-weight: 600;
}

#inner_box p{
	font-size: clamp(18px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: left;
}


#plus_box_full{
    margin: 50px auto;
    text-align: center;
    max-width: 916px;
    margin: 50px auto;
    text-align: center;
    padding: 70px 0 0;
    position: relative;
}


#plus_box_full div{
    max-width: 100%;
}


#plus_box_full:before{
  content:"";
  /* position: absolute; */
  /* top: 0; */
  background-image: url(../images/icon_plus.png);
  background-repeat: no-repeat;
  background-position: top center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}

#plus_box_full l_box sbg{
    width: 50%;
}


#plus_box_full h2{
	font-size: clamp(24px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: center;
}

#plus_box_full p{
	font-size: clamp(18px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: left;
}

#plus_box_full h2:before{
  content: attr( data-title );
  position: absolute;
  font-size: clamp(17px, 1vw, 29px);
  font-weight: 300;
  display: inline-block;
  width: 140px;
  text-align: center;
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
font-size: clamp(18px, 1vw, 40px);
    position: relative;
    padding-top: 28px;
    text-align: left;
}

dt {
  width: 32%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

dd {
  width: 68%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

#_header_svg{
  width: 100%;
  position: absolute;
  bottom: 0;
}

#plus_box_access{
    margin: 50px auto;
    text-align: center;
    max-width: 100%;
    margin: 50px auto;
    text-align: center;
    padding: 70px 0;
    position: relative;
}


#plus_box_access div{
    max-width: 100%;
}

#plus_box_access:before{
  content:"";
  /* position: absolute; */
  /* top: 0; */
  background-image: url(../images/icon_plus.png);
  background-repeat: no-repeat;
  background-position: top center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
}


#plus_box_access h2{
	font-size: clamp(24px, 1vw, 40px);
	position: relative;
	padding-top: 28px;
	text-align: center;
}

#plus_box_access p{
	font-size: clamp(18px, 1vw, 40px);
	position: relative;
	padding-top: 5px;
	text-align: center;
}

#plus_box_access h2:before{
  content: attr( data-title );
  position: absolute;
  top: 0;
  font-size: clamp(17px, 1vw, 29px);
  font-weight: 300;
  margin-left: 0.7em;
}















.for_pc {
    display: none;
    }

@media (min-width: 1025px) {
    .for_pc {
      display: block;
    }
    .for_sp {
      display: none;
    }
    }

    @media (max-width: 768px) and (orientation: landscape) {
    .for_sp {
      display: block;
    }
    .for_pc {
      display: none;
    }
    }
    
    
    

    
    

.fadeIn {
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}












.google-maps {
    position: relative;
    padding-bottom: 33%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}



footer{
    background: #122b51;
}


.footer_inbox {
    max-width: 916px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 50px 0 71px;
}


.footer_inbox div:nth-child(1) a{
    display: inline-block;
    color: #fff;
}

.footer_inbox div:nth-child(2) a{
    display: inline-block;
    color: #fff;
    font-weight:600;
}



.footer_inbox div:nth-child(3) a{
    display: inline-block;
    margin: 5px;
}



.footer_inbox div:nth-child(3) a img {
    width: 100%;
    margin: 0 auto;
}

.footer_inbox div:nth-child(4) {
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.footer_inbox div:nth-child(4) p{
    margin-top:10px;
}

.footer_inbox div:nth-child(4) img{
    margin: 0 auto;
}
























  @media (max-width: 778px) {
.wrapper {
    padding: 0 3vw;
}

#sec01 {
    max-width: 916px;
    margin: 15vw auto;
    text-align: center;
}

#sec01 h2 {
    margin-top: 5vw;
    width: 916px;
    margin: 0px auto 0;
    text-align: center;
    font-size: clamp(20px, 1vw, 50px);
    font-weight: 600;
    color: #122b51;
    width: 100%;
}

#sec01 p {
    margin: 20px auto 0;
    text-align: left;
    font-size: clamp(14px, 1vw, 20px);
    line-height: 2;
}

#inner_box {
    margin: 50px auto;
    text-align: center;
    max-width: 916px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0;
    position: relative;
    justify-content: space-between;
    display: flex;
}

#inner_box div {
    max-width: 100%;
}

#inner_box h2 {
    font-size: clamp(24px, 1vw, 40px);
    position: relative;
    padding-top: 28px;
    color: #122b51;
    font-weight: 600;
    text-align: center;
}

#inner_box h2:before {
    content: attr(data-title);
    position: absolute;
    top: 0;
    font-size: clamp(17px, 1vw, 29px);
    font-weight: 300;
    top: 30%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

#inner_box p {
    font-size: clamp(14px, 1vw, 20px);
    position: relative;
    padding-top: 28px;
    text-align: left;
    line-height: 2;
}


#plus_box_flex {
    margin: 50px auto;
    text-align: center;
    max-width: 916px;
    margin: 30px auto;
    text-align: center;
    padding: 40px 0 0;
    position: relative;
    justify-content: space-between;
    display: flex;
}

#plus_box_flex div {
    max-width: 100%;
}

#plus_box_flex h2 {
    font-size: clamp(24px, 1vw, 40px);
    position: relative;
    padding-top: 28px;
    color: #122b51;
    font-weight: 600;
    text-align: center;
}

#plus_box_flex h2:before {
    content: attr(data-title);
    position: absolute;
    top: 0;
    font-size: clamp(17px, 1vw, 29px);
    font-weight: 300;
    top: 20%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

#plus_box_flex p {
    font-size: clamp(14px, 1vw, 20px);
    position: relative;
    padding-top: 0;
    text-align: left;
}

#plus_box_full p {
    font-size: clamp(14px, 1vw, 20px);
    position: relative;
    padding-top: 28px;
    text-align: left;
    line-height: 1.8;
}

dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: clamp(14px, 1vw, 20px);
    position: relative;
    padding-top: 28px;
    text-align: left;
}

.footer_inbox {
    max-zwidth: 916px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    flex-direction: column;
    text-align: center;
}
.footer_inbox div {margin-bottom: 5vw;}

.footer_inbox div:nth-child(2) a{
    margin: 0px auto 15px;
    font-size: 4vw;
}
#plus_box_access p {
    font-size: clamp(14px, 1vw, 20px);
    position: relative;
    padding-top: 5px;
    text-align: center;
}
.google-maps {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}
}