@charset "utf-8";

/* ----    共通    ---- */
img {
  max-width: 100%;
}

a {
  color: #333;
  text-decoration: none;
}

li {
  list-style: none;
}

.wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
}

iframe {
  width: 100%;
}

main {
  background-color: #f6f2e7;
  margin-top: 66px;
  padding-bottom: 120px;
}

.cta1 a {
  cursor: pointer;
}

/* ----    ヘッダーセクション    ---- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 66px;
  background-color: #fff;
}

#header .site-title {
  width: 300px;
}

#maincisual {
  padding-top: 66px;
}

.menu {
  display: flex;
  font-size: 0.6rem;
  gap: 30px;
  margin-left: auto;
  padding-right: 6%;
}

.cta1_title_container {
  width: 86%;
  margin: 0 auto;
}

.cta1_title {
  position: relative;
  top: -90px;
}

.price_container {
  width: 90%;
  margin: 0 auto;
}

.cta_btn {
  position: relative;
  top: -180px;
  width: 80%;
  margin: 0 auto;
  display: block;
}

.reservation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  margin: 0 auto;
}

@media screen and (min-width: 780px) {
  .reservation {
    display: none;
  }
}

/* ハンバーガーメニュー */
/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 998;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  width: 70%;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: clamp(0.875rem, 0.696rem + 0.89vw, 1.5rem);
  line-height: 1.4rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  transition: 0.3s;
}

#g-nav li a:hover {
    color: #e27b79;
}

@media screen and (min-width: 780px) {
  .sp_br {
    display: none;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-right: 24px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
