@charset "UTF-8";
/* ----------------------------------------------- */
/* 基本設定 */
/* ----------------------------------------------- */

.pc_cont {
  display: none;
}

.sp_cont {
  display: block;
}


body::before {
  content: "";
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.4, 0.0, 0.2, 1); /* カスタムイージング */
}

body.nav_open::before {
  opacity: 1;
  pointer-events: auto;
}


/* ----------------------------------------------- */
/* header */
/* ----------------------------------------------- */

.header {
  width: 100%;
  background-color: #fff;
}

.header_inner {
  border-bottom: 4px double #000;
  height: 64px;
}

.hamburger {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  display: block;
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg_nav.svg), linear-gradient(90deg, #f0bc6800 0%, #f0bc6800 10vw, #FABF00 10vw, #FABF00 100%);
  background-position: top -10px right 70vw, top 0 left 18vw;
  background-size: contain;
  background-repeat: repeat-y;
  transform: translateX(100%);
  transition: transform .4s;
  z-index: 90;
  overflow-y: scroll;
}

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

.nav .nav__list {
  margin: 0;
  padding: 10vw 0 0;
  list-style: none;
}

.nav .nav__item {
  padding: 0 20px;
  text-align: right;
  margin-bottom: 3rem;
}

.nav .nav__link {
  display: block;
  padding: 0 0;
  color: #000;
  text-decoration: none;
}

.nav .nav_img {
  margin-bottom: 0.5rem;
}

.nav .nav_img img {
  width: auto;
  height: 2.832rem;
}

.nav .nav_txt {
  margin-bottom: 0;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.nav .nav_btn {
  text-align: center;
  width: 80%;
  margin: 4rem 0 80px auto;
}

.nav .btn_page_link {
  width: 23.7rem;
  height: 6rem;
  margin: auto;
}

.nav .btn_page_link a {
  line-height: 3;
  height: 6rem;
  min-height: 0;
  padding: 0 1.5rem 0 0;
}

.nav .btn_page_link a::after {
  right: 1rem;
}





/* ----------------------------------------------- */
/* .main */
/* ----------------------------------------------- */
.main {
  margin: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}

/* ----------------------------------------------- */
/* footer */
/* ----------------------------------------------- */

footer {
  display: flex !important;
  justify-content: space-between;

}

footer img {
  width: auto;
}

