/* ========================================
   アグー豚しゃぶしゃぶ翡翠 - Phone-Frame Layout
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-gold: #cca151;
  --color-gold-hover: #ddb768;
  --color-gold-light: rgba(204, 161, 81, 0.15);
  --color-text: #333333;
  --color-text-sub: #a2a2a2;
  --color-white: #ffffff;
  --color-ivory: #faf8f5;
  --color-dark: #1a1a1a;
  --color-dark-overlay: rgba(26, 26, 26, 0.6);

  --font-jp: 'Noto Serif JP', serif;
  --font-en: 'Lora', serif;
  --font-zh-tw: 'Noto Serif TC', serif;
  /* 繁体字用 */
  --font-zh-cn: 'Noto Serif SC', serif;
  /* 簡体字用 */
  --font-ko: 'Noto Serif KR', serif;
  /* 韓国語用 */
  --section-padding: 60px;
  --header-height: 56px;
  --phone-width: 390px;

  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.tiny {
  font-size: 11px;
  line-height: 1.8;
  display: block;
  /* これを追加 */
}

/* ========================================
   PHONE FRAME LAYOUT
   ======================================== */
.phone-frame {
  position: relative;
  max-width: var(--phone-width);
  height: 100vh;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  scrollbar-width: none;
}

.phone-frame::-webkit-scrollbar {
  display: none;
}

/* ========================================
   SIDE PANELS
   ======================================== */
.side-panel {
  position: fixed;
  top: 0;
  height: 100vh;
  width: calc((100vw - var(--phone-width)) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.side-panel--left {
  left: 0;
  /* 画像の前に色を指定します */
  background-image: linear-gradient(#333333, #333333), url(../img/side_rleft_bg.jpg);
  background-size: cover;
  
  /* 画像と色を「乗算」させてフィルター効果を出します */
  background-blend-mode: multiply;
}

.side-panel--right {
  right: 0;
}

.side-panel__content {
  text-align: center;
  color: var(--color-white);
}

/* Left panel - logo area */
.side-panel--left .side-panel__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-panel__logo {
  width: 170px;
  height: auto;
}

/* Right panel - info */
.side-panel--right .side-panel__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.side-panel__info {
  text-align: center;
  padding: 0 20px;
}

.side-panel__wi-fi {
  margin-top: 10px;
}

.wi-fi_txt {
  margin-top: 10px;
}

.side-panel__label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.side-panel__text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-sub);
}

.side-panel__info {
  text-align: center;
}

.side-panel__img img {
  width: 100px;
  /* アイコンを少し控えめなサイズに */
  height: auto;
}

.side-panel__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

.side-panel__sns a {
  color: var(--color-text-sub);
  transition: color var(--transition);
}

.side-panel__sns a:hover {
  color: var(--color-gold);
}

/* ---------- Utility ---------- */
.container {
  padding: 0 20px;
}

/* ---------- Section Common ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section--ivory {
  background-color: var(--color-ivory);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section__heading {
  text-align: center;
  margin-bottom: 40px;
}

.section__heading-en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.section__heading-ja {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.section__heading-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 16px auto 0;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Placeholder Images ---------- */
.placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 200px;

  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image--concept {
  min-height: 250px;
}

.placeholder-image--concept img {
  max-width: 100%;
}

.placeholder-image--menu1 {
  background: linear-gradient(135deg, #e8d5b5 0%, #f0e6d2 50%, #d4c0a0 100%);
  min-height: 160px;
}

.placeholder-image--menu2 {
  background: linear-gradient(135deg, #d4b896 0%, #e8d0b5 50%, #c4a880 100%);
  min-height: 160px;
}

.placeholder-image--menu3 {
  background: linear-gradient(135deg, #c4a878 0%, #d8c0a0 50%, #b49868 100%);
  min-height: 160px;
}

.placeholder-image--commit1 {
  min-height: 180px;
}

.placeholder-image--commit2 {
  min-height: 180px;
}

.placeholder-image--commit3 {
  min-height: 180px;
}

.placeholder-image--gallery1 {
  min-height: 120px;
}

.placeholder-image--gallery2 {
  min-height: 120px;
}

.placeholder-image--gallery3 {
  min-height: 120px;
}

.placeholder-image--gallery4 {
  min-height: 120px;
}

.placeholder-image--gallery5 {
  min-height: 120px;
}

.placeholder-image--gallery6 {
  min-height: 120px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.97);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.header__inner {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.header__logo-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.header__logo-sub {
  font-size: 9px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}

/* Hamburger */
.header__hamburger {
  display: block;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 201;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  left: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
}

.header__hamburger span:nth-child(3) {
  bottom: 0;
}

.header__hamburger.is-open span {
  background-color: var(--color-text);
}

.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

/* ========================================
   NAV OVERLAY
   ======================================== */
.nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Nav close button */
.nav-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.nav-overlay__close span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  left: 0;
  top: 50%;
}

.nav-overlay__close span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-overlay__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay__link {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-overlay__link:hover {
  color: var(--color-gold);
}

/* ========================================
   HERO
   ======================================== */
/* ========================================
   HERO
   ======================================== */
.hero {
position: relative;
  
  /* ★変更：100vh - ヘッダー(56px) - お知らせ(44px) = 100px を引く */
  height: calc(100vh - 100px); 
  min-height: 500px;
  
  display: flex;
  align-items: flex-start;
  justify-content: center;
  
  /* ★変更：MVが下に下がった分、中の文字の余白を少し減らしてバランスを取る */
  padding-top: 50px; 
  
  background-color: #000;
  overflow: hidden;
  
  /* ★重要： margin-top: calc(var(--header-height) * -1); は削除してください！ */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/mv_img.jpg);
  background-repeat: no-repeat;

  /* ご希望のサイズ設定 */
  background-size: 100% auto;
  /* 画像を下端に固定 */
  background-position: bottom;

  /* 【ここが修正ポイント】 */
  /* グラデーションの開始位置をずっと下（50%）に下げる */
  -webkit-mask-image: linear-gradient(to bottom, transparent 30%, black 0%);
  mask-image: linear-gradient(to bottom, transparent 30%, black 50%);

  z-index: 0;
}

/* テキストを画像より上に持ってくる */
.hero>* {
  position: relative;
  z-index: 1;
}

/* 以下、既存のスタイル（文字やボタンなど） */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(204, 161, 81, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(204, 161, 81, 0.05) 0%, transparent 50%);
  z-index: 1;
  /* 重なり順を確保 */
}

.hero__content {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  z-index: 2;
  /* 文字を一番上に */
}

/* ...（以下、hero__catch 以降は変更なし）... */
/* ...（hero__content 以降もそのまま）... */

.hero__content {
  writing-mode: vertical-rl;
  /* 縦書き（右から左へ） */
  text-orientation: mixed;
  color: #fff;
  /* その他、位置の微調整など */
}

.hero__catch {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #F0BF63;
  margin-left: 7px;
  font-weight: 400;
  /* 全方向に影を広げて、文字の輪郭を保護する */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 1);
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  margin-bottom: 40px;
}

.hero__btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: background-color var(--transition), color var(--transition);
}

.hero__btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.hero__scroll {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ========================================
   TOP NOTICE (告知バー)
   ======================================== */
.top-notice {
background-color: var(--color-dark);
  border-bottom: 1px solid rgba(204, 161, 81, 0.3);
  position: relative;
  z-index: 90;
  
  /* ★追加：高さをPC用に44pxに固定します */
  height: 44px;
}

.top-notice__inner {
display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  
  /* ★変更：上下のpaddingを0にして、height: 100%で中央に揃えます */
  padding: 0 16px;
  height: 100%;
}

.top-notice__date {
  font-family: var(--font-en);
  font-size: 14px;
color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.gold {
color: var(--color-white);
}

.top-notice__text {
  font-size: 14px;
  font-weight: 600;
color: var(--color-gold);
line-height: 1;
  letter-spacing: 0.1em;
}

/* スマホ表示時の微調整 (もし改行させたい場合などはここで調整) */
@media (max-width: 768px) {
/* ① 高さを76pxに微調整（先ほどより少し控えめに） */
  .top-notice {
    height: 76px; 
  }
  
  /* ② 文字同士の隙間も少しだけ狭める */
  .top-notice__inner {
    flex-direction: column;
    gap: 4px; /* 6pxから4pxに変更して、少しキュッとさせます */
    padding: 0 16px 7px;
    height: 100%;
  }
  .top-notice__date {
  font-size: 18px;
}

.top-notice__text {
  font-size: 16px;
}

}
/* ========================================
   NEWS
   ======================================== */
.news {
  background-color: var(--color-ivory);
}
.news__inner {
  padding: 0 5px;
}

.news__list {
  /* メニュー項目などで使われている薄い境界線と同じ色 */
  border-top: 1px solid #e8e4de; 
}

.news__item {
  padding: 20px 0;
  border-bottom: 1px solid #e8e4de;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news__date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.news__tag {
  font-size: 11px;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 2px 8px;
  line-height: 1;
}

.news__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.news__desc {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

/* ========================================
   CONCEPT
   ======================================== */
.concept__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.concept__image {
  overflow: hidden;
}

.concept__lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.concept__text p {
  margin-bottom: 16px;
  line-height: 2.2;
  font-size: 14px;
}

.concept__text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   MENU
   ======================================== */
/* ========================================
   多言語ごとのフォント適用
   ======================================== */
/* 英語 */
#panel-en,
#tab-en {
  font-family: var(--font-en);
}

/* 繁体字中国語 */
#panel-zh-tw,
#tab-zh-tw {
  font-family: var(--font-zh-tw);
  /* 句読点の位置や字体をスマホのブラウザに最適化 */
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}

/* 簡体字中国語 */
#panel-zh-cn,
#tab-zh-cn {
  font-family: var(--font-zh-cn);
}


/* 韓国語 */
#panel-ko,
#tab-ko {
  font-family: 'Noto Serif KR', serif;
  word-break: keep-all;
  /* 韓国語特有の「単語の途中で改行させない」設定 */
}

/* 各パネル内のボタンに、それぞれの言語のフォントを強制する */
#panel-zh-tw .cat-btn {
  font-family: var(--font-zh-tw);
}

#panel-zh-cn .cat-btn {
  font-family: var(--font-zh-cn);
}

#panel-ko .cat-btn {
  font-family: var(--font-ko);
}

/* 韓国語パネルの設定 */
#panel-ko {
  /* これを追加！単語の途中でも枠の端で改行させる設定 */
  word-break: break-all;

  /* もし「単語単位」で綺麗に改行させたいならこちら（おすすめ） */
  /* word-break: keep-all; 
     overflow-wrap: break-word; */
}



/* もし、中の小さな文字（.tiny）だけがはみ出ているならここにも */
#panel-ko .tiny {
  word-break: break-all;
  display: block;
  /* 改行を正常に機能させるため */
}

/* ========================================
   タブメニューのレイアウト
   ======================================== */
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  /* 画面幅が狭い場合は折り返す */
  gap: 12px;
  /* タブ間の隙間 */
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  /* 下部のコンテンツとの余白 */
  justify-content: center;
  /* 画像のように中央寄せにする */
}

/* ========================================
   タブボタン（非アクティブ時）
   ======================================== */
.tab-btn {
  padding: 8px 16px;
  background-color: #555555;
  /* 画像に近い濃いグレー */
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  /* 既存の明朝体指定があれば合わせる */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid #555555;
  /* ガタつき防止のため同じ色の枠線を引く */
  transition: all 0.3s ease;
  /* ホバー時の変化を滑らかに */
}

/* ホバー（マウスオーバー）時の少し明るくする処理 */
.tab-btn:hover {
  opacity: 0.8;
}

/* ========================================
   タブボタン（アクティブ・選択中）
   ======================================== */
.tab-btn.is-active {
  background-color: transparent;
  /* 背景を透明に */
  color: #555555;
  /* 文字色をグレーに */
  border: 1px solid #555555;
  /* グレーの枠線をつける */
  pointer-events: none;
  /* 選択中のタブはクリックできないようにする */
}

/* ========================================
   パネル（中身）の制御
   ======================================== */
.tab-panel {
  display: none;
  /* 基本は全て非表示 */
}

.tab-panel.is-show {
  display: block;
  /* is-showがついたパネルだけ表示 */
  animation: fadeIn 0.5s ease;
  /* ふわっと表示させるアニメーション */
}

/* ふわっと表示させるアニメーションの設定 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   カテゴリータブメニュー
   ======================================== */
.cat-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  /* 下のコンテンツとの余白 */
}

/* カテゴリータブボタン（非アクティブ時） */
.cat-btn {
  padding: 6px 16px;
  background-color: var(--color-gold);
  /* 既存の変数を使用 */
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid var(--color-gold);
  transition: all var(--transition);
  /* 既存の変数を使用 */
}

.cat-btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

/* カテゴリータブボタン（アクティブ・選択中） */
.cat-btn.is-active {
  background-color: transparent;
  /* 背景を透明に */
  color: var(--color-gold);
  /* 文字をゴールドに */
  pointer-events: none;
  /* クリック無効化 */
}

/* カテゴリーパネルの表示・非表示制御 */
.cat-panel {
  display: none;
}

.cat-panel.is-show {
  display: block;
  animation: fadeInPanel 0.5s ease;
}

/* ふわっと表示させるアニメーション（言語タブと共通でも可） */
@keyframes fadeInPanel {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu__note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 20px;
  margin-bottom: 30px;
}

.menu__courses {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.menu__course {
  background-color: var(--color-white);
  border: 1px solid #e8e4de;
}

.intro_courses {
  margin-bottom: 20px;
  margin-top: 20px;
}

.menu__course-header {
  padding: 20px 20px 12px;
  text-align: center;
}

.menu__course-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.menu__course-price {
  font-family: 'Lora', 'Noto Serif SC', serif !important;
  font-size: 26px;
  color: var(--color-gold);
  font-weight: 400;
}



.menu__course-image {
  width: 100%;
  overflow: hidden;
}

.menu__course-items {
  padding: 0px 20px 24px;
}

.menu__course-items li {
  padding: 7px 0;
  border-bottom: 1px solid #f0ece6;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}

.menu__course-items li:last-child {
  border-bottom: none;
}

.menu__course-items .tiny {
  margin: 5px 0;
}

.syabu_note_ja,
.syabu_note_zh,
.syabu_note_kr {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
  /* ここから下が重要 */
  padding-left: 1.2em;
  /* 左側に1.2文字分のスペースを空ける */
  text-indent: -1.2em;
  /* 1行目だけをそのスペース分左に戻す */
  text-align: left;
  /* 左寄せを確実にする */
}

.syabu_note {
  font-size: 12px;
  line-height: 1.5;
  /* 改行した時に読みやすいよう少し行間を空けるのがおすすめ */

}

/* コース */
.course_01 {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: 20px auto 0;
}


/* ランチ */
.lunch_01 {
  display: block;
    width: 100%;
  max-width: 450px;
  margin: 20px auto 0;
}

.lunch_02 {
  display: block;
    width: 100%;
  max-width: 450px;
  margin: 40px auto 20px;
}

/* ドリンク */
.drink {
  display: block;
  max-width: 450px;
      width: 100%;
  margin: 40px auto 20px;
}


.drink_category {
  font-size: 15px;
  color: #CCA151;
  font-weight: 500;
  margin-top: 20px;
  text-align: center
}

/* Single items */
.menu__single {
  border-top: 1px solid #e8e4de;
  padding-top: 32px;
}

.menu__single-title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.menu__single-item {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dotted #d8d4ce;
  font-size: 14px;
}

.menu__single-item .tiny {
  font-size: 12px;
}

.menu__single-price {
  font-family: 'Lora', 'Noto Serif SC', serif !important;
  color: var(--color-gold);
  font-size: 15px;
  white-space: nowrap;
  margin-left: 16px;
}


/* ========================================
   COMMITMENT
   ======================================== */
.commitment__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.commitment__item {
  text-align: center;
}

.commitment__image {
  overflow: hidden;
  margin-bottom: 20px;
}

.commitment__number {
  font-family: var(--font-en);
  font-size: 32px;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.commitment__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.commitment__desc {
  font-size: 13px;
  line-height: 2;
  color: #555;
  text-align: left;
}

/* ========================================
   GALLERY
   ======================================== */
/* グリッドの設定（既存のものをそのまま利用） */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 6px;
  padding: 0 10px 30px 10px; /* スライド間の余白調整 */
}

/* 各アイテムの高さなどを維持 */
.gallery__item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.splide__pagination {
  bottom: 90px !important;
}


/* ドットを矢印の間に絶対配置でねじ込む */
.splide__pagination {
  position: absolute !important;
  bottom: -0px !important; /* 矢印の高さに合わせて微調整 */
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px;
}

/* 矢印を画面から完全に消し去る */
.splide__arrows, 
.splide__arrow {
  display: none !important;
}

/* ========================================
   INFORMATION
   ======================================== */
.information__table {
  width: 100%;
  border-collapse: collapse;
}

.information__table tr {
  border-bottom: 1px solid #e8e4de;
}

.information__table th,
.information__table td {
  font-size: 13px;
  vertical-align: top;
  text-align: left;
}

.information__table .check {
  border-bottom: 1px solid #ddb768;
}

.information__table th {
  display: block;
  padding: 14px 0 4px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.information__table td {
  display: block;
  padding: 0 0 14px;
}

.information__table td a {
  color: var(--color-text);
}

.information__table td a:hover {
  color: var(--color-gold);
}

.information__map {
  margin-top: 30px;
  overflow: hidden;
}

.information__map iframe {
  display: block;
}


.payment_01 {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 5px auto 0;
}

.payment {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 30px auto 0;
}





.access-item {
  display: flex;
  align-items: center;
  /* 要素全体を上下中央に */
  width: 100%;
  gap: 3px;
  /* 文字と線の間の余白 */
}

.dots {
  flex: 1;
  position: relative;
  /* 疑似要素の基準にする */
  height: 100%;
  /* 親の高さに合わせる */
}

/* ここが点線の本体 */
.dots::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  /* 上から50%の位置（真ん中）に配置 */
  transform: translateY(-50%);
  /* 線の厚み分を補正して完璧な中央へ */
  border-top: 0.5px dotted #333;
  /* 点線の種類。太くしたければ2pxに */
}

.name,
.time {
  white-space: nowrap;
  font-family: "Yu Mincho", "MS Mincho", serif;
  /* 明朝体にするとよりデザインに近くなります */
}

/* ========================================
   ACCESS
   ======================================== */
.access__info {
  margin-bottom: 30px;
}

.access__route {
  margin-bottom: 20px;
}

.access__route-title {
  font-size: 15px;
  /* 維持 */
  font-weight: 500;
  margin-bottom: 8px;
  /* 維持 */
  padding-left: 12px;
  border-left: 2px solid var(--color-gold);
}

.access__route-list {
  padding-left: 12px;
  padding-right: 12px;
  list-style: none;
  /* デフォルトのポチを無効化 */
}

/* 既存の li の設定をベースに、横並びの Flexbox を追加 */
.access-item {
  display: flex;
  /* 横並び */
  align-items: center;
  /* 垂直中央揃え */
  position: relative;
  padding-left: 16px;
  /* 維持 */
  margin-bottom: 5px;
  /* 維持 */
  font-size: 13px;
  /* 維持 */
}

.access-category {
  color: #cca151;
  font-weight: 500;
  margin-bottom: 5px;
}

/* 丸ポチの位置を中央に補正 */
.access-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  /* 10px から中央へ変更 */
  transform: translateY(-50%);
  width: 5px;
  /* 維持 */
  height: 5px;
  /* 維持 */
  border-radius: 50%;
  background-color: var(--color-gold);
}

/* 施設名と時間を改行させない */
.name,
.time {
  white-space: nowrap;
}

/* 点線のエリア */
.dots {
  flex: 1;
  /* 文字の間の余白を埋める */
  position: relative;
  height: 1px;
  margin: 0 10px;
  /* 文字との左右の隙間 */
}

/* 点線の本体（文字の真ん中を通る設定） */
.dots::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px dotted #ccc;
  /* 点線の色。お好みで var(--color-gold) 等に */
  transform: translateY(-50%);
}

.access__note {
  font-size: 12px;
  /* 維持 */
  color: var(--color-text-sub);
  margin-top: 16px;
}

.access__map-full {
  overflow: hidden;
}

.access__map-full iframe {
  display: block;
}


/* ========================================
   RESERVATION (予約ウィジェット外枠)
   ======================================== */
.reservation__wrapper {
  max-width: 600px; /* カレンダーの幅に合わせて少しスリムに調整 */
  margin: 0 auto;
  background-color: var(--color-white);
  border: 1px solid #e8e4de;
  border-top: 3px solid var(--color-gold); /* ブランドカラーのアクセント */
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); 
}

/* ========================================
   TableCheck 内部レイアウトの完全補正
   ======================================== */
/* 1. ウィジェット全体と見出しの調整 */
#tc-widget {
  width: 100% !important;
  font-family: var(--font-en) !important; 
}

#tc-widget .tc-h1 {
  display: none !important; /* デフォルトの「予約する」テキストを隠す */
}

#tc-widget[data-theme='clear'] .tc-body {
  padding: 0 !important;
}

/* 2. カレンダー部分 */
#tc-widget .tc-date-inline .pika-single {
  width: 100% !important;
  max-width: 400px !important;
  height: auto !important;
  margin: 0 auto 0px !important; /* 下に余白を設ける */
}

#tc-widget .tc-date {
  width: 100%;
  margin-bottom: 0px;
}
/* 3. アイコンと選択欄（時間・人数）のレイアウト */
/* 縦並びにするためのコンテナ設定 */
#tc-widget .tc-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 15px !important; /* カレンダー、時間、人数の間の隙間 */
}

/* 時間と人数の各行 */
#tc-widget .tc-time,
#tc-widget .tc-ppl {
  width: 90% !important;
  max-width: 300px !important; /* 入力エリアの最大幅 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  margin: 0 !important;
}

/* アイコン */
#tc-widget .tc-icon {
/* 1. サイズを固定 */
  width: 24px !important; /* 適切なサイズに。スクリーンショットから判断 */
  height: 24px !important;
  
  /* 2. Flexアイテムとしての縮小を防止 */
  flex-shrink: 0 !important; 
  
  /* 3. 中身を中央配置するための設定 */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* 4. 余白 */
  margin-right: 15px !important; 
  float: none !important;

}

/* セレクトボックスの枠 */
#tc-widget .tc-wrap-input {
  flex: 1 !important; /* 残りの幅を埋める */
  width: auto !important;
  float: none !important;
}

/* セレクトボックスのカスタマイズ（矢印の位置調整） */
#tc-widget .tc-wrap-input select {
  width: 100% !important;
  padding: 0px 10px !important;
font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif !important;
  border: 1px solid #d8d4ce !important; /* 翡翠のトンマナに合わせた枠線 */
  border-radius: 2px !important;
  background-color: var(--color-white) !important;
  color: var(--color-text) !important;
  
  /* 1. ブラウザ標準の矢印を消す */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  
  /* 2. オリジナルの矢印（SVG）を背景画像として設定 */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: 14px !important; /* 矢印の大きさ */
  
  /* 3. ★ここで矢印の位置を調整★ (右から15pxの位置) */
  background-position: right 15px center !important; 
}

/* IE用の矢印消去設定（念のため） */
#tc-widget .tc-wrap-input select::-ms-expand {
  display: none !important;
}

/* 4. 「予約する」ボタン（翡翠のゴールドカラーに） */
#tc-widget .tc-wrap-book {
  text-align: center !important;
  margin-top: 30px !important; /* ボタンの上の余白 */
}

#tc-widget .tc-book {
  background-color: var(--color-gold) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-gold) !important;
  font-family: var(--font-jp) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  padding: 16px 24px !important;
  width: 100% !important;
  max-width: 300px !important;
  border-radius: 0 !important; /* 直角にして高級感を */
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background-color var(--transition), color var(--transition) !important;
  -webkit-appearance: none !important; /* スマホ特有のボタン装飾を消す */
}
/* 1. マス目（td）自体に縦横の隙間を作る */
#tc-widget .pika-table th,
#tc-widget .pika-table td {
  /* ここで隙間の広さを調整します（4pxや5pxにするとしっかり隙間が空きます） */
  padding: 2px !important; 
}

/* 2. ボタンの設定（marginは使わず、マス目の中で100%広げる） */
#tc-widget .pika-button {
  width: 100% !important;
  height: auto !important;
  min-width: auto !important;
  aspect-ratio: 1 / 1 !important; /* （もしくは 1 / 0.8） */
  
  /* 余白はtdに任せるため、ボタン自身の余白はリセットします */
  padding: 0 !important;
  margin: 0 !important; 
  
  /* 文字をど真ん中に配置 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  
  /* 角丸（お好みで） */
  border-radius: 0px !important; 
}

#tc-widget .tc-book:hover {
  background-color: transparent !important;
  color: var(--color-gold) !important;
}
.pika-button:hover {
  background-color: var(--color-gold) !important;
}

.is-selected .pika-button {
  background-color: var(--color-gold) !important;
}

/* ========================================
   カレンダー日付のホバー（カーソルを合わせた時）の色
   ======================================== */
/* 選択可能な日付のみ適用（過去の日付などを除外） */
#tc-widget .pika-table td:not(.is-disabled) .pika-button:hover {
  background-color: #444444 !important; /* 背景をゴールドに */
  color: var(--color-white) !important; /* 文字色を白に */
  transition: all 0.3s ease !important; /* ふわっと滑らかに色を変える */
}

/* （おまけ）クリックして「選択中」になった日付の色 */
#tc-widget .pika-table td.is-selected .pika-button {
  background-color: #444444 !important; /* 選択中はダークカラーで引き締める */
  color: var(--color-white) !important;
  box-shadow: none !important; /* デフォルトの青い影などを消す */
}
/* ========================================
   スマホ表示の微調整（768px以下）
   ======================================== */
@media (max-width: 768px) {
  /* 1. 外枠を画面幅にぴったり合わせる */
  .reservation__wrapper {
    padding: 30px 15px;
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--color-gold);
    width: 100%;
    box-sizing: border-box;
  }

  /* 2. 固定されていた高さを解除し、自動で伸び縮みさせる */
#tc-widget {
    width: 100% !important;
    max-width: 400px;
    margin: 0 auto;
    min-height: auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* 3. カレンダー（Pikaday）をスマホの幅に強制的に合わせる */
  #tc-widget .tc-date-inline .pika-single {
    width: 100% !important;
    max-width: 100% !important; /* ★400pxから100%に修正し、小さいスマホでのハミ出しを防止 */
  }
  
  /* カレンダーの表を均等割りにする（はみ出し防止の要） */
  #tc-widget .pika-table {
    width: 100% !important;
    table-layout: fixed !important; 
  }
  
  /* ★スマホでの .pika-button の上書き（paddingなど）は、正方形が崩れる原因になるため削除しました。
     PC版の「1対1」の設定がそのままスマホにも引き継がれて綺麗に表示されます。 */

  /* 4. 時間・人数の入力エリアも画面幅に合わせて柔軟にする */
  #tc-widget .tc-time,
  #tc-widget .tc-ppl {
    width: 90% !important;
    max-width: 350px !important;
  }
}
/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 40px 0 0;
}

.footer__inner {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo-main {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer__logo-sub {
  display: block;
  font-size: 11px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__address {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.footer__tel a {
  font-size: 13px;
  color: var(--color-text-sub);
}

.footer__tel a:hover {
  color: var(--color-gold);
}

.footer__nav {
  margin-top: 24px;
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer__nav-list a {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
  transition: color var(--transition);
}

.footer__nav-list a:hover {
  color: var(--color-gold);
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer__sns-link {
  color: var(--color-text-sub);
  transition: color var(--transition);
}

.footer__sns-link:hover {
  color: var(--color-gold);
}

.footer__bottom {
  padding: 16px 0;
  text-align: center;
}

.footer__copy {
  font-size: 10px;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
}

.footer__wi-fi img {
  width: 100px;
  margin: 30px auto 0px;
}

/* Page Top Button */
.page-top {
  position: sticky;
  bottom: 20px;
  float: right;
  margin-right: 16px;
  margin-top: -64px;
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  color: var(--color-gold);
  border: solid 1px var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background-color var(--transition);
  z-index: 99;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-top:hover {
  background-color: var(--color-white);
}

.sp-fixed-btn {
  display: none;
  /* PCでは非表示 */
}

/* ========================================
   RESPONSIVE - Mobile (768px以下: side panels非表示)
   ======================================== */
@media (max-width: 768px) {
  body {
    overflow: visible !important;
    /* hiddenを解除 */
    height: auto !important;
    position: relative;
    background-color: var(--color-white);
  }

  .phone-frame {
    max-width: 100%;
    height: auto;
    overflow: visible !important;
    /* 中の箱のスクロールも解除 */
  }

.hero {
    /* 100svh - ヘッダー(56px) - スマホ用お知らせ(64px) = 120px */
height: calc(100svh - 132px);
  }



  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/mv_img.jpg);
    background-repeat: no-repeat;

    /* ご希望のサイズ設定 */
    background-size: 100% auto;
    /* 画像を下端に固定 */
    background-position: bottom;

    /* 【ここが修正ポイント】 */
    /* グラデーションの開始位置をずっと下（50%）に下げる */
    -webkit-mask-image: linear-gradient(to bottom, transparent 20%, black 60%);
    mask-image: linear-gradient(to bottom, transparent 20%, black 60%);

    z-index: 0;
  }

  /* 1. PC用のサイドパネルは左右とも完全に消す */
  .side-panel {
    display: none !important;
  }
/* 1. 全体コンテナ */
.sp-fixed-btn {
  display: flex;
  position: fixed;
  bottom: -70px;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: bottom 0.4s ease;
}

.sp-fixed-btn.is-visible {
  bottom: 0;
}

/* 2. 各ボタンの共通設定 */
.sp-fixed-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 60px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}


/* 3. SVGアイコンの設定 */
.icon-phone {
  width: 16px;      /* アイコンのサイズ */
  height: 16px;
  margin-right: 8px; /* 文字との隙間 */
  fill: currentColor; /* 文字色と同じ色（白）にする */
}
/* 左：ご予約（サイトのメインダーク色） */
.btn-reserve {
  background-color: #957435; /* #1a1a1a */
  color: var(--color-white);
    border: 1px solid var(--color-white); /* 境界線をうっすら入れる */
border-right: none;
}

/* 右：お問い合わせ（少し明るいグレーで差をつける） */
.btn-contact {
  /* --color-text (#333) より少しだけ明るい色 */
  background-color: #444444; 
  color: var(--color-white);
    border: 1px solid var(--color-white); /* 境界線をうっすら入れる */
}
/* アイコンに少し隙間を作る */
.btn-contact i {
  margin-right: 8px;
}

  /* 3. ページ最下部がボタンで隠れないように余白を作る */
  body {
    padding-bottom: 60px;
    overflow-x: hidden;
    /* 横揺れ防止 */
  }

  .page-top {
    position: fixed;
    /* stickyからfixedに変更（確実に画面右下に固定） */
    bottom: 80px !important;
    /* 追従バナーの高さ(60px) + 余白(20px) */
    right: 16px;
    margin: 0;
    /* 余計なマージンをリセット */
    z-index: 999;
    /* 追従バナー(9999)よりは下に、コンテンツよりは上に */

    /* JavaScriptでクラス制御している場合、以下が必要 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  /* JavaScriptで.is-visibleが付与された時 */
  .page-top.is-visible {
    opacity: 1;
    visibility: visible;
  }
}