@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(--background-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;
  text-align: left;
  letter-spacing: 0.08em;
}
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_image {
  width: 100vw;
  height: auto;
  max-height: 100vh;
  object-fit: cover; /* 画像を画面全体にフィットさせる */
  z-index: -1; /* 画像を一番背面に */
}
.main-visual_image img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.main-visual_container {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr; /* 3列のグリッド */
  align-items: center; /* 縦方向中央揃え */
  justify-content: center; /* 水平方向中央揃え */
  padding: 15em 14em 17em;
  position: relative; /* 背景を配置 */
  z-index: 1; /* 背景より前に表示 */
  gap: 3em;
  list-style: none;
  max-width: 1330px; /* 最大幅を1330pxに制限 */
  width: 100%; /* 常に親要素にフィット */
  margin: 0 auto; /* 中央揃え */
}
.image-container {
  display: contents; /* 画像を親グリッドの流れに合わせる */
}
@media (max-width: 1000px) {
  .main-visual_container {
    padding: 15em 8em 17em;
    gap: 2em;
  }
}
/* `.main-visual_container` に擬似要素 `::after` で回転する画像を設定 */
.main-visual_container::after {
  content: "";
  position: absolute;
  top: 26em;
  left: 37%;
  transform: translateX(-50%);
  width: 13em;
  height: 13em;
  background-image: url("../image/top_section_name.png"); /* 回転する画像 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotate 12s infinite linear;
  z-index: 1000;
}
/* 回転アニメーション */
@keyframes rotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
.gradation01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; 
}
.item {
  position: absolute;
  transform-origin: center;
  transform-origin: 0 0;
  animation-name: rotate-item;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/* エフェクトのバリエーション */
.item-03 {
  left: 30%;
  top: 45%;
  z-index: 4;
  animation-duration: 15s;
}
.item-04 {
  left: 60%;
  top: 55%;
  z-index: 1;
  animation-duration: 18s;
}
.item-05 {
  left: 45%;
  top: 60%;
  z-index: 2;
  animation-duration: 18s;
  animation-direction: reverse;
}
/* 丸いエフェクトのスタイル */
.round {
  position: relative;
  border-radius: 50%;
  opacity: 0.8;
}
.round-03 {
  width: 14vw;
  height: 14vw;
  background: #E3C6BA; /* 落ち着いたグレージュ */
  filter: blur(30px);
  animation: flash 8s linear infinite;
}
.round-04 {
  width: 15vw;
  height: 15vw;
  background: #E3C6BA; /* 明るめのベージュ */
  filter: blur(50px);
  animation: flash 7s linear infinite;
}
.round-05 {
  width: 12vw;
  height: 12vw;
  background: #E3C6BA; /* ほんのりグレーを混ぜたカラー */
  filter: blur(50px);
  animation: flash 8s linear infinite;
}
/* 回転アニメーション */
@keyframes rotate-item {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 点滅アニメーション */
@keyframes flash {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
}
.main-visual_container img {
  width: 12em; /* グリッド内で適切にサイズ調整 */
  height: auto; /* 縦横比を維持 */
  max-width: 350px; /* 画像の最大サイズを制限 */
}
/* 画像1を上に持ち上げる */
.main-visual_container li:first-of-type {
  transform: translateY(3em); /* 画像を上へ */
}
/* 画像2を下げる */
.main-visual_container li:nth-of-type(2) {
  transform: translateY(-3em); /* 画像を下へ */
}
.main-visual_container p {
  padding-bottom: 1em;
}
.text-content {
  padding-left: 4em;
  text-align: center;
}
@media (max-width: 1000px) {
  .text-content {
    padding-left: 2em;
  }
}
@media (max-width: 768px) {
  .main-visual_container {
    display: grid;
    grid-template-columns: 1fr; /* 1カラムにする */
    grid-template-rows: auto auto; /* 行の高さを自動 */
    grid-template-areas:
      "text"
      "items"; /* 画像をまとめて下に配置 */
    gap: 2em;
    padding: 8vh 0;
    justify-content: center;
  }
  /* テキストを上部に中央配置 */
  .text-content {
    grid-area: text;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0; /* スマホでは余白をなくす */
  }
  /* 画像エリアを横並びにする */
  .image-container {
    grid-area: items; /* 画像エリア */
    display: flex;
    justify-content: center; /* 横方向中央 */
    gap: 4vw; /* 画像間の余白 */
    width: 100%;
    padding: 12vh 0;
  }
  .image-container li {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 高さを維持しつつ、中央配置 */
  }
  /* 画像自体のスタイルを維持しつつ中央揃え */
  .main-visual_container img {
    display: block;
    width: 40vw; /* 画像の幅を12emに固定 */
    height: auto; /* 縦横比を維持 */
    max-width: 170px; /* 画像の最大サイズを制限 */
    margin: 0 auto; /* 画像を左右中央揃え */
  }
  .main-visual_container::after {
    content: "";
    position: absolute;
    top: 68%;
    left: 77%;
    width: 130px;
    height: 130px;
  }
  .round-03 {
    width: 10em;
    height: 11em;
  }
  .round-04 {
    width: 12em;
    height: 12em;
  }
  .round-05 {
    width: 12em;
    height: 12em;
  }
  .item-03 {
    left: 77%;
    top: 74%;
  }
  .item-04 {
    left: 60%;
    top: 20%;
    z-index: 1;
    animation-duration: 18s;
  }
  .item-05 {
    left: 45%;
    top: 55%;
    z-index: 2;
    animation-duration: 18s;
    animation-direction: reverse;
  }}
.section-title {
  position: relative; /* あしらいを配置するための基準 */
}
.section-title::after {
  content: ""; /* 擬似要素を生成 */
  position: absolute;
  top: 0em;
  right: 17em;
  width: 16em;
  height: 11em;
  background-image: url("../image/point_section_embellishments_1.png"); /* あしらい画像 */
  background-size: contain; /* 画像を適切に調整 */
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(2); /* さらに拡大したい場合 */
  z-index: 1; /* `section-title` の背面に配置 */
}
.point_section_container {
  display: flex;
  justify-content: center;
  gap: 4.5em;
  align-items: center;
  padding-bottom: 8em;
  position: relative;
  z-index: 2;
}
.point_section_container:last-child {
  padding-bottom: 0;
}
.point_section_container.reverse-layout {
  flex-direction: row-reverse;
}
.point-section img {
  width: 24.5em;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* === 背景アニメーションの設定 === */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#point_section {
  position: relative;
  counter-reset: number2 0;
  background: linear-gradient(45deg, #f1e8e5, #fbf9fa, #CBB7B7);
  background-size: 400% 400%; /* 背景のサイズを大きくして動きを持たせる */
  animation: gradientAnimation 8s linear infinite; /* アニメーションを適用 */
  width: 100%; /* 横幅いっぱいにする */
  padding-bottom: 10em;
  overflow: visible;
  border-radius: 100% 100% 0 0 / 12% 10% 0 0;
}
#point_section::before {
  content: "";
  position: absolute;
  top: -42em;
  left: 0;
  width: 100%;
  height: 84em;
  background: rgba(248, 243, 244, 0.6);
  clip-path: ellipse(105% 58% at 98% 106%);
  z-index: -1;
}
/* 下部の波（右寄り） */
#point_section::after {
  content: "";
  position: absolute;
  top: -42em;
  left: 0;
  width: 100%;
  height: 68em;
  background: rgba(241, 232, 229, 0.6);
  clip-path: ellipse(132% 58% at 7% 112%);
  z-index: -1;
}
.point-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.point-title::before {
  counter-increment: number2;
  content: counter(number2, decimal-leading-zero);
  font-size: var(--font-l);
  font-weight: 300;
  display: flex;
  align-items: center;
}
.title-text {
  position: relative;
  display: inline-block; /* インライン要素に適用するため */
  z-index: 2; /* 文字の背面に配置 */
}
/* 下線を擬似要素で追加 */
.title-text::after {
  content: "";
  position: absolute;
  left: -0.1em;
  bottom: -13%;
  width: 100%;
  height: 0.8em;
  background-color: white;
  opacity: 0.8;
  z-index: -2;
}
.point-title .separator {
  width: 1px;
  height: 1.3em;
  background-color: var(--text-color);
  margin-right: 0.2em;
}
.point_section_point_image {
  position: relative;
  display: inline-block;
  width: 26.5em;
  max-width: 100%;
}
.point_section_point_image::after {
  content: ""; /* 擬似要素を生成 */
  position: absolute;
  top: 0em;
  right: 17em;
  width: 16em;
  height: 11em;
  background-image: url("../image/point_section_embellishments_2.png"); /* あしらい画像 */
  background-size: contain; /* 画像を適切に調整 */
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(2); /* さらに拡大したい場合 */
  z-index: 0; /* `section-title` の背面に配置 */
}
  @media (max-width: 768px) {
    /* `.point_section_container` を縦レイアウトに変更 */
    .point_section_container {
      display: flex;
      flex-direction: column; /* 縦並びにする */
      align-items: center; /* 水平方向の中央揃え */
      gap: 5vh;
      padding-bottom: 9vh;
    }
    /* `.reverse-layout` も同じように縦並びにする */
    .point_section_container.reverse-layout {
      display: flex;
      flex-direction: column; /* 通常レイアウトと同じように縦並びに */
      align-items: center;
    }
    /* 画像のサイズ調整 */
    .point-section img {
      width: 60%; /* 画像を画面幅に合わせる */
      max-width: 300px; /* 最大幅を設定 */
      height: auto;
    }
    /* `.point_section_point_image` も同様に調整 */
    .point_section_point_image {
      width: 60%;
      max-width: 300px;
    }
    .point_section_point_image img {
      width: 100%;
      max-width: 300px;
      height: auto;
      display: block;
      object-fit: contain;
    }
    /* `.point-title .separator` の縦線を非表示（不要な装飾を削除） */
    .point-title .separator {
      display: none;
    }
    /* `.title-text::after` の下線の調整 */
    .title-text::after {
      left: 50%;
      transform: translateX(-50%);
    }
  .section-title::after {
        right: 0%;
        width: 60%;
        transform: scale(1);
        height: 100%;
        top: 20%;
  }
    }
  .point_section_point_image::after {
    top: 5vh;
    right: 52%;
    width: 70%;
    height: 100%;
    transform: scale(2); /* さらに拡大したい場合 */
  }
  #point_section {
    border-radius: 100% 100% 0 0 / 4% 4% 0 0;
  }
  #point_section::before {
    top: -45em;
    left: 0;
    width: 100%;
    height: 88em;
    background: rgba(248, 243, 244, 0.6);
    clip-path: ellipse(155% 58% at 90% 106%);
  }
  #point_section::after {
    top: -40em;
    left: 0;
    width: 100%;
    height: 67em;
    background: rgba(241, 232, 229, 0.6);
    clip-path: ellipse(172% 58% at 11% 113%);
  }
.container_text {
  width: 22em;
  padding-top: 1.4em;
}
.point_section_link {
  display: flex;
  padding-bottom: 10em;
  gap: 2em;
  justify-content: center; /* 横方向の中央寄せ */
  align-items: center; /* 縦方向の中央寄せ */
  position: relative;
  background-color: var(--background-color); /* 背景色 */
  padding: 8em 0;
  border-radius: 12px;
}
.link-item {
  text-decoration: none; /* アンダーラインを消す */
  color: inherit; /* 親要素の色を継承（デフォルトの青色を無効にする） */
  display: block; /* クリック範囲を広げる */
}
.link-item:hover {
  opacity: 0.8; /* ホバー時に少し透明感を出す */
}
.link-wrapper_1, .link-wrapper_2, .link-wrapper_3 {
  background-size: cover; /* 画像を要素いっぱいに広げる */
  background-position: center; /* 画像の中央を表示 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  width: 23vw;
  height: 14em;
  display: flex; /* 内容を中央揃えにしたい場合 */
  flex-direction: column; /* 中のテキストを縦並び */
  align-items: center;
  justify-content: center;
  border-radius: 16px; /* 角を丸くする */
  overflow: hidden; /* 画像のはみ出しを防ぐ */
}
.link-wrapper_1 {
  background-image: url("../image/link_section_stylist.png");
}
.link-wrapper_2 {
  background-image: url("../image/link_section_menu.png");
}
.link-wrapper_3 {
  background-image: url("../image/link_section_voice.png");
}
.link-title {
  font-size: var(--font-l);
  color: var(--primary-color);
}
.link-title::after {
  content: ""; /* 空のコンテンツ */
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid currentColor; /* 矢印の上線 */
  border-right: 2px solid currentColor; /* 矢印の右線 */
  transform: rotate(45deg); /* 右上向きに回転 */
  margin-left: 0.3em; /* 文字との間隔 */
}
.view-more {
  font-size: var(--font-xs);
  color: var(--primary-color);
}
/* 各リンクに番号を追加 */
.link-item {
  position: relative; /* 擬似要素の基準位置 */
}
/* 番号のスタイル */
.link-item::before {
  content: counter(link-counter, decimal-leading-zero); /* 01, 02, 03 の形式 */
  counter-increment: link-counter; /* カウンターを増やす */
  position: absolute;
  top: 0em;
  left: 0.7em;
  font-size: var(--font-l); /* H2と統一 */
  color: var(--text-color); /* テキストの色 */
  letter-spacing: 0.1em; /* 文字間隔を調整 */
  z-index: 2; /* 前面に表示 */
  display: block;
  transform: translateY(-90%); /* 高さを調整 */
}
/* スラッシュ（CSSで斜めの線を作る） */
.link-item::after {
  content: "";
  position: absolute;
  top: -1.1em;
  left: 2.3em;
  width: 3.5em;
  height: 1px;
  background-color: var(--text-color);
  transform: rotate(90deg);
  z-index: 2;
}
/* 番号を管理するカウンター */
.point_section_link {
  counter-reset: link-counter; /* カウンターをリセット */
}
.wide-image {
  position: relative;
  width: 100%;
  height: 50vh; /* 適宜調整 */
  background-image: url("../image/access_section_top.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* パララックスエフェクト */
}
@media (max-width: 768px) {
    #point_section::before {
    top: -43em;
  }
      #point_section::after {
    top: -39em;
  }
  /* `.point_section_link` を縦並びに変更 */
  .point_section_link {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center; /* 水平方向の中央寄せ */
    gap: 8vh; /* 要素間の余白を調整 */
    padding: 10vh 0; /* スマホ用のパディング */
    justify-content: center;
  }
  /* `.link-item` も縦並びに適用 */
  .link-item {
    width: 45vw;
    min-width: 200px;
  }
  /* `.link-wrapper_1, .link-wrapper_2, .link-wrapper_3` のサイズ調整 */
  .link-wrapper_1, .link-wrapper_2, .link-wrapper_3 {
    width: 100%; /* 画面幅いっぱいに */
    max-width: 300px; /* 最大幅を設定 */
    height: 12em; /* 高さを調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  /* `.wide-image` の高さ調整 */
  .wide-image {
    height: 30vh; /* スマホで小さくする */
  }
  .wide-image {
    background-attachment: scroll;
  }}
.access-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6em;
}
.access-container_text {
  text-align: left;
  color: var(--text-color);
}
.access-table td {
  padding: 0px 4.5em 0.5em 0; /* 上下に1em, 左右に0.5emの余白 */
  vertical-align: top; /* テキストを上揃え */
}
.reservation-button {
  text-align: right;
  margin-right: 11em;
}
/*== グラデーションが流れる */
.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%;
  background-size: 200% auto;
  /*アニメーションの指定*/
  transition: all 0.4s ease-out;
  margin-top: 1.5em;
  position: relative;
}
/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
  color: var(--text-color);
  background-position: 99% 50%;
}
/*== 「ご予約について」の前にアイコンを追加 ==*/
.gradient1::before {
  content: ""; /* 空のコンテンツ */
  display: inline-block;
  width: 2.5em;
  height: 2.1em;
  background-image: url("../image/access_reserve_icon.svg"); /* アイコンの画像 */
  background-size: contain; /* アイコン画像を適切に調整 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  margin-right: 1em; /* アイコンとテキストの間に余白 */
}
/*== ボタン下の横線（アニメーション） ==*/
.gradient1::after {
  content: '';
  position: absolute;
  right: -2em;
  width: 25%;
  height: 1px;
  background: var(--text-color);
  transition: transform 0.3s ease-out;
}
/* hover時に右へ20%移動 */
.gradient1:hover::after {
  transform: translateX(40%);
}
@media (max-width: 768px) {
  .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%; /* 横線を少し短く */
  }
}
/* iframe をラップするコンテナ */
.map-container {
  width: 23em; /* 固定幅 */
  height: 30em;
  max-width: 100%; /* 画面幅を超えないようにする */
  border-radius: 16px; /* 角を丸くする */
  overflow: hidden; /* 角丸を iframe に適用するために必要 */
}
/* iframe のスタイル */
.map {
  width: 100%; /* 親要素に合わせる */
  height: 100%; /* 親要素に合わせる */
  display: block;
}
@media (max-width: 768px) {
  .access-container {
    display: flex;
    flex-direction: column; /* 縦並びにする */
    align-items: center; /* 中央揃え */
    gap: 10vh; /* 要素間の余白 */
  }
  .access-container_text {
    width: 100%; /* 幅いっぱいに */
    display: flex;
    flex-direction: column;
    align-items: center; /* 要素ごとに中央揃え */
  }
  .access-table td {
    padding: 0.5em 1em; /* スマホ用に余白を調整 */
    font-size: clamp(10px, 3vw, 12px);
  }
  .reservation-button {
    text-align: center; /* ボタンも中央揃え */
    margin-right: 0; /* PCの余白をリセット */
  }
  .map-container {
    width: 90%; /* スマホでは幅を広げる */
    height: 25em; /* 高さを少し調整 */
  }
  .gradient1::after {
    right: -4vw;
    width: 15%;
  }
}
.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 0;
  margin-top: 0;
}
/* ロゴのスタイル */
.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%;
  display: block;
  border: none;
  outline: none;
}
@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;
}