@charset "utf-8";


/* ==============================


base


=================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
}

.inner {
  width: 90%;
  max-width: 1070px;
  margin: 0 auto;
}

img {
  width: 100%;
  max-width: 100%;
}

a {
  opacity: 1;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 88%;
    max-width: 420px;
  }

  a:hover {
    opacity: 1;
  }

}

/* ==============================


header


=================================*/
header {
  top: 0;
  left: 0;
  width: 100vw;
  position: fixed;
  z-index: 10000;
}

.header-inner {
  height: 100px;
  width: 80%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100000;
}

.header-inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: calc(100% - 200px);
  width: clamp(400px, 30vw, 10000px);
  height: 100px;
  background: url(../img/common/headder__logo-bg.png) no-repeat center center/100% 100%;
  z-index: 1000;
}

.header-logo {
  z-index: 100000;
}

.header-logo img {
  max-width: 113px;
}

header nav.pc-pad_non ul {
  display: flex;
  gap: clamp(0px, 2vw, 40px);
  font-size: clamp(12px, 2vw, 20px);
  color: #fff;
  font-weight: bold;
}

header nav.pc-pad_non ul li a {
  width: clamp(0px, 15.4vw, 154px);
  height: clamp(0px, 4.1vw, 41px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/headder__btn-bg.png) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {

  .header-inner {
    height: clamp(0px, 31vw, 85px);
    width: 100%;
    max-width: 460px;
    padding: 0 clamp(0px, 11vw, 70px);
  }

  .header-inner::before {
    left: clamp(-160px, -60vw, 0px);
    width: clamp(0px, 106.66vw, 400px);
    height: clamp(0px, 31vw, 85px);
    background: url(../img/common/headder__logo-bg_sp.png) no-repeat center center/contain;
  }

  .header-logo img {
    width: clamp(0px, 29.33vw, 115px);
  }

  /* --- hamburger menu -------------------------------- */

  .drawer_hidden {
    display: none;
  }

  .drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000000;
    cursor: pointer;
  }

  .drawer_open::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 65px;
    height: 50px;
    background: url(../img/common/headder__btn-bg_sp.png) no-repeat center center/contain;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 2.5px;
    width: 25px;
    border-radius: 10px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }

  .drawer_open span:before {
    bottom: 8px;
  }

  .drawer_open span:after {
    top: 8px;
  }

  #drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  #drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }



  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 99;
    background: #FFFAF4;
    transition: .5s;
    pointer-events: none;
  }

  #drawer_input:checked~.nav_content {
    opacity: 1;
    pointer-events: auto;
  }

  .nav_content ul {
    width: 87%;
    padding-top: 80px;
    height: calc(100% - 80px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }

  .nav_content ul li {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
  }

  .nav_content_bg {
    position: absolute;
    bottom: -40px;
    left: 0;
  }


}

/* ==============================


footer


=================================*/

footer img {
  height: auto;
}

.footer-ctr {
  /* border-top: 1px solid #ABABAB; */
  background-color: #FDF9F6;
  padding: 25px 0;
  color: #0e2238;
  font-size: 14px;
}

.footer-ctr div {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer-ctr {
    padding: 15px 0;
    font-size: 12px;
  }

  .footer-ctr div {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

/* ==============================


animation 


=================================*/

[fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999999;
  opacity: 1;
  pointer-events: all;
  transition: opacity 1s ease;
}

/* フェードアウト時 */
#loading.fade-out {
  opacity: 0;
  pointer-events: none;
  /* 透過後にクリックできるように */
}

#loading::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 217px;
  height: 438px;
  background: url(../img/common/loading-logo.png) no-repeat center center/contain;
}



/* ==============================


display none


=================================*/
/*::::::::::::pc用::::::::::::*/
@media screen and (min-width: 1101px) {
  .pad_non {
    display: none !important;
  }

  .sp_non {
    display: none !important;
  }

  .pad-sp_non {
    display: none !important;
  }
}

/*::::::::::::pad用::::::::::::*/
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .pc_non {
    display: none !important;
  }

  .sp_non {
    display: none !important;
  }

  .pc-sp_non {
    display: none !important;
  }
}

/*::::::::::::sp用:::::::::::*/
@media screen and (max-width: 767px) {
  .pc_non {
    display: none !important;
  }

  .pad_non {
    display: none !important;
  }

  .pc-pad_non {
    display: none !important;
  }
}