/* header */
#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
}
/*
#header.fixed::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
}
*/
.logo {
  position: absolute;
  top: 0px;
  left: 30px;
  z-index: 3;
  width: 150px;
}
.h_nav {
  position: absolute;
  top: 20px;
  right: 320px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-end;
}
.h_nav li {
  padding: 0 10px;
  font-weight: 500;
}
.h_contact {
  position: absolute;
  top: 13px;
  right: 110px;
}
.h_contact a {
  position: relative;
  overflow: hidden;
  outline: none;
  display: inline-block;
  padding: 7px 45px 7px 25px;
  background: #FFEB04;
  border-radius: 30px;
  font-weight: 500;
  transition: ease .2s;
}
.h_contact a img {
  width: 20px;
  margin: 0 5px 2px 0;
  transition: none;
}
.h_contact a span {
  position: relative;
  z-index: 3;
}
.h_contact a:hover span {
  color: #FFEB04;
}
.h_contact a:hover img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(95%) saturate(3837%) hue-rotate(359deg) brightness(106%) contrast(105%);
}
.h_contact a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.h_contact a:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.h_contact a::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/img/common/arrow_black.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.h_contact a:hover::after {
  right: 10px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 5px;
  right: 30px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 100px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  width: 40%;
}
.openbtn span:nth-of-type(1) {
  top: 35%;
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: 65%;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active {}
.openbtn.active span {}
.openbtn.active span:nth-of-type(1) {
  top: 37%;
  left: 30%;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  display: none;
}
.openbtn.active span:nth-of-type(3) {
  top: 57%;
  left: 30%;
  transform: translateY(-6px) rotate(45deg);
}
/*========= ナビゲーションのためのCSS ===============*/
#gnav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状*/
  top: -500%;
  right: 0%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  background: #fff;
}
#gnav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 500px);
  height: 100%;
  content: '';
  background: #F0F0F0;
  border-radius: 0 60px 60px 0;
}
/*アクティブクラスがついたら位置を0に*/
#gnav.panelactive {
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#gnav.panelactive #gnav-inner {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
.gnav_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gnav_logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 150px;
  z-index: 9999;
}
.gnav_l {
  width: calc(100% - 500px);
}
.gnav_l_inner {
  text-align: left;
  margin: auto;
  width: 90%;
  max-width: 750px;
}
.gnav_l_inner > p {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1;
}
.gnav_l_inner > p::first-letter {
  color: #FFEB04;
}
.gnav_program {}
.gnav_program li {
  position: relative;
}
.gnav_program li::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  content: '';
  background: #000;
  border-radius: 20px;
}
.gnav_program li::after {
  position: absolute;
  content: '';
  bottom: 20px;
  right: 20px;
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
	z-index: 1;
}
.gnav_program li:hover::after {
  right: 15px;
}
.gnav_program li a {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 1.5em auto 0em;
  justify-content: space-between;
  align-items: center;
}
.gnav_program li img {
  width: 45%;
  border-radius: 20px;
}
.gnav_program_in {
  width: 45%;
  padding: 0 5%;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
}
.gnav_program_in div {
  font-size: 1.8rem;
}
.gnav_program_in div span {
  display: block;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 1px;
}
.gnav_program_in div span::first-letter {
  color: #FFEB04;
}
.gnav_program_in p {
  margin: 0.5em 0 0;
  font-size: 1.8rem;
}
.gnav_program_in p span {
  display: inline-block;
  background: #FFEB04;
  color: #000;
  margin: 0 auto 2em;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 2rem;
}
.gnav_reserve {
  text-align: center;
  margin: 3em auto 0;
}
.gnav_reserve a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 40px 100px 40px 100px;
  background: #000;
  outline: 1px solid #FFEB04; /*outlineでドットの線を追加*/
  outline-offset: -7px; /*outline-offsetの値を-15pxにして内側に調整*/
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 2px;
  transition: ease .2s;
}
.gnav_reserve a img {
  width: 30px;
  margin: 0 10px 0px 0;
  transition: none !important;
  filter: brightness(0) saturate(100%) invert(85%) sepia(95%) saturate(3837%) hue-rotate(359deg) brightness(106%) contrast(105%);
}
.gnav_reserve a span {
  position: relative;
  z-index: 3;
  color: #fff;
}
.gnav_reserve a:hover span {
  color: #FFEB04;
}
.gnav_reserve a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.gnav_reserve a:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.gnav_reserve a::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translate(0%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.gnav_reserve a:hover::after {
  right: 10px;
}
.gnav_r {
  width: 500px;
}
.gnav_r_inner {
  text-align: left;
  margin: auto;
  width: 350px;
}
.gnav_nav {}
.gnav_nav li {
  position: relative;
  border-bottom: 2px solid #FFEB04;
  padding: 20px 0;
  font-weight: 500;
  letter-spacing: 2px;
}
.gnav_nav li::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.gnav_nav li:hover::before {
  right: -5px;
}
.gnav_nav li span {
  display: block;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 1px;
}
.gnav_nav li span::first-letter {
  color: #FFEB04;
}
.gnav_sns {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 2em auto 0em;
  justify-content: flex-start;
}
.gnav_sns a {
  color: #FF7F00;
}
.gnav_sns a:hover {
  color: #000;
}
.gnav_sns li {
  margin: 0 20px 0 0;
  font-size: 4rem;
  line-height: 1;
}
.gnav_sns li img {
  width: 40px;
  filter: brightness(0) saturate(100%) invert(61%) sepia(78%) saturate(2679%) hue-rotate(0deg) brightness(103%) contrast(106%);
  transition: filter 0.3s ease;
}
.gnav_sns li:hover img {
  filter: invert(100%);
}
.gnav_subnav {
  margin: 1em auto 0;
}
.gnav_subnav li {
  position: relative;
  padding: 3px 0 3px 15px;
}
.gnav_subnav li::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 1.2rem;
}
.gnav_contact {
  margin: 2em auto 0;
}
.gnav_contact a {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 15px 0px 15px 20px;
  background: #FFEB04;
  border-radius: 30px;
  font-weight: 500;
  transition: ease .2s;
}
.gnav_contact a img {
  display: inline-block;
  width: 25px;
  margin: 0 10px 0px 0;
}
.gnav_contact a:hover img {
  filter: invert(100%);
}
.gnav_contact a span {
  position: relative;
  z-index: 3;
}
.gnav_contact a:hover span {
  color: #fff;
}
.gnav_contact a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.gnav_contact a:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.gnav_contact a::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/img/common/arrow_black.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.gnav_contact a:hover::after {
  right: 10px;
  background-image: url("/img/common/arrow.webp");
}
@media screen and (max-width: 1250px) {
  .h_nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    top: 8px;
    left: 15px;
    width: 120px;
  }
  .h_nav {
    display: none;
  }
  .h_contact {
    display: none;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    top: 8px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 61%;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #gnav {
    top: -500%;
  }
  #gnav::before {
    display: none;
  }
  .gnav_wrap {
    margin: 0em auto !important;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }
  .gnav_logo {
    width: 120px;
  }
  .gnav_l {
    width: 100%;
    background: #F0F0F0;
    padding: 6em 0 3em;
    border-radius: 0 0 20px 20px;
  }
  .gnav_l_inner {
    width: 80%;
  }
  .gnav_l_inner > p {
    font-size: 3rem;
  }
  .gnav_program li {
    position: relative;
  }
  .gnav_program li::before {
    display: none;
  }
  .gnav_program li::after {
    bottom: 25px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .gnav_program li:hover::after {
    right: 15px;
  }
  .gnav_program li a {
    display: block;
    margin: 1.5em auto 0em;
  }
  /*
  .gnav_program li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
	*/
  .gnav_program li img {
    display: none;
  }
  .gnav_program_in {
    width: calc(100% - 40px);
    padding: 20px 20px 30px;
    background: #000;
    border-radius: 20px;
  }
  .gnav_program_in div {
    font-size: 1.5rem;
  }
  .gnav_program_in div span {
    font-size: 3rem;
  }
  .gnav_program_in p {
    margin: 0.5em 0 0;
    font-size: 1.4rem;
  }
  .gnav_program_in p span {
    margin: 0 auto 1.5em;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 1.5rem;
  }
  .gnav_reserve {
    text-align: center;
    margin: 2em auto 0;
  }
  .gnav_reserve a {
    display: block;
    padding: 28px 10px 28px 0px;
    outline-offset: -7px; /*outline-offsetの値を-15pxにして内側に調整*/
    font-size: 1.4rem;
  }
  .gnav_reserve a img {
    width: 20px;
    margin: 0 10px 0px 0;
  }
  .gnav_reserve a::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .gnav_reserve a:hover::after {
    right: 15px;
  }
  .gnav_r {
    width: 100%;
    padding: 2em 0 10em;
  }
  .gnav_r_inner {
    width: 80%;
  }
  .gnav_nav li {
    padding: 15px 0;
  }
  .gnav_nav li::before {
    width: 25px;
    height: 25px;
  }
  .gnav_nav li span {
    font-size: 3rem;
  }
  .gnav_sns {
    margin: 1.5em auto 0em;
  }
  .gnav_sns li {
    margin: 0 15px 0 0;
    font-size: 3rem;
  }
  .gnav_sns li img {
    width: 30px;
  }
  .gnav_contact a img {
    width: 20px;
    margin: 0 10px 0px 0;
  }
}
@media (max-height: 970px) {
  /* 高さ970px以下の場合 */
  .gnav_wrap {
    margin: 5em auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }
}