@charset "utf-8";

/* スマホメニュー開閉ボタン */
/* .nav-button {
  display: none;
} */
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}
/* nav-button */
.nav-button {
  display: block;
  cursor: pointer;
}
/* nav-wrap */
.nav-wrap {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100vw;
  height: 100svh;
}
/* effect */
.nav-button,
.nav-button span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.nav-button {
  z-index: 60;
  position: fixed;
  background: #cc0011;
  top: 10px;
  left: calc(max(375px, 50%) + 295px);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 10px;
}
.nav-button span {
  position: absolute;
  left: 15px;
  width: 40px;
  height: 3px;
  background-color: #fff;
}
.nav-button span:nth-of-type(1) {
  top: 20px;
}
.nav-button span:nth-of-type(2) {
  top: 33px;
}
.nav-button span:nth-of-type(3) {
  top: 46px;
}
.nav-button.active {
  position: fixed;
}
/* .nav-button.active span {
} */
.nav-button.active span:nth-of-type(1) {
  -webkit-transform: translateY(18px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
}
.nav-button.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-18px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.header_gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
  width: 100vw;
  padding: 50px 0;
  text-align: center;
}
.header_gnav ul {
}
.header_gnav ul li {
  font-size: 24px;
}
.header_gnav ul li a {
  font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  display: block;
  padding: 20px;
  color: #fff;
}
.header_gnav ul li .en {
  font-family: "Rokkitt", serif;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.header_gnav ul li>.en {
  padding-top: 20px;
}
.header_gnav ul li .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-bottom: 20px;
}
.header_gnav ul li .wrap a {
  padding: 0;
}

@media (max-width: 768px) {
  .header_gnav ul li {
    font-size: 40px;
  }
  .header_gnav ul li a {
    padding: 25px;
  }
  .header_gnav ul li .en {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .header_gnav ul li>.en {
    padding-top: 25px;
  }
  .header_gnav ul li .wrap {
    padding-bottom: 25px;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .header_gnav {
    display: block;
    justify-content: inherit;
    align-items: inherit;
    height: auto;
    width: auto;
    padding: 80px 0;
  }
  .header_gnav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 20px;
  }
  .header_gnav ul li {
    width: 50%;
  }
  .header_gnav ul li a {
    padding: 18px;
    font-size: 24px;
  }
  .header_gnav ul li a .en {
    margin-bottom: 8px;
    font-size: 16px;
  }
}