@charset "UTF-8";

/* =========================================================================
   居酒屋 まあさん ma-san 豊中駅前店
   デザインコンセプト：南国トロピカル × 炭火
   紅型（びんがた）の生成りを地に、ハイビスカスの赤から夕陽のオレンジへ抜ける「熱い面」、
   沖縄の海の「青い面」、そして琉球藍のフッターで受ける。

   色の決め方はひとつだけ覚えれば足ります。
   面ごとに --fg / --fg-mute / --line / --card を差し替えると、
   中に入っている部品は何も書き換えなくても色が付いてきます（1-b節）。
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. デザイントークン
   ------------------------------------------------------------------------- */
:root {
  /* --- 提灯の紙。いちばん面積の広い色をページの地にする --- */
  --paper:    #FFFCF5;
  --paper-2:  #F7F1E6;   /* 外観のコンクリートの明るいグレー */
  --paper-3:  #EDE4D5;
  --paper-hi: #FFFFFF;

  /* --- 看板の黒文字 --- */
  --ink:      #2B2119;
  --ink-mute: #6F6154;

  /* --- 落ち着いた藍。フッターで受ける --- */
  --ai:       #17323E;
  --ai-deep:  #0F242D;

  /* 沖縄の海。前回より彩度を落として、涼しさの側に置く */
  --sea:      #17A9C0;
  --sea-deep: #0D7285;

  /* 赤い壁 */
  --hibi:      #D8221F;
  --hibi-deep: #A81714;

  /* 看板の黄色。この店のいちばんの目印なので、主役のアクセントにする */
  --gold:     #FFD400;
  --ember:    #F2A100;
  --ember-hi: #FFCE1F;

  --leaf: #17A75C;

  /* 昔の名残。役割色に読み替えています。 */
  --ink-900: var(--ai);
  --ink-850: rgba(23, 50, 62, .18);
  --ink-800: var(--paper);
  --ink-700: var(--paper-2);
  --ink-600: var(--paper-3);
  --ink-500: #DCCFB8;

  --sand:      #FFFFFF;
  --sand-dim:  #FFFCF5;
  --sand-mute: #8C7C68;

  /* --- 役割色 ---
     濃い面（.section--deep / CTA帯 / フッター）では、
     これらの変数だけを差し替えます。中の部品は var(--fg) などを見ているので、
     ひとつずつ書き換えなくても、まとめて色が付いてきます。 */
  --bg:        var(--paper);
  --fg:        var(--ink);
  --fg-mute:   var(--ink-mute);
  --line:      #E4DACA;
  --card:      var(--paper-hi);
  --card-hi:   #FFFFFF;

  --ghost-line: rgba(43, 33, 25, .28);
  --ghost-num:  rgba(43, 33, 25, .1);

  /* ミンサー織り（五四の帯）。看板の黄色と赤い壁の色で織る。 */
  --minsa:
    repeating-linear-gradient(90deg,
      var(--gold)      0    16px,
      var(--paper-hi)  16px 20px,
      var(--hibi)      20px 32px,
      var(--paper-hi)  32px 36px);

  /* タイポ */
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Yu Gothic Medium", "Meiryo", sans-serif;
  --font-disp: "Reggae One", var(--font-body);

  /* 余白・角丸 */
  --wrap:  1120px;
  --gut:   clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.75rem, 9vw, 7.5rem);
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  24px;

  --shadow:    0 14px 34px -22px rgba(70, 50, 25, .45);
  --shadow-lg: 0 26px 56px -30px rgba(70, 50, 25, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------------------
   1-b. 色を面で置く
   ここに並べたところだけ役割色を差し替える。中の部品には手を入れなくてよい。
   ヒーローとコースカードは「明るい面」に戻したので、この一覧から外している。
   ------------------------------------------------------------------------- */
.section--deep,
.cta-band,
.site-footer,
.callbar {
  --fg:         #FFFFFF;
  --fg-mute:    rgba(255, 255, 255, .84);
  --line:       rgba(255, 255, 255, .3);
  --card:       rgba(255, 255, 255, .13);
  --card-hi:    rgba(255, 255, 255, .2);
  --ghost-line: rgba(255, 255, 255, .55);
  --ghost-num:  rgba(255, 255, 255, .18);
  color: var(--fg);
}
/* -------------------------------------------------------------------------
   2. リセット・基本
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(.95rem, .3vw + .88rem, 1.0625rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .02em;
  overflow-x: hidden;
  isolation: isolate;
}

/* 南国の陽射し。右上から日が差し、左下に海の色が回り込む。
   background-attachment: fixed はモバイルSafariで描画が崩れるため、
   固定レイヤーを1枚敷いて同じ効果を出している。 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(56rem 38rem at 90% -12%, rgba(255, 212, 0, .16), transparent 62%),
    radial-gradient(44rem 32rem at 0% 18%, rgba(23, 169, 192, .07), transparent 60%);
}

img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: var(--ember-hi); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--sand); }

:focus-visible {
  outline: 3px solid var(--ember-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--ink); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: .8rem 1.2rem; background: var(--gold); color: var(--ink); font-weight: 700;
}
.skip:focus { left: 0; }

.wrap {
  width: min(100% - var(--gut) * 2, var(--wrap));
  margin-inline: auto;
}

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* 生成りの紙。メニューや読みものを載せる面。 */
/* コンクリートの明るいグレー。読みものやメニューを載せる面。 */
.section--paper {
  background: var(--paper-2);
}
.section--paper a:not(.btn) { color: var(--hibi-deep); }
.section--paper a:not(.btn):hover { color: var(--ember); }

/* 赤い壁の面。店頭の壁と同じ役どころで、1ページに1〜2枚だけ置く。 */
.section--deep {
  position: relative;
  background: linear-gradient(168deg, #E02B24 0%, var(--hibi) 46%, var(--hibi-deep) 100%);
}
.section--deep::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(30rem 22rem at 86% 4%, rgba(255, 212, 0, .22), transparent 66%);
}
/* 面の上下を看板の黄色で締める。店頭の赤い壁と黄色い看板の関係をそのまま持ってきた。 */
.section--deep::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 5px;
  background: var(--gold);
}
.section--deep > * { position: relative; }
.section--deep .sechead__en { color: #FFE9A8; }

/* 海の面。熱い面ばかり続くと目が疲れるので、沖縄の海の色で受ける。
   HTML では section--deep と一緒に付ける（地の色だけを差し替える指定）。 */
.section--deep.section--sea {
  background: linear-gradient(168deg, #29BCD1 0%, var(--sea) 42%, var(--sea-deep) 100%);
}
.section--deep.section--sea::before {
  background: radial-gradient(26rem 20rem at 86% 6%, rgba(255, 255, 255, .3), transparent 64%);
}
.section--deep.section--sea .sechead__en { color: #FFF0B8; }

/* 濃い面・熱い面の中のリンク。地の色に負けないよう明るく置く。
   ※ボタン（.btn）はボタン自身の配色を最優先するため除外する */
.cta-band a:not(.btn),
.section--deep a:not(.btn) { color: var(--gold); }
.cta-band a:not(.btn):hover,
.section--deep a:not(.btn):hover { color: #FFFFFF; }

/* ──────────────────────────────────────────────────────────
   熱い面・海の面に置いた「紙の島」。
   カードの中だけ役割色を明るい面のものに戻すと、
   見出し・注記・リンクがまとめて読める色に戻る。
   ────────────────────────────────────────────────────────── */
.section--deep .map,
.section--deep .faq__item,
.section--deep .amenity,
.section--deep .dish {
  --fg:         var(--ink);
  --fg-mute:    var(--ink-mute);
  --line:       #E4DACA;
  --card:       var(--paper-hi);
  --ghost-line: rgba(43, 33, 25, .28);
  color: var(--fg);
}
.section--deep .map a,
.section--deep .faq__item a,
.section--deep .amenity a,
.section--deep .dish a { color: var(--hibi-deep); }
.section--deep .map a:hover,
.section--deep .faq__item a:hover,
.section--deep .amenity a:hover,
.section--deep .dish a:hover { color: var(--ember); }

/* ミンサー織り（五四の帯）を模した飾り帯。沖縄の織物の柄です。 */
.minsa {
  height: 7px;
  background: var(--minsa);
  background-size: 36px 100%;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------
   3. 見出しパーツ
   ------------------------------------------------------------------------- */
.sechead { margin-bottom: clamp(1.8rem, 4vw, 3rem); }

.sechead__en {
  margin: 0 0 .35rem;
  font-family: var(--font-disp);
  font-size: clamp(.75rem, 1.6vw, .9rem);
  letter-spacing: .28em;
  color: var(--ember);
  text-transform: uppercase;
}
.sechead__en { color: var(--hibi); }
.section--deep .sechead__en { color: var(--gold); }

.sechead__ja {
  font-size: clamp(1.55rem, 4.6vw, 2.6rem);
  line-height: 1.32;
}

.sechead__lead {
  margin-top: .9rem;
  max-width: 46em;
  color: var(--fg-mute);
  font-size: clamp(.92rem, .3vw + .85rem, 1.0125rem);
}


.sechead--center { text-align: center; }
.sechead--center .sechead__lead { margin-inline: auto; }

/* 手書き風の下線マーカー */
.mark {
  background: linear-gradient(transparent 60%, rgba(255, 212, 0, .6) 60%);
  padding-inline: .1em;
}
.section--deep .mark { background: linear-gradient(transparent 60%, rgba(255, 255, 255, .3) 60%); }

.hot { color: var(--hibi); }
.sea { color: var(--sea-deep); }
.section--deep .hot { color: var(--gold); }
.section--deep .sea { color: #C6F3FB; }

/* -------------------------------------------------------------------------
   4. ボタン
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ember);
  --btn-fg: var(--ink);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  padding: .78rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg) !important;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: .96rem;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
  color: var(--btn-fg) !important;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(70, 50, 25, .5);
}
.btn:active { transform: translateY(0); }

.btn span {
  color: inherit !important;
}

.btn__label {
  font-weight: 900;
  color: inherit !important;
}

.btn__num {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .88;
  color: inherit !important;
}

.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* 黄色系ボタン（看板カラー）：文字は必ず濃い黒文字（--ink）で視認性を完全確保 */
.btn--ember {
  --btn-bg: linear-gradient(135deg, #FFE04A, var(--gold) 55%, #F5BE00);
  --btn-fg: var(--ink);
  background: linear-gradient(135deg, #FFE04A, var(--gold) 55%, #F5BE00);
  color: var(--ink) !important;
}
.btn--ember:hover,
.btn--ember:focus,
.btn--ember:active,
.btn--ember:visited {
  color: var(--ink) !important;
}
.btn--ember .btn__label,
.btn--ember .btn__num {
  color: var(--ink) !important;
}

.btn--tel {
  --btn-bg: linear-gradient(135deg, #FFE04A, var(--gold) 60%, #F5BE00);
  --btn-fg: var(--ink);
  background: linear-gradient(135deg, #FFE04A, var(--gold) 60%, #F5BE00);
  color: var(--ink) !important;
}
.btn--tel:hover,
.btn--tel:focus,
.btn--tel:active,
.btn--tel:visited {
  color: var(--ink) !important;
}
.btn--tel .btn__label,
.btn--tel .btn__num {
  color: var(--ink) !important;
}

/* 水色ボタン：白文字 */
.btn--sea {
  --btn-bg: linear-gradient(135deg, #35C4D8, var(--sea) 55%, var(--sea-deep));
  --btn-fg: #FFFFFF;
  background: linear-gradient(135deg, #35C4D8, var(--sea) 55%, var(--sea-deep));
  color: #FFFFFF !important;
}
.btn--sea:hover,
.btn--sea:focus,
.btn--sea:active,
.btn--sea:visited {
  color: #FFFFFF !important;
}
.btn--sea .btn__label,
.btn--sea .btn__num {
  color: #FFFFFF !important;
}

/* 枠線だけのボタン */
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  background: transparent;
  border: 2px solid var(--ghost-line);
  color: var(--btn-fg) !important;
}
.btn--ghost:hover,
.btn--ghost:focus,
.btn--ghost:active {
  --btn-bg: rgba(255, 212, 0, .2);
  background: rgba(255, 212, 0, .2);
  box-shadow: none;
  border-color: currentColor;
  color: var(--btn-fg) !important;
}
.btn--ghost:visited {
  color: var(--btn-fg) !important;
}
.btn--ghost .btn__label,
.btn--ghost .btn__num {
  color: inherit !important;
}

/* セクション特異性のオーバーライド担保 */
.cta-band .btn--ember,
.cta-band .btn--tel,
.section--deep .btn--ember,
.section--deep .btn--tel,
.globalnav .btn--tel {
  color: var(--ink) !important;
}
.cta-band .btn--ember:hover,
.cta-band .btn--tel:hover,
.section--deep .btn--ember:hover,
.section--deep .btn--tel:hover,
.globalnav .btn--tel:hover {
  color: var(--ink) !important;
}
.cta-band .btn--ember .btn__label,
.cta-band .btn--ember .btn__num,
.section--deep .btn--ember .btn__label,
.section--deep .btn--ember .btn__num,
.globalnav .btn--tel .btn__label,
.globalnav .btn--tel .btn__num {
  color: var(--ink) !important;
}

/* -------------------------------------------------------------------------
   5. ヘッダー
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 252, 245, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 252, 245, .97);
  box-shadow: 0 10px 26px -20px rgba(80, 40, 10, .8);
}

/* ヘッダーの下端に走るミンサー織りの帯。沖縄の店だと一目で分かる目印。 */
.site-header::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--minsa);
  background-size: 36px 100%;
  opacity: .9;
}

.site-header__inner {
  width: min(100% - var(--gut) * 2, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand { display: flex; align-items: center; gap: .7rem; color: var(--fg); }
.brand:hover { color: var(--hibi-deep); }

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold), var(--hibi) 92%);
  color: var(--ink);
  font-family: var(--font-disp);
  font-size: 1.3rem;
  line-height: 1;
  padding-top: .1em;
  box-shadow: 0 0 0 3px rgba(255, 212, 0, .4);
}
.brand__mark--lg { width: 3.4rem; height: 3.4rem; font-size: 1.7rem; margin-bottom: .9rem; }

.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name { font-weight: 900; font-size: 1.02rem; letter-spacing: .04em; }
.brand__sub { font-size: .66rem; color: var(--fg-mute); letter-spacing: .08em; }

.navtoggle {
  margin-left: auto;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-content: center; gap: 5px;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer;
}
.navtoggle span {
  display: block; width: 20px; height: 2px; background: var(--fg); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.globalnav ul { display: flex; }
.globalnav a { color: var(--fg); font-weight: 700; font-size: .92rem; }

@media (max-width: 979px) {
  .globalnav {
    position: fixed;
    inset: 4.25rem 0 auto;
    max-height: calc(100dvh - 4.25rem);
    overflow-y: auto;
    padding: 1.2rem var(--gut) 2.4rem;
    background: rgba(255, 252, 245, .99);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .globalnav.is-open { display: block; }
  .globalnav ul { flex-direction: column; }
  .globalnav li + li { border-top: 1px solid var(--line); }
  .globalnav ul a { display: block; padding: .95rem .2rem; font-size: 1.02rem; }
  .globalnav ul a[aria-current="page"] { color: var(--hibi-deep); }
  .globalnav__tel { display: flex; width: 100%; margin-top: 1.3rem; }
}

@media (min-width: 980px) {
  .navtoggle { display: none; }
  .globalnav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
  .globalnav ul { gap: 1.5rem; }
  .globalnav ul a { position: relative; padding-block: .3rem; }
  .globalnav ul a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--hibi); transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .globalnav ul a:hover::after,
  .globalnav ul a[aria-current="page"]::after { transform: scaleX(1); }
  .globalnav ul a[aria-current="page"] { color: var(--hibi-deep); }
  .globalnav__tel { padding: .6rem 1.3rem; }
}

/* -------------------------------------------------------------------------
   6. パンくず
   ------------------------------------------------------------------------- */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.crumbs ol {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-block: .7rem;
  font-size: .76rem; color: var(--fg-mute);
}
.crumbs li + li::before { content: "／"; margin-right: .5rem; opacity: .5; }
.crumbs a { color: var(--fg-mute); }
.crumbs a:hover { color: var(--hibi-deep); }

/* -------------------------------------------------------------------------
   7. ヒーロー
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.75rem, 7vw, 5.25rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(34rem 24rem at 88% -6%, rgba(255, 212, 0, .3), transparent 62%),
    radial-gradient(30rem 24rem at 2% 100%, rgba(23, 169, 192, .12), transparent 60%),
    linear-gradient(180deg, var(--paper-hi), var(--paper) 60%, var(--paper-2));
}

/* 提灯の並び。店頭の軒先の連なりを、上端に小さく敷いている。 */
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 22px;
  background-image: radial-gradient(9px 11px at 12px 4px, rgba(255, 212, 0, .5), rgba(255, 212, 0, 0) 70%);
  background-size: 30px 22px;
  pointer-events: none;
}

/* ヒーローの下端にミンサー織りの帯を通し、面の切り替えを沖縄の柄で受ける。 */
.hero::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--minsa);
  background-size: 36px 100%;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .38rem 1rem .38rem .5rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: var(--paper-hi);
  border: 1px solid rgba(23, 169, 192, .45);
  color: var(--sea-deep);
  font-size: .76rem; font-weight: 700; letter-spacing: .1em;
  box-shadow: var(--shadow);
}
.hero__badge b {
  background: var(--sea); color: #04222A;
  padding: .12rem .5rem; border-radius: 999px; font-size: .7rem;
}

.hero__title {
  font-size: clamp(2.05rem, 7.6vw, 4.1rem);
  line-height: 1.24;
  letter-spacing: .005em;

}
.hero__title .l2 { display: block; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--hibi) 0%, var(--hibi-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 店頭の黄色い看板をそのまま持ってきた行。黒文字を黄色の面で受ける。 */
.hero__shop {
  display: inline-block;
  margin: 1.15rem 0 .5rem;
  padding: .3rem .95rem .38rem;
  border-radius: 6px;
  background: var(--gold);
  font-family: var(--font-disp);
  font-size: clamp(.95rem, 2.4vw, 1.22rem);
  color: var(--ink);
  letter-spacing: .06em;
  box-shadow: 0 6px 16px -10px rgba(70, 50, 25, .8);
}

.hero__lead {
  max-width: 34em;
  color: var(--fg-mute);
  font-size: clamp(.95rem, .35vw + .88rem, 1.075rem);
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 1.9rem;
}

.hero__facts {
  display: flex; flex-wrap: wrap; gap: .5rem .55rem;
  margin-top: 1.7rem;
  font-size: .8rem;
}
/* メニューやFAQのページ内リンクにも使い回している。
   色は面ごとの役割色に任せているので、明るい面でもそのまま読める。 */
.hero__facts li {
  padding: .34rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--fg);
}
.hero__facts a { color: inherit; }
.hero__facts a:hover { color: var(--hibi-deep); }
.hero__facts b { color: var(--hibi); font-weight: 900; }
.section--deep .hero__facts b { color: var(--gold); }
.section--deep .hero__facts a:hover { color: var(--gold); }

/* 写真クラスター */
.hero__gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(.6rem, 1.6vw, 1rem);
}
.hero__gallery figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; }
.hero__gallery img { width: 100%; height: 100%; object-fit: cover; }
.hero__gallery figure::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(43, 33, 25, .12);
  border-radius: inherit;
}
.hero__gallery .g1 { grid-row: span 2; aspect-ratio: 3 / 4.1; box-shadow: var(--shadow-lg); }
.hero__gallery .g2,
.hero__gallery .g3 { aspect-ratio: 4 / 3; box-shadow: var(--shadow); }

.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem .9rem .75rem;
  background: linear-gradient(to top, rgba(4, 12, 18, .92), transparent);
  font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  color: var(--sand);
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; }
}

/* 直下の帯：営業時間などの実用情報 */
.infobar { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.infobar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.infobar__cell {
  background: var(--paper-2);
  padding: 1.1rem 1.15rem;
  text-align: center;
}
.infobar__k {
  display: block;
  font-size: .68rem; letter-spacing: .18em; color: var(--sea-deep);
  font-weight: 700; margin-bottom: .3rem;
}
.infobar__v { font-size: .96rem; font-weight: 700; line-height: 1.5; }
.infobar__v small { display: block; font-size: .72rem; font-weight: 400; color: var(--fg-mute); }

/* -------------------------------------------------------------------------
   8. 3つの推し（バリュー）
   ------------------------------------------------------------------------- */
.values {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.value {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--paper-hi), var(--paper-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.section--deep .value {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.value::before {
  content: "";
  position: absolute; inset: 0 auto auto 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--hibi));
}
.value--sea::before { background: linear-gradient(90deg, var(--sea), var(--sea-deep)); }
.value--leaf::before { background: linear-gradient(90deg, var(--gold), var(--leaf)); }

.value__no {
  font-family: var(--font-disp);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ghost-num);
  margin-bottom: .5rem;
}
.value__price {
  display: inline-block;
  margin-bottom: .7rem;
  padding: .28rem .8rem;
  border-radius: 999px;
  background: rgba(245, 55, 42, .1);
  border: 1px solid rgba(245, 55, 42, .5);
  color: var(--hibi-deep);
  font-size: .78rem; font-weight: 900; letter-spacing: .06em;
}
.value--sea .value__price { background: rgba(0, 196, 222, .12); border-color: rgba(0, 120, 143, .5); color: var(--sea-deep); }
.value--leaf .value__price { background: rgba(23, 167, 92, .12); border-color: rgba(23, 167, 92, .5); color: #0E7B41; }

/* 熱い面の上では、逆に紙の色で抜く。 */
.section--deep .value__price,
.section--deep .value--sea .value__price,
.section--deep .value--leaf .value__price {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .6);
  color: #FFFFFF;
}

.value__title { font-size: 1.25rem; margin-bottom: .6rem; }
.value__body { color: var(--fg-mute); font-size: .92rem; }

/* -------------------------------------------------------------------------
   9. 名物ディッシュ
   ------------------------------------------------------------------------- */
.dishes {
  display: grid;
  gap: clamp(1.1rem, 2.6vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.dish {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dish:hover { transform: translateY(-5px); border-color: var(--hibi); box-shadow: var(--shadow-lg); }

.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.045); }

.dish__price {
  position: absolute; top: .8rem; left: .8rem;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: var(--hibi);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
  color: #FFFFFF;
  font-size: .74rem; font-weight: 900; letter-spacing: .04em;
}

.dish__body { padding: 1.25rem 1.3rem 1.5rem; flex: 1; }
.dish__name { font-size: 1.18rem; margin-bottom: .35rem; }
.dish__lead { color: var(--hibi-deep); font-weight: 700; font-size: .88rem; margin-bottom: .6rem; }
.section--deep .dish { background: var(--paper-hi); color: var(--ink); }
.section--deep .dish__desc { color: var(--ink-mute); }
.section--deep .dish__lead { color: var(--hibi-deep); }
.dish__desc { color: var(--fg-mute); font-size: .88rem; line-height: 1.8; }

/* -------------------------------------------------------------------------
   10. メニュー表示
   ------------------------------------------------------------------------- */
.mgroup + .mgroup { margin-top: clamp(3rem, 7vw, 5rem); }

.mgroup__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 3px solid var(--ember);
  margin-bottom: 1.6rem;
}
.mgroup--sea .mgroup__head { border-color: var(--sea); }
.mgroup--hibiscus .mgroup__head { border-color: var(--hibi); }

.mgroup__en {
  font-family: var(--font-disp);
  font-size: .78rem; letter-spacing: .26em; color: var(--hibi);
}
.mgroup--sea .mgroup__en { color: var(--sea-deep); }
.mgroup--hibiscus .mgroup__en { color: var(--hibi); }

.mgroup__title { font-size: clamp(1.4rem, 4vw, 2rem); flex: 1 1 auto; }

.mgroup__price {
  padding: .38rem 1rem;
  border-radius: 999px;
  background: var(--ember);
  color: #2A1206;
  font-size: .85rem; font-weight: 900; letter-spacing: .03em;
  white-space: nowrap;
}
.mgroup--sea .mgroup__price { background: var(--sea-deep); color: #F2FDFF; }
.mgroup--hibiscus .mgroup__price { background: var(--hibi); color: #FFF3F2; }

.mgroup__lead { margin-bottom: 2rem; max-width: 48em; color: var(--fg-mute); }

.msection + .msection { margin-top: 2.4rem; }

.msection__head {
  display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap;
  margin-bottom: .9rem;
}
.msection__name {
  font-size: 1.06rem;
  padding-left: .7rem;
  border-left: 5px solid var(--gold);
}
.msection__price { font-size: .8rem; color: var(--fg-mute); font-weight: 700; }

.mlist {
  display: grid;
  gap: .1rem;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
}

.mitem {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .68rem .3rem;
  border-bottom: 1px dashed rgba(43, 33, 25, .16);
}
/* タグの有無で品名の開始位置がずれないよう、固定幅の枠を必ず置く */
.mitem__tags {
  flex: 0 0 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .15rem;
}
.mitem__name { font-weight: 700; }
.mitem__desc { display: block; font-size: .8rem; font-weight: 400; color: var(--fg-mute); line-height: 1.7; margin-top: .12rem; }

.tag {
  flex: none;
  margin-top: .32rem;
  padding: .1rem .42rem;
  border-radius: 4px;
  font-size: .62rem; font-weight: 900; letter-spacing: .06em; line-height: 1.6;
}
.tag--rec { background: var(--hibi); color: #fff; }
.tag--new { background: var(--ember); color: #2A1206; }

.mnote {
  margin-top: 2.6rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--r);
  background: var(--paper-2);
  border-left: 4px solid var(--gold);
  color: var(--fg-mute);
  font-size: .85rem;
}

/* 店頭メニュー表の写真 */
.menushots {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1.5rem;
}
.menushots figure { margin: 0; }
.menushots img {
  width: 100%; border-radius: var(--r); border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.menushots figcaption { margin-top: .5rem; font-size: .78rem; color: var(--fg-mute); }

/* -------------------------------------------------------------------------
   11. コース
   ------------------------------------------------------------------------- */
.course {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  /* 店頭の黄色い看板を、そのまま一枚のカードにしたつもり。 */
  background: linear-gradient(160deg, #FFE04A 0%, var(--gold) 52%, #F5C400 100%);
  border: 0;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--ink);
}
.course::before {
  content: "";
  position: absolute; inset: -40% -20% auto auto;
  width: 26rem; height: 26rem;
  background: radial-gradient(circle, rgba(255, 255, 255, .5), transparent 68%);
  pointer-events: none;
}
/* カード上端にミンサーの帯 */
.course::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: var(--hibi);
}
.course p { color: var(--ink); }
.course a:not(.btn) { color: var(--hibi-deep); font-weight: 700; }
.course a:not(.btn):hover { color: #000000; text-decoration: underline; }

/* 黄色いカード上で鮮明に目立つハイビスカス赤ボタン */
.btn--hibiscus,
.course .btn {
  --btn-bg: linear-gradient(135deg, #E02B24, var(--hibi-deep));
  --btn-fg: #FFFFFF;
  background: linear-gradient(135deg, #E02B24, var(--hibi-deep)) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 24px -10px rgba(168, 23, 20, .6);
}
.btn--hibiscus:hover,
.course .btn:hover {
  background: linear-gradient(135deg, #FF3D35, var(--hibi)) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(168, 23, 20, .7);
}
.btn--hibiscus .btn__label,
.btn--hibiscus .btn__num,
.course .btn .btn__label,
.course .btn .btn__num {
  color: #FFFFFF !important;
}

.course__ribbon {
  display: inline-block;
  padding: .32rem 1rem;
  border-radius: 999px;
  background: var(--hibi);
  color: #fff;
  font-size: .76rem; font-weight: 900; letter-spacing: .1em;
  margin-bottom: 1rem;
}

.course__title { font-size: clamp(1.5rem, 4.4vw, 2.35rem); margin-bottom: .8rem; position: relative; }

.course__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem .9rem;
  margin: 1.3rem 0;
  position: relative;
}
.course__price b {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1;
  color: var(--hibi-deep);
}
.course__price span { font-size: 1rem; font-weight: 700; }
.course__price del { color: var(--fg-mute); font-size: .95rem; }

.course__points {
  display: grid; gap: .55rem;
  margin: 1.5rem 0;
  position: relative;
}
.course__points li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding-left: 0;
  color: var(--ink);
  font-size: .95rem;
}
.course__points li::before {
  content: "✓";
  flex: none;
  display: grid; place-items: center;
  width: 1.4rem; height: 1.4rem; margin-top: .18rem;
  border-radius: 50%;
  background: var(--paper-hi);
  border: 1px solid rgba(43, 33, 25, .2);
  color: var(--hibi);
  font-size: .75rem; font-weight: 900;
}

/* トップページのコース一覧（ミニ） */
.coursemini {
  position: relative;
  display: grid;
  gap: .5rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.coursemini__item a {
  display: grid;
  gap: .15rem;
  height: 100%;
  padding: .95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  color: var(--fg);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.coursemini__item a:hover { border-color: currentColor; background: var(--card-hi); color: var(--fg); }
.coursemini__name { font-weight: 700; font-size: .95rem; }
.coursemini__meta { font-size: .74rem; color: var(--fg-mute); }
.coursemini__price {
  margin-top: .3rem;
  font-family: var(--font-disp);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--hibi-deep);
}
.course .coursemini__price { color: var(--hibi-deep); }
.section--deep .coursemini__price { color: var(--gold); }
.coursemini__price small {
  margin-left: .5rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 400;
  color: var(--fg-mute);
}

/* コース詳細カード（course.php） */
.courselist {
  display: grid;
  gap: clamp(1.1rem, 2.6vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.ccard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--paper-hi), var(--paper-2));
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 6rem;
}
.ccard::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--hibi));
}
.ccard--sea::before { background: linear-gradient(90deg, var(--sea), var(--sea-deep)); }
.ccard--hibiscus::before { background: linear-gradient(90deg, var(--hibi), var(--ember)); }

.ccard__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: .8rem;
  padding: .26rem .8rem;
  border-radius: 999px;
  background: var(--hibi);
  color: #fff;
  font-size: .72rem; font-weight: 900; letter-spacing: .08em;
}
.ccard--sea .ccard__badge { background: var(--sea-deep); color: #F2FDFF; }

.ccard__en {
  font-family: var(--font-disp);
  font-size: .68rem; letter-spacing: .22em; color: var(--ember);
  margin-bottom: .2rem;
}
.ccard--sea .ccard__en { color: var(--sea); }

.ccard__name { font-size: clamp(1.25rem, 3.4vw, 1.55rem); margin-bottom: .4rem; }
.ccard__lead { color: var(--hibi-deep); font-weight: 700; font-size: .88rem; margin-bottom: .9rem; }
.ccard--sea .ccard__lead { color: var(--sea-deep); }

.ccard__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .2rem .7rem;
  margin: 0 0 1.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.ccard__price b {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 6vw, 2.7rem);
  line-height: 1;
  color: var(--hibi-deep);
}
.ccard--sea .ccard__price b { color: var(--sea-deep); }
.ccard__price span { font-size: .82rem; font-weight: 700; color: var(--fg-mute); }

.ccard__meta { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.ccard__meta > div { display: grid; grid-template-columns: 6.5rem 1fr; gap: .5rem; }
.ccard__meta dt { font-size: .76rem; font-weight: 700; color: var(--sea-deep); }
.ccard--sea .ccard__meta dt { color: var(--hibi-deep); }
.ccard__meta dd { font-size: .82rem; color: var(--fg-mute); line-height: 1.6; }

.ccard__desc { font-size: .9rem; color: var(--fg-mute); margin-bottom: 1.1rem; }

.ccard__items {
  display: grid; gap: .32rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
  border-radius: var(--r);
  background: rgba(255, 212, 0, .13);
  border: 1px dashed var(--line);
}
.ccard__items li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .85rem;
  line-height: 1.75;
}
.ccard__items li::before {
  content: "";
  position: absolute; left: 0; top: .78em;
  width: .38rem; height: .38rem; border-radius: 50%;
  background: var(--gold);
}

.ccard__notes { margin-bottom: 1.1rem; }
.ccard__notes li { font-size: .74rem; color: var(--fg-mute); line-height: 1.7; }

.ccard__cta { margin-top: auto; align-self: stretch; }

/* 外観カット */
.exterior {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.exterior img { width: 100%; display: block; }
.exterior__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3rem 1.4rem 1.1rem;
  background: linear-gradient(to top, rgba(4, 12, 18, .94), transparent);
  font-size: .84rem;
  color: var(--sand);
}
.exterior__cap b { color: var(--gold); }

/* シーン別カード */
.scenes {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.scene {
  padding: 1.4rem 1.5rem;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.section--deep .scene,
.course .scene { box-shadow: none; }
.scene__n { font-size: .72rem; letter-spacing: .16em; color: var(--sea-deep); font-weight: 700; margin-bottom: .45rem; }
.section--deep .scene__n { color: var(--gold); }
.scene__t { font-size: 1.08rem; margin-bottom: .5rem; }
.scene__d { font-size: .87rem; color: var(--fg-mute); }

/* -------------------------------------------------------------------------
   12. 定義リスト（店舗情報）
   ------------------------------------------------------------------------- */
.deflist {
  display: grid;
  grid-template-columns: minmax(6rem, 8.5rem) 1fr;
}
.deflist dt,
.deflist dd {
  padding: .85rem .2rem;
  border-bottom: 1px solid var(--line);
}
.deflist dt { font-weight: 700; color: var(--sea-deep); font-size: .88rem; }
.deflist dd { color: var(--fg); }
.section--deep .deflist dt,
.site-footer .deflist dt { color: var(--gold); }

.deflist--sm { font-size: .85rem; }
.deflist--sm dt, .deflist--sm dd { padding: .55rem .2rem; }

@media (max-width: 520px) {
  .deflist { grid-template-columns: 1fr; }
  .deflist dt { border-bottom: 0; padding-bottom: .1rem; }
  .deflist dd { padding-top: .1rem; }
}

/* 地図 */
.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }

/* クリックされるまでは地図を読み込まない。ここがその代わりのカード。 */
.map__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .3rem;
  padding: 1.5rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: var(--fg);
  text-align: center;
  background:
    radial-gradient(22rem 16rem at 50% 42%, rgba(23, 169, 192, .2), transparent 70%),
    repeating-linear-gradient(45deg, rgba(13, 114, 133, .12) 0 2px, transparent 2px 14px),
    var(--paper-2);
  transition: background-color .2s var(--ease);
}
.map__facade:hover { background-color: var(--paper-3); }

.map__pin { font-size: 1.9rem; line-height: 1; margin-bottom: .35rem; }
.map__addr { font-weight: 700; font-size: .95rem; }
.map__station { font-size: .82rem; color: var(--fg-mute); }

.map__cta {
  margin-top: .9rem;
  padding: .6rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  color: #FFFFFF;
  font-weight: 900;
  font-size: .9rem;
}
.map__facade:hover .map__cta { box-shadow: 0 10px 24px -12px rgba(13, 114, 133, .9); }

.map__note { margin-top: .5rem; font-size: .72rem; color: var(--fg-mute); }

@media (min-width: 820px) {
  .infocols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
}

/* -------------------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: .7rem; max-width: 52rem; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  overflow: hidden;
}
.section--deep .faq__item { background: var(--paper-hi); color: var(--ink); border-color: transparent; }
.section--deep .faq__a { color: var(--ink-mute); }

.faq__q {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q";
  flex: none;
  display: grid; place-items: center;
  width: 1.5rem; height: 1.5rem; margin-top: .12rem;
  border-radius: 50%;
  background: var(--hibi); color: #FFF8EC;
  font-size: .78rem; font-weight: 900;
}
.faq__q::after {
  content: "＋";
  margin-left: auto; flex: none;
  color: var(--hibi);
  transition: transform .2s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 1.2rem 1.2rem 3.5rem;
  color: var(--fg-mute);
  font-size: .92rem;
}


/* -------------------------------------------------------------------------
   14. 記事（沖縄料理のこと）
   ------------------------------------------------------------------------- */
.prose { max-width: 46rem; }
.prose h2 {
  margin: 2.8rem 0 1rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--gold);
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 .7rem; font-size: 1.1rem; color: var(--hibi-deep); }
.prose p { line-height: 1.95; }
.prose ul { margin: 0 0 1.2em; display: grid; gap: .4rem; }
.prose ul li { padding-left: 1.3rem; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--ember);
}
.prose figure { margin: 1.8rem 0; }
.prose figure img { border-radius: var(--r); box-shadow: var(--shadow); }
.prose figcaption { margin-top: .55rem; font-size: .8rem; color: var(--fg-mute); }

.pullquote {
  margin: 2rem 0;
  padding: 1.3rem 1.5rem;
  border-left: 5px solid var(--hibi);
  background: rgba(216, 34, 31, .06);
  font-weight: 700;
  font-size: 1.02rem;
}
.section--deep .pullquote {
  border-left-color: #FFFFFF;
  background: rgba(255, 255, 255, .16);
}

.toc {
  margin: 0 0 2.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r);
  background: rgba(255, 212, 0, .13);
  border: 1px solid var(--line);
}
.toc__h { font-size: .8rem; letter-spacing: .14em; color: var(--hibi); margin-bottom: .6rem; }
.toc ul { display: grid; gap: .35rem; }
.toc a { color: var(--fg); font-weight: 700; font-size: .9rem; }
.toc a:hover { color: var(--hibi); }

/* -------------------------------------------------------------------------
   15. CTA帯・フッター
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(30rem 22rem at 50% -8%, rgba(255, 212, 0, .22), transparent 64%),
    linear-gradient(168deg, #E02B24 0%, var(--hibi) 48%, var(--hibi-deep) 100%);
  text-align: center;
}
/* 上端を看板の黄色で締める */
.cta-band::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: var(--gold);
}
.cta-band > * { position: relative; }
.cta-band__eyebrow {
  font-family: var(--font-disp);
  font-size: .76rem; letter-spacing: .28em; color: var(--gold); margin-bottom: .5rem;
}
.cta-band__title { font-size: clamp(1.7rem, 6vw, 2.9rem); margin-bottom: .9rem; }
.cta-band__lead { color: rgba(255, 255, 255, .92); font-size: .95rem; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center;
  margin-top: 1.8rem;
}
.cta-band__note { margin-top: 1rem; font-size: .8rem; color: var(--fg-mute); }

/* 紙の面を琉球藍で受け止める。ここだけ濃くしておくと、
   明るい配色でも画面全体がふわふわせず、下に重心が出る。 */
.site-footer {
  background: linear-gradient(180deg, var(--ai), var(--ai-deep));
  border-top: 4px solid var(--gold);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1rem;
  font-size: .9rem;
}
.site-footer__grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1.1fr .8fr; }
}
.site-footer__name { font-weight: 900; font-size: 1.05rem; margin-bottom: .2rem; }
.site-footer__genre { color: #7FD8E6; font-size: .78rem; letter-spacing: .1em; margin-bottom: .9rem; }
.site-footer__desc { color: var(--fg-mute); font-size: .84rem; }
.site-footer__h {
  font-size: .76rem; letter-spacing: .18em; color: var(--gold);
  margin-bottom: .8rem; font-weight: 700;
}
.site-footer__h--gap { margin-top: 1.6rem; }
.site-footer__nav ul { display: grid; gap: .5rem; }
.site-footer__nav a { color: var(--fg-mute); font-size: .87rem; }
.site-footer__nav a:hover { color: var(--gold); }
.ext { font-size: .7em; margin-left: .25em; opacity: .7; }
.site-footer__copy {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  justify-content: center;
  text-align: center;
  color: var(--fg-mute);
  font-size: .75rem;
}
.site-footer__copy a { color: var(--fg-mute); }
.site-footer__copy a:hover { color: var(--gold); }

/* -------------------------------------------------------------------------
   16. モバイル固定バー
   ------------------------------------------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  background: rgba(23, 50, 62, .97);
  backdrop-filter: blur(12px);
  border-top: 3px solid transparent;
  border-image: var(--minsa) 3 / 3px / 0 round;
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.callbar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .82rem .4rem;
  border-radius: 999px;
  font-weight: 900; font-size: .9rem; letter-spacing: .04em;
}
.callbar__tel {
  background: linear-gradient(135deg, #FFE04A, var(--gold) 60%, #F5BE00);
  color: var(--ink) !important;
}
.callbar__tel:hover,
.callbar__tel:focus,
.callbar__tel:active,
.callbar__tel:visited {
  color: var(--ink) !important;
}
.callbar__map { border: 1.5px solid var(--line); color: var(--fg); }

@media (max-width: 767px) {
  .callbar { display: flex; }
  body { padding-bottom: 4.25rem; }
}

/* -------------------------------------------------------------------------
   17. 出現アニメーション
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   18. 営業状況バッジ
   「いま開いているか」はお客様がいちばん先に知りたいこと。
   ------------------------------------------------------------------------- */
.opennow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .6rem;
  margin: 1.4rem 0 0;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: .84rem;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
}
.opennow__dot {
  width: .58rem; height: .58rem; flex: none;
  border-radius: 50%;
  background: var(--fg-mute);
}
.opennow.is-open .opennow__dot {
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(23, 167, 92, .22);
}
.opennow__label { font-weight: 900; color: var(--fg-mute); letter-spacing: .04em; }
.opennow.is-open .opennow__label { color: #0E7B41; }
.opennow__detail { color: var(--fg); }

/* 色の面の上では、緑では沈むので白に近い色で抜く。 */
.cta-band .opennow.is-open .opennow__dot,
.section--deep .opennow.is-open .opennow__dot {
  background: #B8FFD5;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .3);
}
.cta-band .opennow.is-open .opennow__label,
.section--deep .opennow.is-open .opennow__label { color: #DCFFEC; }
.opennow__note {
  flex-basis: 100%;
  font-size: .72rem;
  color: var(--fg-mute);
  border-radius: 0;
}

.opennow--hero { margin-top: 1.5rem; }
.opennow--band { margin: 1.6rem auto 0; }

@media (max-width: 559px) {
  .opennow { border-radius: var(--r); }
}

/* -------------------------------------------------------------------------
   19. 予約導線（電話＋ネット予約）
   ------------------------------------------------------------------------- */
.reserve {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.reserve .btn { flex: 0 1 auto; }

/* -------------------------------------------------------------------------
   20. 設備・できること
   ------------------------------------------------------------------------- */
.amenities {
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
}
.section--deep .amenity { background: var(--paper-hi); color: var(--ink); border-color: transparent; }
.section--deep .amenity__note { color: var(--ink-mute); }
.amenity__mark {
  flex: none;
  width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(23, 167, 92, .16);
  color: #0E7B41;
  font-size: .9rem; font-weight: 900;
  line-height: 1;
}
.amenity--no { opacity: .72; }
.amenity--no .amenity__mark { background: rgba(43, 33, 25, .09); color: var(--ink-mute); }
.amenity__body { display: flex; flex-direction: column; gap: .15rem; }
.amenity__name { font-size: .95rem; letter-spacing: .02em; }
.amenity__note { font-size: .78rem; color: var(--fg-mute); line-height: 1.65; }

/* -------------------------------------------------------------------------
   21. お知らせ
   ------------------------------------------------------------------------- */
.news { display: grid; gap: .8rem; }
.news__item {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--hibi);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: var(--shadow);
}
.news__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: .35rem; }
.news__date { font-size: .78rem; color: var(--fg-mute); letter-spacing: .06em; }
.news__tag {
  padding: .12rem .6rem;
  border-radius: 999px;
  background: rgba(216, 34, 31, .1);
  color: var(--hibi-deep);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
}
.news__title { font-size: 1.02rem; margin-bottom: .3rem; }
.news__body { font-size: .87rem; color: var(--fg-mute); margin: 0; }

/* -------------------------------------------------------------------------
   22. 画面下の固定バー（3つになったぶんの調整）
   ------------------------------------------------------------------------- */
.callbar__menu { border: 1.5px solid var(--line); color: var(--fg); }
.callbar a { font-size: clamp(.76rem, 2.9vw, .9rem); white-space: nowrap; }

/* -------------------------------------------------------------------------
   23. ナビが6項目になったぶんの詰め
   ------------------------------------------------------------------------- */
@media (min-width: 980px) and (max-width: 1179px) {
  .globalnav { gap: 1rem; }
  .globalnav ul { gap: 1rem; }
  .globalnav a { font-size: .86rem; }
  .globalnav__tel { padding: .55rem 1rem; }
}

/* -------------------------------------------------------------------------
   24. 印刷（住所と電話番号を紙に残せるように）
   地図を見ながら向かう人、幹事さんが店舗情報を配る場面のため。
   ------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; padding-bottom: 0; }
  body::before { display: none; }

  .site-header, .callbar, .crumbs, .cta-band, .map, .navtoggle,
  .hero__gallery, .menushots, .reveal picture, .skip, .opennow__note, .minsa {
    display: none !important;
  }

  .hero, .section--deep, .course { background: none !important; color: #000 !important; }
  .hero::before, .hero::after,
  .section--deep::before, .section--deep::after,
  .course::before, .course::after,
  .cta-band::before { display: none !important; }
  .hero__shop { background: none !important; padding: 0 !important; }

  .reveal { opacity: 1 !important; transform: none !important; }
  .section { padding-block: 1rem; }
  .wrap { max-width: none; padding: 0; }

  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .7em; }
  a[href^="tel:"]::after,
  a[href^="#"]::after { content: ""; }

  .site-footer { border: none; background: none; color: #000; }
  .site-footer__desc, .site-footer__nav { display: none; }
}

/* -------------------------------------------------------------------------
   25. 海の面での読みやすさ調整
   淡い水色の文字は海の上では沈むので、紅型の黄に置き換える。
   ------------------------------------------------------------------------- */
.section--deep.section--sea .deflist dt,
.section--deep.section--sea .scene__n,
.section--deep.section--sea .sea,
.section--deep.section--sea .ccard__meta dt { color: var(--gold); }

/* -------------------------------------------------------------------------
   26. 読み進みバー
   ページのどこまで読んだかを見せ、目盛りを押すとその節へ飛べる。
   JavaScript が作る部品なので、無効な環境では出ません（内容は普通に読めます）。
   ------------------------------------------------------------------------- */

/* バーが出ているあいだは、ヘッダー下のミンサー帯と重ならないよう譲る */
.has-reading .site-header::after { display: none; }

.reading {
  position: fixed;
  left: 0; right: 0;
  top: 4.25rem;              /* JavaScript がヘッダーの実寸に合わせ直します */
  /* 目盛りの丸はバーから上下にはみ出すので、ヘッダー(90)より上に置く。
     そうしないと丸の上半分がヘッダーに隠れてしまう。 */
  z-index: 95;
  height: 5px;
}

/* スマホでメニューを開いているあいだは引っ込める */
.nav-open .reading { display: none; }

.reading__track {
  position: absolute;
  inset: 0;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}
.reading__fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transition: width .12s linear;
}

/* 端の丸が画面の外で半分に切れないよう、内側に少し余白を取る */
.reading__marks {
  position: absolute;
  top: 0; bottom: 0; left: 9px; right: 9px;
}

.reading__mark {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  padding: 0;
  border: 2px solid var(--paper-hi);
  border-radius: 50%;
  background: #C9BCA6;
  cursor: pointer;
  transition: width .18s var(--ease), height .18s var(--ease),
              background .18s var(--ease), box-shadow .18s var(--ease);
}
/* 指で押せる大きさの当たり判定を、見た目を変えずに広げる */
.reading__mark::before {
  content: "";
  position: absolute;
  inset: -13px -12px;
}
.reading__mark:hover { background: var(--ember); }
.reading__mark.is-done { background: var(--ember); border-color: var(--paper-hi); }
.reading__mark.is-current {
  width: 15px; height: 15px;
  background: var(--hibi);
  box-shadow: 0 0 0 3px rgba(216, 34, 31, .22);
}

/* 節の名前。触れたときとキーボードで選んだときに出す。 */
.reading__tip {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  padding: .32rem .65rem;
  border-radius: 6px;
  background: var(--ink);
  color: #FFFFFF;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s var(--ease);
  box-shadow: var(--shadow);
}
.reading__mark:hover .reading__tip,
.reading__mark:focus-visible .reading__tip { opacity: 1; }

/* 端に寄った目盛りは、札が画面からはみ出さないように寄せる */
.reading__mark.is-start .reading__tip { left: -2px; transform: none; }
.reading__mark.is-end   .reading__tip { left: auto; right: -2px; transform: none; }

@media (max-width: 600px) {
  .reading__tip { font-size: .68rem; }
}

@media print {
  .reading { display: none !important; }
}

/* -------------------------------------------------------------------------
   27. 用語集
   ------------------------------------------------------------------------- */
.terms { display: grid; gap: .9rem; }
.term {
  display: grid;
  gap: .4rem 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  scroll-margin-top: 6.5rem;
}
@media (min-width: 760px) {
  .term { grid-template-columns: 15rem 1fr; }
}
.term:target { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255, 212, 0, .35); }
.term__name { font-weight: 900; font-size: 1.12rem; line-height: 1.45; }
.term__kana { display: block; font-size: .74rem; font-weight: 400; color: var(--fg-mute); letter-spacing: .06em; }
.term__alt { display: block; margin-top: .2rem; font-size: .72rem; font-weight: 400; color: var(--fg-mute); }
.term__desc { margin: 0; font-size: .92rem; }
.term__desc p { margin-bottom: .5rem; }
.term__menu { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .5rem; font-size: .82rem; }
.term__menu-label {
  padding: .1rem .55rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: .7rem; font-weight: 700;
}
.term__menu a {
  padding: .1rem .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--hibi-deep);
  background: var(--paper-hi);
}

/* -------------------------------------------------------------------------
   28. 臨時休業・特別営業
   ------------------------------------------------------------------------- */
.specialbox {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r);
  background: var(--card);
}
.specialbox__h { font-size: .95rem; margin-bottom: .5rem; }
.specials { display: grid; gap: .3rem; font-size: .9rem; }
.specials__item { padding-left: 1.1rem; position: relative; }
.specials__item::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold);
}
.specials__item.is-closed::before { background: var(--hibi); }

/* -------------------------------------------------------------------------
   29. 口コミのお願い
   ------------------------------------------------------------------------- */
.reviewcta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border: 1px dashed var(--line);
  border-radius: var(--r);
}
.reviewcta__lead { margin: 0; font-size: .88rem; color: var(--fg-mute); flex: 1 1 16rem; }
.reviewcta--footer { margin-top: 1.4rem; }

/* -------------------------------------------------------------------------
   30. 近くの駅から（表）
   ------------------------------------------------------------------------- */
.tablewrap { overflow-x: auto; }
.stations { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: .92rem; }
.stations th, .stations td { padding: .8rem .7rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.stations thead th { font-size: .76rem; letter-spacing: .08em; color: var(--fg-mute); }
.stations tbody th { font-weight: 900; white-space: nowrap; color: var(--hibi-deep); }
.stations td:last-child { color: var(--fg-mute); font-size: .84rem; }

/* -------------------------------------------------------------------------
   31. 頼み方の見本
   ------------------------------------------------------------------------- */
.orders { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.ordercard {
  display: flex; flex-direction: column;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); box-shadow: var(--shadow);
  scroll-margin-top: 6.5rem;
}
.ordercard__people { font-size: .74rem; letter-spacing: .12em; color: var(--sea-deep); font-weight: 700; }
.ordercard__title { font-size: 1.2rem; margin: .2rem 0 .4rem; }
.ordercard__lead { color: var(--fg-mute); font-size: .88rem; margin-bottom: .9rem; }
.ordercard__items { display: grid; margin-bottom: .9rem; }
.ordercard__items li {
  display: flex; justify-content: space-between; gap: .8rem;
  padding: .45rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem;
}
.ordercard__items a { color: var(--fg); }
.ordercard__items a:hover { color: var(--hibi-deep); }
.ordercard__tip { font-size: .8rem; color: var(--fg-mute); line-height: 1.7; margin-bottom: 1rem; }
.ordercard__total {
  margin-top: auto; padding-top: .8rem; border-top: 2px solid var(--gold);
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .2rem .8rem;
  font-size: .82rem;
}
.ordercard__total b { font-family: var(--font-disp); font-size: 1.6rem; color: var(--hibi-deep); }
.ordercard__per { flex-basis: 100%; text-align: right; color: var(--fg-mute); }

/* -------------------------------------------------------------------------
   32. 宴会ガイド
   ------------------------------------------------------------------------- */
.greet {
  margin: 1rem 0; padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--gold); border-radius: 0 var(--r) var(--r) 0;
  background: var(--card);
}
.greet__label { font-size: .76rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); margin-bottom: .3rem; }
.greet p:last-child { margin: 0; line-height: 2; }
.checklist { display: grid; gap: .5rem; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before { content: "☐"; position: absolute; left: 0; top: 0; color: var(--hibi); font-weight: 700; }
.timeline { display: grid; }
.timeline li { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.timeline b { color: var(--hibi-deep); font-family: var(--font-disp); }

/* メニューの品名から用語集へ */
.mitem__name a.mitem__link {
  color: inherit;
  text-decoration: underline dotted rgba(43, 33, 25, .35);
  text-underline-offset: .22em;
}
.mitem__name a.mitem__link:hover { color: var(--hibi-deep); }
/* -------------------------------------------------------------------------
   33. お知らせの一覧・記事
   ------------------------------------------------------------------------- */
.news__title a { color: inherit; text-decoration: none; }
.news__title a:hover { color: var(--hibi-deep); text-decoration: underline; text-underline-offset: .2em; }
.news__more { margin-top: 1rem; text-align: right; font-size: .9rem; }
.news__more a { font-weight: 700; }

.post { max-width: 46rem; }
.post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.post__title {
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  line-height: 1.45;
  margin-bottom: 1.4rem;
}
.post__fig { margin: 0 0 1.6rem; }
.post__fig img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; height: auto; }
.post__body p { line-height: 2; }
.post__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* 季節の宴会の案内 */
.seasonbox {
  margin-top: 1.6rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--hibi);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--card);
  box-shadow: var(--shadow);
}
.seasonbox__label { font-size: .76rem; font-weight: 700; letter-spacing: .08em; color: var(--hibi-deep); margin-bottom: .25rem; }
.seasonbox__title { font-size: 1.15rem; margin-bottom: .5rem; }
.seasonbox p:last-child { margin-bottom: 0; }
.stations tr.is-now th, .stations tr.is-now td { background: rgba(255, 212, 0, .16); }
.stations tr.is-now th::after {
  content: "いま"; margin-left: .5rem; padding: .05rem .45rem; border-radius: 999px;
  background: var(--hibi); color: #fff; font-size: .68rem; font-weight: 700; vertical-align: middle;
}
.seasonbox a:not(.btn), .post a:not(.btn) { color: var(--hibi-deep); font-weight: 700; }
.seasonbox a:not(.btn):hover, .post a:not(.btn):hover { color: var(--ember); }

/* -------------------------------------------------------------------------
   34. ドリンクの価格一覧
   ------------------------------------------------------------------------- */
.mitem__price {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: .8rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--hibi-deep);
  white-space: nowrap;
}
.section--deep .mitem__price { color: var(--gold); }
.dsub {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .4rem 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--line);
}
.dsub__name { font-weight: 700; font-size: .88rem; color: var(--hibi-deep); margin: 0; }
.dsub__items { margin: 0; font-size: .86rem; line-height: 1.85; color: var(--fg-mute); }
@media (max-width: 560px) {
  .dsub { grid-template-columns: 1fr; gap: .1rem; }
}
img.rounded { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; height: auto; }
