/* =========================================================
   KYABEL — SNACK / NEO SALON (SITE 38)
   個店・モダンスナック・明色カード＋雑誌ダイジェスト型（左右固定ではない）
   ミルクホワイト×ピスタチオグレー×コーラル×チャコール／display=Zen Maru Gothic（丸ゴシック）
   シグネチャ = 利用目的スイッチ。清潔なサロン感・角丸・小さい文字を避ける。
   31（白ダイジェスト・明朝・角丸0）とは書体と丸みで別物。
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --milk: #fbfaf7;        /* ミルクホワイト（地） */
  --pista: #d6dcd0;       /* ピスタチオグレー（面・パネル） */
  --pista-soft: #e9ede4;  /* 淡ピスタチオ（区切り面） */
  --coral: #e0705a;       /* コーラル（面・細線・装飾・大見出しアクセント） */
  --coral-deep: #ab4029;  /* コーラル濃（文字・リンク・白抜きボタン地：ミルク/ピスタチオ地とも4.5:1確保） */
  --ink: #35383a;         /* チャコール（見出し・本文） */
  --text: #3b3e40;        /* 本文（ミルク地で高コントラスト） */
  --muted: #5f6461;       /* 補足（ミルク地で4.5:1確保） */
  --line: #e4e2db;        /* 罫線 */
  --line-strong: #cfd3c8; /* 罫線（濃） */
  --card: #ffffff;

  --wrap: 1080px;
  --radius: 18px;
  --radius-sm: 12px;

  --display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --topbar-h: 64px;
  --mcta-h: 60px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 10px 30px rgba(53, 56, 58, .07);
  --shadow-sm: 0 4px 14px rgba(53, 56, 58, .06);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--milk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--mcta-h) + env(safe-area-inset-bottom));
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 2px; border-radius: 4px; }
body.is-locked { overflow: hidden; }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 10px 18px; font-size: 15px; font-weight: 700; border-radius: 999px;
  transform: translateY(-180%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 50px; padding: 13px 26px;
  font-family: var(--display);
  font-size: 16px; font-weight: 700; letter-spacing: .02em;
  border: 2px solid transparent; border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s, border-color .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--ink); color: var(--milk); }
.btn--solid:hover { background: #23262a; box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(53, 56, 58, .04); }
.btn--coral { background: var(--coral-deep); color: #fff; }
.btn--coral:hover { background: #a23f28; box-shadow: var(--shadow-sm); }
.btn--block { width: 100%; }

/* ============================================================
   ヘッダー
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--topbar-h);
  background: rgba(251, 250, 247, .9);
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.topbar__inner {
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 14px;
  width: min(100% - 32px, 1180px); margin: 0 auto;
}
.topbar__toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; border-radius: 12px; }
.topbar__toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.topbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.topbar__logo {
  font-family: var(--display); font-size: 22px; font-weight: 900; letter-spacing: .04em; color: var(--ink);
  display: flex; align-items: baseline; gap: 8px; line-height: 1;
}
.topbar__logo span { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--coral-deep); }
.mainnav { display: none; }
.topbar__reserve {
  margin-left: auto;
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 20px;
  font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: .04em;
  background: var(--coral-deep); color: #fff; border-radius: 999px;
}
.topbar__reserve:hover { background: #a23f28; }

@media (min-width: 960px) {
  .topbar__toggle { display: none; }
  .mainnav { display: flex; align-items: center; gap: 4px; margin-left: 22px; }
  .mainnav a {
    padding: 8px 12px; min-height: 40px; display: inline-flex; align-items: center;
    font-size: 15px; font-weight: 500; color: var(--text); border-radius: 999px;
    transition: background .2s, color .2s;
  }
  .mainnav a:hover { background: var(--pista-soft); color: var(--ink); }
  .mainnav a[aria-current="page"] { color: var(--coral-deep); font-weight: 700; }
  .topbar__logo { font-size: 24px; }
}

/* ============================================================
   ドロワー
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 150; background: rgba(53, 56, 58, .32); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer[aria-hidden="false"] { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(88vw, 380px);
  background: var(--milk);
  padding: calc(env(safe-area-inset-top) + 26px) 26px calc(env(safe-area-inset-bottom) + 26px);
  overflow-y: auto; transform: translateX(-100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column; gap: 20px;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__brand { font-family: var(--display); font-size: 27px; font-weight: 900; letter-spacing: .03em; color: var(--ink); line-height: 1.2; }
.drawer__brand span { display: block; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .1em; color: var(--muted); margin-top: 8px; }
.drawer__nav { list-style: none; display: flex; flex-direction: column; }
.drawer__nav a { display: flex; align-items: baseline; gap: 14px; padding: 13px 4px; min-height: 48px; border-bottom: 1px solid var(--line); }
.drawer__nav .en { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: .04em; color: var(--ink); min-width: 108px; }
.drawer__nav .ja { font-size: 14px; color: var(--text); }
.drawer__nav a[aria-current="page"] .en { color: var(--coral-deep); }
.drawer__info { font-size: 15px; color: var(--text); line-height: 1.9; }
.drawer__tel { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--coral-deep); }
.drawer__sns { display: flex; gap: 10px; }
.drawer__sns a { padding: 9px 16px; min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; font-weight: 500; border: 1px solid var(--line-strong); border-radius: 999px; }

/* ============================================================
   共通 セクション・見出し
   ============================================================ */
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section--mama, .section--first, .section--staff, .section--diary { background: var(--milk); }
.section--purpose { background: var(--pista-soft); }
.section--system { background: var(--milk); }
.section--enjoy { background: var(--pista-soft); }
.section--calendar { background: var(--milk); }
.section--access { background: var(--pista-soft); }
.section--contact { background: var(--milk); }

.sec-head { margin-bottom: clamp(26px, 4vw, 40px); }
.sec-head__en { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .22em; color: var(--coral-deep); margin-bottom: 8px; }
.sec-head__ja { font-family: var(--display); font-size: clamp(26px, 4.6vw, 38px); font-weight: 900; letter-spacing: .01em; color: var(--ink); line-height: 1.3; }
.sec-head__note { margin-top: 12px; font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 44em; }

/* ---------- placeholder ---------- */
.ph { position: relative; overflow: hidden; background: var(--pista-soft); border-radius: var(--radius-sm); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph__label {
  position: absolute; left: 10px; bottom: 8px; font-size: 11px; letter-spacing: .08em;
  color: var(--muted); opacity: .0; pointer-events: none;
}
.ph.is-broken { display: grid; place-content: center; }
.ph.is-broken img { display: none; }
.ph.is-broken .ph__label { opacity: .7; position: static; font-size: 13px; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-ratio="4x5"] { aspect-ratio: 4 / 5; }
.ph[data-ratio="3x2"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="1x1"] { aspect-ratio: 1 / 1; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin: calc(var(--topbar-h) + 20px) auto 0;
  width: min(100% - 32px, var(--wrap));
  background: linear-gradient(160deg, var(--pista-soft), var(--milk) 82%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: grid;
}
.hero__media { margin-bottom: 24px; }
.hero__ph { border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.hero__eyebrow { font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: .1em; color: var(--coral-deep); margin-bottom: 14px; }
.hero__title { font-family: var(--display); font-size: clamp(30px, 6.6vw, 56px); font-weight: 900; line-height: 1.28; letter-spacing: .01em; color: var(--ink); }
.hero__lead { margin-top: 18px; font-size: 16px; line-height: 1.9; color: var(--text); max-width: 40em; }
.hero__status {
  margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  font-size: 15px; color: var(--text);
}
.hero__status b { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); }
.hero__status-open { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .08em; color: #fff; background: var(--coral-deep); padding: 4px 14px; border-radius: 999px; }
.hero__status-holi { color: var(--muted); }
.hero__cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* デスクトップ: 2カラム化（本文左・メディア右） */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(28px, 4vw, 52px);
    padding: clamp(32px, 4vw, 56px);
  }
  .hero__media { margin: 0; order: 2; }
  .hero__body { order: 1; }
}

/* ============================================================
   MAMA MESSAGE
   ============================================================ */
.mama { display: grid; gap: 28px; }
.mama__media .ph { border-radius: var(--radius); box-shadow: var(--shadow); max-width: 360px; }
.mama__lead { font-family: var(--display); font-size: clamp(20px, 3.4vw, 28px); font-weight: 700; color: var(--ink); line-height: 1.5; margin-bottom: 16px; }
.mama__text p { font-size: 16px; line-height: 1.95; color: var(--text); margin-bottom: 12px; }
.mama__sign { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.mama__role { font-size: 14px; color: var(--muted); }
.mama__name { font-family: var(--display); font-size: 24px; font-weight: 900; color: var(--ink); }
.mama__name small { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 8px; }
.mama__since { font-size: 14px; color: var(--muted); }
@media (min-width: 768px) {
  .mama { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); align-items: center; gap: clamp(30px, 5vw, 56px); }
  .mama__media .ph { max-width: none; }
}

/* ============================================================
   利用目的スイッチ（シグネチャ）＋ 料金シミュレーション
   ============================================================ */
.purpose { display: grid; gap: 18px; }
.purpose__tabs {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.ptab {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 62px; padding: 10px 8px;
  background: var(--card); border: 2px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s, transform .15s var(--ease), box-shadow .2s;
}
.ptab:hover { border-color: var(--coral); transform: translateY(-1px); }
.ptab__ja { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--ink); }
.ptab__en { font-size: 11px; letter-spacing: .12em; color: var(--muted); }
.ptab[aria-selected="true"] {
  background: var(--coral-deep); border-color: var(--coral-deep); box-shadow: var(--shadow-sm);
}
.ptab[aria-selected="true"] .ptab__ja { color: #fff; }
.ptab[aria-selected="true"] .ptab__en { color: rgba(255, 255, 255, .82); }

.purpose__panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3.5vw, 32px);
  box-shadow: var(--shadow-sm);
}
.purpose__panel.is-swap { animation: swapIn .38s var(--ease); }
@keyframes swapIn { from { opacity: .35; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .purpose__panel.is-swap { animation: none; } }
.ppanel__lead { font-family: var(--display); font-size: clamp(20px, 3.4vw, 26px); font-weight: 700; color: var(--ink); line-height: 1.5; }
.ppanel__body { margin-top: 12px; font-size: 16px; line-height: 1.9; color: var(--text); }
.ppanel__points { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.ppanel__points li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text); }
.ppanel__points li::before {
  content: ""; position: absolute; left: 4px; top: .62em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
}
.ppanel__reco {
  margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--pista-soft); border-radius: var(--radius-sm);
  font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--ink);
}
.ppanel__reco-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: #fff; background: var(--coral-deep); padding: 4px 12px; border-radius: 999px; }

@media (min-width: 720px) {
  .purpose { grid-template-columns: minmax(200px, 260px) minmax(0, 1fr); align-items: start; }
  .purpose__tabs { grid-template-columns: minmax(0, 1fr); }
  .ptab { flex-direction: row; justify-content: flex-start; gap: 12px; min-height: 58px; padding: 12px 18px; }
}

/* --- 料金シミュレーション --- */
.sim {
  margin-top: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3.5vw, 32px); box-shadow: var(--shadow-sm);
}
.sim__title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.sim__title span { display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--muted); margin-left: 8px; }
.sim__controls { display: grid; gap: 22px; }
.sim__control { display: grid; gap: 10px; }
.sim__label { font-size: 15px; font-weight: 700; color: var(--ink); }
.stepper { display: inline-flex; align-items: center; gap: 4px; }
.stepper__btn {
  width: 48px; height: 48px; display: grid; place-content: center;
  font-size: 24px; font-weight: 700; color: var(--ink);
  background: var(--pista-soft); border: 1px solid var(--line-strong); border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.stepper__btn:hover { background: var(--pista); border-color: var(--coral); }
.stepper__val { min-width: 84px; text-align: center; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); }
.seg { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.seg__btn {
  min-height: 48px; padding: 0 20px; font-size: 16px; font-weight: 700; color: var(--text);
  background: var(--pista-soft); border: 1px solid var(--line-strong); border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
}
.seg__btn:hover { border-color: var(--coral); }
.seg__btn[aria-pressed="true"] { background: var(--ink); color: var(--milk); border-color: var(--ink); }
.opts { display: grid; gap: 10px; }
.opt { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 6px 14px; background: var(--pista-soft); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.opt input { width: 22px; height: 22px; accent-color: var(--coral-deep); flex: none; }
.opt span { font-size: 15px; font-weight: 500; color: var(--ink); }
.opt small { font-size: 13px; font-weight: 400; color: var(--muted); margin-left: 6px; }

.sim__result { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 18px; }
.sim__breakdown { display: grid; gap: 8px; }
.sim__row { display: flex; justify-content: space-between; gap: 14px; font-size: 15px; color: var(--text); }
.sim__row span:last-child { font-family: var(--display); font-weight: 700; color: var(--ink); white-space: nowrap; }
.sim__totals { display: grid; gap: 6px; padding: 16px 18px; background: var(--pista-soft); border-radius: var(--radius-sm); }
.sim__per, .sim__total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: 15px; color: var(--muted); }
.sim__per b { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); }
.sim__total b { font-family: var(--display); font-size: 30px; font-weight: 900; color: var(--coral-deep); }
.sim__foot { margin-top: 14px; font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (min-width: 640px) {
  .sim__controls { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 28px; }
  .sim__control--opts { grid-column: 1 / -1; }
  .opts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sim__result { grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); align-items: start; }
}

/* ============================================================
   FIRST VISIT
   ============================================================ */
.steps { list-style: none; display: grid; gap: 18px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3.4vw, 30px); box-shadow: var(--shadow-sm); }
.step__no { font-family: var(--display); font-size: 15px; font-weight: 900; letter-spacing: .06em; color: #fff; background: var(--coral-deep); width: 44px; height: 44px; border-radius: 50%; display: grid; place-content: center; }
.step__title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin: 16px 0 8px; }
.step__body { font-size: 16px; line-height: 1.85; color: var(--text); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ============================================================
   SYSTEM
   ============================================================ */
.sets { display: grid; gap: 14px; margin-bottom: 30px; }
.setcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; }
.setcard__name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); }
.setcard__detail { font-size: 14px; color: var(--muted); width: 100%; order: 3; }
.setcard__price { font-family: var(--display); font-size: 26px; font-weight: 900; color: var(--coral-deep); }
.setcard__price small { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 6px; }
@media (min-width: 720px) { .sets { grid-template-columns: repeat(3, minmax(0, 1fr)); } .setcard { flex-direction: column; align-items: flex-start; } .setcard__detail { order: 2; } }

.fees { background: var(--pista-soft); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); }
.fees__title { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.fees__list { display: grid; gap: 4px; }
.feerow { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.feerow:last-child { border-bottom: 0; }
.feerow dt { color: var(--text); }
.feerow dd { font-family: var(--display); font-weight: 700; color: var(--ink); white-space: nowrap; }
@media (min-width: 640px) { .fees__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; } }

.notes { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.notes__summary { padding: 16px 20px; min-height: 48px; display: flex; align-items: center; font-size: 15px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.notes__summary::-webkit-details-marker { display: none; }
.notes__summary::after { content: "＋"; margin-left: auto; color: var(--coral-deep); font-weight: 700; }
.notes[open] .notes__summary::after { content: "−"; }
.notes__list { list-style: none; padding: 0 20px 18px; display: grid; gap: 8px; }
.notes__list li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.notes__list li::before { content: "・"; position: absolute; left: 0; color: var(--coral-deep); }

/* ============================================================
   STAFF
   ============================================================ */
.staff-grid { display: grid; gap: 18px; }
.staff { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 96px minmax(0, 1fr); }
.staff__media .ph { border-radius: 0; height: 100%; }
.staff__media { min-height: 100%; }
.staff__body { padding: 16px 18px; }
.staff__name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); }
.staff__name small { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 8px; }
.staff__meta { font-size: 14px; color: var(--muted); margin-top: 2px; }
.staff__role { display: inline-block; font-size: 12px; font-weight: 700; color: var(--coral-deep); background: var(--pista-soft); padding: 2px 10px; border-radius: 999px; margin-right: 8px; }
.staff__days { font-size: 14px; color: var(--text); margin-top: 8px; }
.staff__comment { font-size: 15px; line-height: 1.8; color: var(--text); margin-top: 8px; }
@media (min-width: 560px) { .staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .staff { grid-template-columns: 120px minmax(0, 1fr); } }
@media (min-width: 1000px) { .staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   BOTTLE / KARAOKE
   ============================================================ */
.enjoy-grid { display: grid; gap: 20px; }
.enjoy { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.enjoy__media .ph { border-radius: 0; }
.enjoy__body { padding: clamp(20px, 3vw, 28px); }
.enjoy__eyebrow { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--coral-deep); }
.enjoy__lead { font-family: var(--display); font-size: clamp(19px, 3vw, 24px); font-weight: 700; color: var(--ink); margin: 8px 0 10px; }
.enjoy__body p { font-size: 16px; line-height: 1.85; color: var(--text); }
.enjoy__list { list-style: none; margin-top: 14px; display: grid; gap: 6px; }
.enjoy__list li { position: relative; padding-left: 20px; font-size: 15px; color: var(--text); }
.enjoy__list li::before { content: ""; position: absolute; left: 2px; top: .66em; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
@media (min-width: 768px) { .enjoy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   営業日記（Instagram風）
   ============================================================ */
.diary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.diary { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; background: var(--pista-soft); text-align: left; }
.diary .ph { border-radius: 0; }
.diary__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px;
  font-size: 13px; line-height: 1.5; color: #fff;
  background: linear-gradient(180deg, rgba(35, 38, 42, 0), rgba(35, 38, 42, .82));
  opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s;
}
.diary:hover .diary__cap, .diary:focus-visible .diary__cap { opacity: 1; transform: none; }
@media (min-width: 640px) { .diary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .diary-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* ============================================================
   営業カレンダー
   ============================================================ */
.cal { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.cal__cell {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 10px 6px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 3px; min-height: 92px; text-align: center;
}
.cal__cell.is-closed { background: var(--pista-soft); border-style: dashed; }
.cal__cell.is-today { border-color: var(--coral-deep); border-width: 2px; box-shadow: var(--shadow-sm); }
.cal__dow { font-size: 13px; font-weight: 700; color: var(--muted); }
.cal__dow.sun { color: var(--coral-deep); }
.cal__dow.sat { color: #4b6f9c; }
.cal__date { font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1.1; }
.cal__today-label { font-size: 11px; font-weight: 700; color: #fff; background: var(--coral-deep); padding: 1px 8px; border-radius: 999px; }
.cal__note { font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.cal__event { font-size: 12px; font-weight: 700; color: var(--coral-deep); line-height: 1.4; margin-top: 2px; }
.cal__closed { font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 2px; }
.cal-legend { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.cal-legend li { font-size: 15px; color: var(--text); display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; }
.cal-legend__day { font-family: var(--display); font-weight: 700; color: #fff; background: var(--coral-deep); padding: 2px 10px; border-radius: 999px; font-size: 13px; }
.cal-legend b { font-family: var(--display); color: var(--ink); }
@media (max-width: 560px) {
  .cal { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cal__cell { min-height: 84px; }
}
@media (min-width: 640px) { .cal-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   ACCESS
   ============================================================ */
.access { display: grid; gap: 28px; }
.access__list { display: grid; gap: 2px; margin-top: 8px; }
.access__list > div { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.access__list dt { font-size: 14px; font-weight: 700; color: var(--muted); }
.access__list dd { font-size: 16px; color: var(--text); }
.access__tel { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--coral-deep); }
.access__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.access__media .ph { border-radius: var(--radius); box-shadow: var(--shadow); }
.access__mapnote { margin-top: 10px; font-size: 14px; color: var(--muted); }
@media (min-width: 860px) { .access { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; gap: 48px; } }

/* ============================================================
   CONTACT フォーム
   ============================================================ */
.form { display: grid; gap: 18px; max-width: 680px; }
.form__row { display: grid; gap: 8px; }
.form__label { font-size: 15px; font-weight: 700; color: var(--ink); }
.req { font-size: 12px; font-weight: 700; color: #fff; background: var(--coral-deep); padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.form__input {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 12px; padding: 13px 16px; min-height: 50px;
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus { outline: none; border-color: var(--coral-deep); box-shadow: 0 0 0 3px rgba(184, 72, 47, .16); }
textarea.form__input { min-height: 120px; line-height: 1.7; resize: vertical; }
select.form__input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.form__row--check { margin-top: 4px; }
.check { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; cursor: pointer; }
.check input { width: 22px; height: 22px; accent-color: var(--coral-deep); flex: none; margin-top: 2px; }
.check span { font-size: 15px; color: var(--text); }
.form__note { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 4px; }

.confirm { max-width: 680px; background: var(--pista-soft); border-radius: var(--radius); padding: clamp(20px, 3.4vw, 30px); }
.confirm__title { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.confirm__list { display: grid; gap: 2px; margin-bottom: 20px; }
.confirm__row { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-strong); }
.confirm__row dt { font-size: 14px; font-weight: 700; color: var(--muted); }
.confirm__row dd { font-size: 16px; color: var(--ink); }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   フッター
   ============================================================ */
.site-foot { background: var(--ink); color: var(--milk); padding: clamp(40px, 6vw, 64px) 0 28px; }
.site-foot__inner { display: grid; gap: 30px; }
.site-foot__logo { font-family: var(--display); font-size: 24px; font-weight: 900; letter-spacing: .04em; }
.site-foot__logo span { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--coral); margin-left: 8px; }
.site-foot__desc { font-size: 15px; line-height: 1.8; color: rgba(251, 250, 247, .74); margin-top: 12px; max-width: 30em; }
.site-foot__sns { display: flex; gap: 10px; margin-top: 16px; }
.site-foot__sns a { padding: 9px 16px; min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; border: 1px solid rgba(251, 250, 247, .3); border-radius: 999px; }
.site-foot__sns a:hover { border-color: var(--coral); color: var(--coral); }
.site-foot__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
.site-foot__nav a { padding: 11px 2px; min-height: 44px; display: flex; align-items: center; font-size: 15px; color: rgba(251, 250, 247, .82); border-bottom: 1px solid rgba(251, 250, 247, .12); }
.site-foot__nav a:hover { color: var(--coral); }
.site-foot__tel { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--milk); }
.site-foot__contact p { font-size: 14px; color: rgba(251, 250, 247, .74); margin-top: 8px; line-height: 1.7; }
.site-foot__notes { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(251, 250, 247, .14); }
.site-foot__notes p { font-size: 14px; line-height: 1.7; color: rgba(251, 250, 247, .6); margin-bottom: 8px; }
.site-foot__copy { margin-top: 12px; font-size: 14px; letter-spacing: .04em; }
@media (min-width: 820px) {
  .site-foot__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .site-foot__nav { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   モバイル固定CTA（SYSTEM / CALL / LINE）
   ============================================================ */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  height: calc(var(--mcta-h) + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(251, 250, 247, .96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.mcta__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: var(--mcta-h); border-right: 1px solid var(--line); color: var(--ink);
}
.mcta__item:last-child { border-right: 0; }
.mcta__ja { font-family: var(--display); font-size: 15px; font-weight: 700; }
.mcta__en { font-size: 11px; letter-spacing: .12em; color: var(--muted); }
.mcta__item--call { background: var(--ink); color: var(--milk); }
.mcta__item--call .mcta__en { color: rgba(251, 250, 247, .7); }
.mcta__item--line { background: var(--coral-deep); color: #fff; }
.mcta__item--line .mcta__en { color: rgba(255, 255, 255, .78); }
@media (min-width: 768px) { .mcta { display: none; } }

/* ============================================================
   ページトップ
   ============================================================ */
.page-top {
  position: fixed; right: 16px; bottom: calc(var(--mcta-h) + env(safe-area-inset-bottom) + 16px); z-index: 70;
  width: 48px; height: 48px; border-radius: 50%; background: var(--card); border: 1px solid var(--line-strong);
  color: var(--ink); font-size: 20px; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .2s;
}
.page-top.is-show { opacity: 1; visibility: visible; }
.page-top:hover { transform: translateY(-2px); border-color: var(--coral); }
@media (min-width: 768px) { .page-top { bottom: 24px; } }

/* ============================================================
   モーダル
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(35, 38, 42, .5); backdrop-filter: blur(2px); }
.modal__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(92vw, 460px); max-height: 88vh; overflow-y: auto;
  background: var(--milk); border-radius: var(--radius); padding: clamp(24px, 4vw, 34px); box-shadow: 0 24px 60px rgba(35, 38, 42, .28);
}
.modal__close-x { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; display: grid; place-content: center; font-size: 24px; color: var(--muted); border-radius: 12px; }
.modal__close-x:hover { background: var(--pista-soft); color: var(--ink); }
.modal__media { margin-bottom: 18px; }
.modal__media .ph { border-radius: var(--radius-sm); }
.modal__title { font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--ink); padding-right: 40px; }
.modal__body { margin-top: 12px; font-size: 16px; line-height: 1.85; color: var(--text); }
.modal__actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   下層ページ 共通（V4-3）
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ページヘッダー */
.page-head {
  margin-top: var(--topbar-h);
  background: linear-gradient(160deg, var(--pista-soft), var(--milk) 82%);
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 5vw, 56px) 0 clamp(26px, 4vw, 40px);
}
.page-head__en { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .22em; color: var(--coral-deep); margin-bottom: 10px; }
.page-head__ja { font-family: var(--display); font-size: clamp(28px, 5.2vw, 44px); font-weight: 900; letter-spacing: .01em; color: var(--ink); line-height: 1.25; }
.page-head__note { margin-top: 14px; font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 46em; }
.page-head__crumb { margin-top: 12px; font-size: 14px; color: var(--muted); }
.page-head__crumb a { color: var(--coral-deep); }
.page-head__crumb a:hover { text-decoration: underline; }

/* MAMA プロフィール */
.prof { margin-top: clamp(30px, 5vw, 48px); }
.prof__title { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.prof__list { display: grid; gap: 2px; max-width: 640px; }
.prof__row { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.prof__row dt { font-size: 14px; font-weight: 700; color: var(--muted); }
.prof__row dd { font-size: 16px; color: var(--text); }
.mama-qa { margin-top: 24px; max-width: 760px; }

/* 詳細カード（BOTTLE / KARAOKE） */
.detail { display: grid; gap: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.detail__media .ph { border-radius: 0; }
.detail__body { padding: clamp(22px, 3.4vw, 34px); }
.detail__lead { font-family: var(--display); font-size: clamp(21px, 3.4vw, 28px); font-weight: 700; color: var(--ink); margin: 8px 0 12px; line-height: 1.4; }
.detail__body p { font-size: 16px; line-height: 1.9; color: var(--text); }
@media (min-width: 820px) {
  .detail { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 0; align-items: center; }
  .detail__media { height: 100%; }
  .detail__media .ph { height: 100%; }
}

/* メニュー行（ボトル） */
.menu-block { margin-top: clamp(30px, 5vw, 48px); }
.menu-block__title { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.menu-list { display: grid; gap: 2px; max-width: 720px; }
.menu-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px 18px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu-row__name { font-size: 16px; font-weight: 500; color: var(--ink); }
.menu-row__note { font-size: 14px; color: var(--muted); }
.menu-row__price { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--coral-deep); white-space: nowrap; }
.menu-note { margin-top: 14px; font-size: 14px; color: var(--muted); }
.bottle-notes { list-style: none; margin-top: 18px; display: grid; gap: 8px; max-width: 640px; }
.bottle-notes li { position: relative; padding-left: 18px; font-size: 15px; color: var(--text); }
.bottle-notes li::before { content: "・"; position: absolute; left: 0; color: var(--coral-deep); }

/* パネル2枚組（カラオケ） */
.two-col { display: grid; gap: 18px; margin-top: clamp(24px, 4vw, 36px); }
@media (min-width: 720px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.panel-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow-sm); }
.panel-card__title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-size: 15px; font-weight: 500; color: var(--ink); background: var(--pista-soft); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
.rules { list-style: none; counter-reset: r; display: grid; gap: 12px; }
.rules li { position: relative; padding-left: 40px; font-size: 15px; line-height: 1.75; color: var(--text); counter-increment: r; }
.rules li::before { content: counter(r); position: absolute; left: 0; top: 0; width: 28px; height: 28px; display: grid; place-content: center; font-family: var(--display); font-size: 14px; font-weight: 700; color: #fff; background: var(--coral-deep); border-radius: 50%; }

/* 営業時間ブロック（schedule） */
.hours-block { margin-top: clamp(28px, 4vw, 42px); background: var(--pista-soft); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); max-width: 640px; }
.hours-block__title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.hours-block dl { display: grid; gap: 2px; }
.hours-block div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-block dt { font-size: 14px; font-weight: 700; color: var(--muted); }
.hours-block dd { font-size: 16px; color: var(--text); }

/* EVENTS */
.events { display: grid; gap: 20px; }
.event { display: grid; gap: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.event__media .ph { border-radius: 0; }
.event__body { padding: clamp(20px, 3vw, 28px); }
.event__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 15px; color: var(--muted); }
.event__badge { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .04em; color: #fff; padding: 3px 12px; border-radius: 999px; }
.event__badge--weekly { background: var(--coral-deep); }
.event__badge--special { background: var(--ink); }
.event__title { font-family: var(--display); font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--ink); margin: 8px 0 10px; }
.event__body p:last-child { font-size: 16px; line-height: 1.85; color: var(--text); }
@media (min-width: 720px) {
  .event { grid-template-columns: minmax(0, 280px) minmax(0, 1fr); align-items: center; }
  .event__media { height: 100%; }
  .event__media .ph { height: 100%; }
}

/* アコーディオン（FAQ・Q&A） */
.acc-list { display: grid; gap: 12px; max-width: 820px; }
.acc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc__heading { margin: 0; }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; padding: 16px 18px; min-height: 56px; font-size: 16px; font-weight: 700; color: var(--ink); }
.acc__icon { position: relative; flex: none; width: 18px; height: 18px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--coral-deep); transition: transform .2s; }
.acc__icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.acc__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { padding: 0 18px 18px; }
.acc__panel p { font-size: 15px; line-height: 1.85; color: var(--text); }

/* RECRUIT */
.recruit-lead { font-family: var(--display); font-size: clamp(20px, 3.4vw, 28px); font-weight: 700; color: var(--ink); line-height: 1.5; margin-bottom: clamp(24px, 4vw, 36px); }
.merits { display: grid; gap: 16px; }
.merit { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 26px); box-shadow: var(--shadow-sm); }
.merit__title { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.merit p { font-size: 16px; line-height: 1.85; color: var(--text); }
@media (min-width: 768px) { .merits { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sal { display: grid; gap: 2px; margin-top: 16px; max-width: 640px; }
.sal-row { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.sal-row dt { font-size: 15px; font-weight: 700; color: var(--ink); }
.sal-row dd { font-size: 16px; color: var(--text); }
.subhead { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ink); margin: 26px 0 12px; }

/* GALLERY 店内 */
.store-gallery { display: grid; gap: 16px; }
.store-shot { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.store-shot .ph { border-radius: 0; }
.store-shot figcaption { padding: 12px 16px; font-size: 14px; color: var(--muted); }
@media (min-width: 720px) { .store-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; } }

/* prose（privacy / 静的テキスト） */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--display); font-size: clamp(19px, 2.6vw, 23px); font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.9; color: var(--text); margin-bottom: 12px; }
.prose ul { margin: 8px 0 12px; padding-left: 22px; }
.prose li { font-size: 16px; line-height: 1.85; color: var(--text); margin-bottom: 6px; }
.prose .prose__meta { font-size: 14px; color: var(--muted); margin-top: 24px; }

/* ============================================================
   ユーティリティ
   ============================================================ */
.empty-note { font-size: 15px; color: var(--muted); text-align: center; padding: 24px; }
