/* header */
#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
}
/*
#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: 0;
  left: 0;
  z-index: 3;
  width: 200px;
  height: 190px;
  background: url("/img/common/bg_brown.webp");
  background-size: 2000px;
  border-radius: 0 0 30px 0;
  box-sizing: border-box;
  padding: 20px;
}
.logo div {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
}
.logo div img:first-of-type {
  display: block;
  width: 90px;
  margin: 0 auto 0.3em;
}
.logo div p {
  font-size: 1.2rem;
  margin: 0.5em auto 0;
  line-height: 1.5;
}
.h_nav {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-end;
  background: #fff;
  border-radius: 100px;
  padding: 16px 90px 16px 30px;
}
.h_nav li {
  width: auto;
  margin: 0 20px;
  font-size: 1.4rem;
}
.h_nav li span {
  display: block;
  font-family: "birra-2", serif;
  font-weight: 700;
  color: #59B7BF;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: #59B7BF;
  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: 40%;
  left: 30%;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  display: none;
}
.openbtn.active span:nth-of-type(3) {
  top: 55%;
  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: rgba(0, 0, 0, 0.5);
}
#gnav::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  content: '';
  border-radius: 60px 0 0 60px;
  background: url("/img/common/bg_brown.webp") center / cover;
}
/*アクティブクラスがついたら位置を0に*/
#gnav.panelactive {
  top: 0;
}
.circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /*background: #000;*/
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#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: flex-end;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gnav_r {
  width: 450px;
}
.gnav_r_inner {
  text-align: left;
  margin: auto;
  width: 300px;
}


.gnav_r_logo{
	margin: 0 auto 1em;
	font-size: 1.3rem;
}
.gnav_r_logo img:first-of-type{
	width: 80px;
	margin: 0 0 8px 0;
}
.gnav_r_logo img{
	display: block;
	width: 280px;
	margin: 0 0 5px;
}


.gnav_nav {}
.gnav_nav li {
  position: relative;
  border-bottom: 1px solid #59B7BF;
  padding: 18px 0;
  letter-spacing: 2px;
}
.gnav_nav li::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 0;
  width: 45px;
  height: 45px;
  background: #FDE94B;
  border-radius: 30px;
  transition: .3s ease-out;
}
.gnav_nav li:hover::before {
  right: -5px;
}
.gnav_nav li::after {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translate(0%, -50%);
  content: '\f0da';
  font-family: FontAwesome;
  font-weight: 400;
  color: #59B7BF;
  font-size: 1.8rem;
  transition: .3s ease-out;
}
.gnav_nav li:hover::after {
  right: 12px;
}
.gnav_nav li span {
  display: block;
  font-family: "birra-2", serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #59B7BF;
  text-transform: uppercase;
}
.gnav_nav li a {
  color: #333;
}
a.gnav_pp {
  display: block;
  padding: 2em 0 0;
  font-size: 1.3rem;
	 text-decoration: underline;
}
a.gnav_pp:hover {
  text-decoration: none;
}


.gnav_r_tel{
	margin: 2em auto 2em;
}
.gnav_r_tel p{
	font-size: 1.3rem;
	margin: 0.7em auto 0;
}

.gnav_r_bnr li{
	margin: 0.5em auto 0 0;
	width: 250px;
}

@media screen and (max-width: 1290px) {}
@media screen and (max-width: 768px) {
  .logo {
    width: 130px;
    height: 120px;
    border-radius: 0 0 20px 0;
    padding: 10px;
  }
  .logo div img:first-of-type {
    width: 45px;
    margin: 0 auto 0.3em;
  }
  .logo div p {
    font-size: 1rem;
    margin: 0.5em auto 0;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .h_nav {
    display: none;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 60%;
  }
  /*========= ナビゲーションのための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_r {
    width: 100%;
    padding: 3em 0 10em;
    border-radius: 0;
    background: url("/img/common/bg_brown.webp") center / cover;
  }
  .gnav_r_inner {
    width: 80%;
  }
  .gnav_nav li {
    padding: 15px 0;
  }
  .gnav_nav li::before {
    width: 25px;
    height: 25px;
  }
  .gnav_nav li::after {
    right: 7px;
    font-size: 1.5rem;
  }
  .gnav_nav li:hover::after {
    right: 2px;
  }
  .gnav_nav li span {
    font-size: 3rem;
  }
  a.gnav_pp {
    padding: 2em 0 0;
    font-size: 1.2rem;
  }
}
@media (max-height: 970px) {
  /* 高さ970px以下の場合 */
  .gnav_wrap {
    margin: 5em auto;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }
}