@charset "UTF-8";
/* CSS Document */ :root {
  --primary-color: #f1e8e5;
  --background-color: #FBF9FA;
  --background-color-2: #F0ECE9;
  --text-color: #5a4c4f;
  --font-xl: clamp(50px, 8.59vw, 110px);
  --font-l: clamp(18px, 2.19vw, 28px);
  --font-m: clamp(12px, 1.25vw, 16px);
  --font-s: clamp(12px, 0.93vw, 14px);
  --font-xs: clamp(11px, 0vw, 12px);
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: var(--text-color);
  font-family: "Source Sans 3", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: var(--font-m);
  line-height: 1.8;
}
h2 {
  font-size: var(--font-m);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1;
  text-align: center;
  padding: 6em 0;
  letter-spacing: 0.08em;
}
h3 {
  font-size: var(--font-m);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1;
  letter-spacing: 0.08em;
  padding-bottom: 1em;
  text-align: center;
}
p {
  color: var(--text-color);
  letter-spacing: 0.08em;
  line-height: 2.3;
}
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh;
  background: var(--background-color-2);
  transition: all 0.8s;
  background-color: rgba(240, 236, 233, 0.9);
}
#g-nav.panelactive {
  right: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  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: var(--text-color);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav-list a:hover {
  opacity: 0.7; /* 透明度を70%に調整 */
}
.reservation-box {
  width: 43vw; 
  max-width: 590px; 
  background-color: #ffffff; 
  border-radius: 16px;
  padding: 5vw 3vw; 
  margin: 5vh auto 0; 
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: static;
}
.reservation-title {
  margin-bottom: 1vh;
}
.button_section_reservation {
  text-align: center; 
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 1em; 
  margin-right: 0; 
}
#g-nav li .nav_button {
  display: inline-flex;
  align-items: center; 
  justify-content: center; 
  padding: 1.3em 3.5em;
  border-radius: 70px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: linear-gradient(270deg, #F4E8E8 30%, #fbf9fa 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.4s ease-out;
  margin-top: 1.5em;
  position: relative;
  font-weight: 400 ;
}
.nav_button:hover {
  color: var(--text-color);
  background-position: 99% 50%;
}
.nav_button::after {
  content: '';
  position: absolute;
  right: -1em;
  width: 3em;
  height: 1px;
  background: var(--text-color);
  transition: transform 0.3s ease-out;
}
.nav_button:hover::after {
  transform: translateX(40%);
}
@media (max-width: 768px) {
  .reservation-box {
    width: 92vw;
    padding: 5vh 3vw;
  }
  .button_section_reservation {
    gap: 15px;
  }
  .nav_button {
    padding: 1.2em 4em;
    border-radius: 50px;
    font-size: 1rem;
  }
  .nav_button::after {
    right: -3.5%;
    width: 20px;
  }
  #g-nav {
    width: 100%; 
    right: -100%; 
  }
  #g-nav.panelactive {
    right: 0; 
  }
  #g-nav.panelactive #g-nav-list {
    width: 100%; 
  }
}
.header {
  position: fixed; /* 固定配置 */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; /* 左右に配置 */
  align-items: center; /* 上下中央揃え */
  padding: 2em 3em 2em 4.2em;
  z-index: 1000;
  transition: background 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.4); /* 透過した白 */
}
/* ロゴを固定配置 */
.header h1 {
  display: flex;
  align-items: center;
  z-index: 1000;
}
.header h1 img {
  display: block; /* 余計な隙間を削除 */
  width: 2.5em; /* サイズ調整 */
  height: auto;
  vertical-align: middle; /* インライン要素のズレを修正 */
}
.header h1 a {
  display: inline-block; /* `img` のサイズに合わせて `a` の高さを適切にする */
  line-height: 1; /* 行の高さの影響をなくす */
}
.header h1 a:hover img {
  opacity: 0.5; /* 透明度を70%に調整 */
}
.openbtn {
  width: 5em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001; /* 背景より前に */
}
.openbtn span {
  position: absolute;
  width: 30%; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: var(--text-color);
  left: 50%; /* X 軸の中央 */
  transform: translateX(-50%);
  transition: all 0.4s;
}
/* === 3 本線の位置調整（上下中央に揃える） === */
.openbtn span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -9px); /* 上の線を少し上に */
}
.openbtn span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0); /* 真ん中の線 */
}
.openbtn span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 9px); /* 下の線を少し下に */
}
/* === ハンバーガーアイコンが「X」に変化する時の動作 === */
.openbtn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /* 真ん中の線を消す */
}
.openbtn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  width: 30%;
}
.main-visual {
  position: relative;
  overflow: hidden;
}
.main-visual_image {
  position: relative;
  width: 100%;
  height: 30em;
  overflow: hidden;
}
.main-visual_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-visual_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}
.reserve {
  padding: 2em 0;
  text-align: center;
}
.reserve p {
  margin: 0.5em 0;
}
.coupon-section {
  background-color: var(--background-color);
  padding: 4em 1em;
  margin-top: 7em;
}
.coupon-section h3 {
  margin-bottom: 1em;
}
.coupon-icons {
  display: flex;
  justify-content: center;
  gap: 4em;
  margin-top: 3em;
}
.coupon-item {
  background-color: #fff;
  border: 0.8px solid #5a4c4f;
  border-radius: 50%;
  width: 14em;
  height: 14em;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
}
.coupon-item img {
  max-width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 0.5em;
}
.coupon-item p {
  margin: 0;
  font-size: 0.9em;
}
.coupon-section p span{
  position: relative;
  display: inline-block; /* インライン要素に適用するため */
  z-index: 2; /* 文字の背面に配置 */
}
/* 下線を擬似要素で追加 */
.coupon-section p span::after {
  content: "";
  position: absolute;
  left: -0.1em;
  bottom: 14%;
  width: 100%;
  height: 0.8em;
  background-color: #F1E8E5;
  z-index: -2;
}
@media (max-width: 768px) {
    .main-visual_image {
    height: 20em; /* スマホで適切なバランスに */
  }
  .coupon-section {
    padding: 3em 1.5em; /* スマホ用に少しコンパクトに */
    margin-top: 5em; /* スマホで少し余白を減らす */
    text-align: center; /* 見出しとテキストを中央揃え */
  }
  .coupon-icons {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center; /* アイテムを中央揃え */
    gap: 2em; /* アイテム間の余白を調整 */
  }
  .coupon-item {
    width: 12em; /* 少し小さく */
    height: 12em;
    padding: 0.8em; /* 内側の余白を調整 */
  }
  .coupon-item img {
    max-width: 70px; /* スマホで適切なサイズに縮小 */
    margin-bottom: 0.3em; /* アイコンとテキストの間隔を調整 */
  }
  .coupon-item p {
    font-size: 0.85em; /* スマホで少し小さめに */
  }
  .coupon-item p span::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.button_section ul {
  display: flex;
  justify-content: center; /* 左右中央揃え */
  align-items: flex-start;
  gap: 5em; /* ボタン間の余白 */
  padding: 5vh;
}
/* 各 `.reservation-button` を中央揃え */
.reservation-button {
  text-align: center; /* テキストを中央揃え */
  display: flex;
  flex-direction: column; /* 縦方向に要素を並べる */
  align-items: center; /* 水平方向の中央寄せ */
  justify-content: center; /* 上下中央寄せ */
  gap: 1em; /* ボタンとテキストの間隔 */
  margin-right: 0; /* PC時の余白リセット */
}
/*== グラデーションが流れる */
.gradient1 {
  /*ボタンの形状*/
  display: inline-flex; /* アイコンとテキストを横並びにする */
  align-items: center; /* アイコンとテキストを上下中央揃え */
  justify-content: center; /* テキストとアイコンを中央配置 */
  color: var(--text-color);
  padding: 1.3em 5em;
  border-radius: 70px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: linear-gradient(270deg, #F4E8E8 30%, #fbf9fa 100%);
  background-position: 1% 50%;
  /*アニメーションの指定*/
  transition: all 0.4s ease-out;
  margin-top: 1.5em;
  position: relative;
}
/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
  color: var(--text-color);
  background-position: 99% 50%;
}
/*== ボタン下の横線（アニメーション） ==*/
.gradient1::after {
  content: '';
  position: absolute;
  right: -2em;
  width: 5em;
  height: 1px;
  background: var(--text-color);
  transition: transform 0.3s ease-out;
}
/* hover時に右へ20%移動 */
.gradient1:hover::after {
  transform: translateX(40%);
}
.reservation-button p {
  font-size: 0.9rem; /* テキストサイズを少し小さく */
  text-align: center; /* 中央寄せ */
  max-width: 280px; /* 適切な横幅に調整 */
  margin: 0.5em auto 0; /* 上に少し余白を追加 */
  line-height: 1.5; /* 読みやすくする */
}
@media (max-width: 768px) {
  .button_section ul {
    flex-direction: column; /* 縦並びに変更 */
    gap: 2em; /* ボタン間の余白を調整 */
  }
  .reservation-button {
    width: 100%; /* 親要素の幅いっぱいに */
    max-width: 320px; /* 適切な最大幅 */
    display: flex;
    flex-direction: column;
    align-items: center; /* ボタンとテキストを中央揃え */
    justify-content: flex-start; /* 上寄せ */
    text-align: center; /* テキストも中央寄せ */
    margin: 0 auto; /* 完全に中央寄せ */
  }

  .gradient1 {
    padding: 2rem 11vw;
    border-radius: 50px;
    font-size: 1.2rem;
  }
  .gradient1::before {
    width: 2rem; /* アイコンサイズを調整 */
    height: 1.7rem;
    margin-right: 0.8rem; /* テキストとの間隔を調整 */
  }
  .gradient1::after {
    right: -1.5rem; /* 横線の位置を調整 */
    width: 20%; /* 横線を少し短く */
  }
  .reservation-button p {
    font-size: 0.85rem; /* スマホではさらに少し小さく */
    max-width: 260px; /* 文字の折り返しを調整 */
    margin-top: 0.3em; /* 上の余白を微調整 */
  }
}
.footer {
  background-color: var(--primary-color); /* フッターの背景色 */
  color: var(--text-color); /* テキストカラー */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左揃え */
  justify-content: center; /* 縦方向中央揃え */
  padding: 2em 5em;
}
/* ロゴのスタイル */
.footer-logo img {
  width: 50%; /* 親要素の幅に対して 50% のサイズ */
  max-width: 200px; /* 最大サイズを設定（必要に応じて変更） */
  height: auto; /* 縦横比を維持 */
  display: block; /* 余計な隙間を防ぐ */
}
/* ナビゲーションのスタイル */
.footer nav {
  display: flex;
  gap: 2em; /* 各リンクの間隔 */
  margin-top: 1.5em;
}
.footer-logo a img {
  transition: opacity 0.3s ease; /* スムーズな変化 */
}
.footer-logo a:hover img {
  opacity: 0.5; /* 50% 透過（0.0 〜 1.0 で調整可能） */
}
.footer nav a {
  text-decoration: none;
  color: var(--text-color, #fff);
  font-size: 1em;
  transition: color 0.3s ease;
}
.footer nav a:hover {
  opacity: 0.7;
}
/* 横線を追加 */
.footer-line {
  width: 70em;
  height: 1px;
  background-color: var(--text-color);
  margin: 2em 0;
}
/* Instagram アイコンを横線の下に配置 */
.footer-instagram {
  align-self: flex-start; /* 左揃え */
  margin-top: 1em; /* 横線から少し余白 */
}
.footer-instagram img {
  width: 40px; /* アイコンの幅 */
  height: 40px; /* アイコンの高さ */
  transition: transform 0.3s ease; /* ホバー時のアニメーション */
}
/* ホバー時のエフェクト */
.footer-instagram a:hover img {
  transform: scale(1.1); /* ちょっと拡大 */
}
/* コピーライトのスタイル */
.footer .description {
  font-size: 0.7em;
  text-align: left;
  margin-top: 1em;
}
.wave {
  position: relative;
  height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  margin-bottom: -1px; 
}
canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  /* フッター全体を中央揃え */
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 5em; /* 波と重ならないように調整 */
  }
  /* フッターロゴを中央寄せ */
  .footer-logo {
    text-align: center;
    margin-bottom: 1em; /* 波と距離を確保 */
    position: relative;
    z-index: 2; /* 波より手前に配置 */
  }
  .footer-logo img {
    display: block;
    margin: 0 auto; /* 画像を中央に */
  }
  /* フッターのナビゲーションを縦並びに変更 */
  .footer nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
  }
  /* フッター内のリンクを中央揃え */
  .footer nav a {
    font-size: 0.9em;
    text-align: center;
  }
  /* 横線を画面幅に合わせて調整 */
  .footer-line {
    width: 90%;
    margin: 1.5em auto;
  }
  /* Instagramアイコンを中央に */
  .footer-instagram {
    align-self: center;
    margin-top: 1em;
  }
  /* コピーライトを中央揃え */
  .footer .description {
    text-align: center;
    margin-top: 1em;
  }
  /* 波の高さを調整し、ロゴと重ならないようにする */
  .wave {
    height: 120px; /* スマホで高さを縮小 */
    position: relative;
    z-index: 1; /* 波を背景に配置 */
  }
  canvas {
    z-index: 0; /* 波を一番奥に */
  }
}
.fixed-sns-link {
  position: fixed;
  bottom: 6em; /* 画面下からの距離 */
  right: 0;
  transform: rotate(90deg) translateX(50%); /* 90度回転して、画面内に適切に配置 */
  font-weight: 500;
  font-size: 0.9em;
  color: rgb(191, 160, 107);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  z-index: 1000;
  align-items: center;
  gap: 0.5em; /* ドットとテキストの距離を調整 */
}
/* ドットの追加 */
.fixed-sns-link::before {
  content: "";
  width: 0.375rem; /* ドットのサイズ */
  height: 0.375rem;
  border-radius: 50%; /* 丸くする */
  background: rgb(191, 160, 107); /* ドットの色 */
  display: inline-block;
}
/* ホバー時のスタイル変更 */
.fixed-sns-link:hover {
  background: rgb(191, 160, 107);
  color: white;
}
/* === コピーライトのスタイル（Instagramの上に配置） === */
.fixed-copyright {
  position: fixed;
  bottom: 15.5em;
  right: -1.3em;
  transform: rotate(90deg) translateX(50%);
  font-weight: 500;
  font-size: 0.9em;
  color: rgb(191, 160, 107);
  text-decoration: none;
  z-index: 1000;
  letter-spacing: 0;
  line-height: 0;
  display: inline-block; /* Instagramリンクと同じ動作 */
  text-align: center;
}