/* SIGNATURE SIDEBAR (SITE 58) — style.css
   左=ブランドナビ / 中央=サロン型 / 右=本日の出勤・予約。position:sticky の自然高レール。
   デスクトップは 3カラム grid。モバイルは中央100%＋左ドロワー＋右ボトムシート。 */

/* ============ ベース ============ */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: var(--fs-body);
}
/* 地の質感：クリームのシルク（微細な縦グラデ＋金の光） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 60% at 82% 0%, rgba(200,171,114,.16), transparent 60%),
    radial-gradient(90% 50% at 0% 100%, rgba(200,171,114,.10), transparent 55%),
    linear-gradient(180deg, #f7f2e6 0%, var(--cream) 45%, #f1ebdb 100%);
}
.wrap { max-width: 100%; }
:where(p) { line-height: 1.85; }
strong { font-weight: 700; }

.en { font-family: var(--font-mono); }
.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}
.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;
}
/* スキップリンク：フォーカスで可視化 */
a.sr-only:focus-visible {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  width: auto; height: auto; padding: .6rem 1rem; margin: 0;
  clip: auto; overflow: visible;
  background: var(--ink); color: var(--cream-hi); border-radius: var(--radius);
  font-size: var(--fs-small); font-weight: 600;
}

/* リンクの判別性（色だけに頼らない） */
a.inl {
  color: var(--gold-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a.inl:hover { color: var(--ink); }

/* ============ ボタン ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .7em 1.4em;
  font-size: var(--fs-body); font-weight: 600; letter-spacing: .02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--cream-hi); }
.btn--primary:hover { background: #322c22; }
.btn--gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #241d0e; }
.btn--gold:hover { filter: brightness(1.04); }
.btn--line { background: var(--cream-hi); color: var(--ink); border-color: var(--gold-deep); }
.btn--line:hover { background: var(--cream-panel); }
.btn--block { width: 100%; }
.btn__ic { width: 18px; height: 18px; }

/* ============ 3カラム shell ============ */
.shell {
  display: grid;
  grid-template-columns: var(--rail-left) minmax(0, 1fr) var(--rail-right);
  gap: var(--shell-gap);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

/* ---- 左レール：ブランドナビ ---- */
.rail-left {
  position: sticky;
  top: 0;
  align-self: start;              /* 自然高：内容ぶんだけ */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2vw, 2rem) 0 1.4rem;
  border-right: 1px solid var(--line);
}
.brand {
  display: block;
  padding: 0 .4rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: .8rem;
}
.brand__logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1;
  color: var(--ink);
}
.brand__mark {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;              /* 装飾英字ラベル（12px）：内容は下の .brand__type 日本語で担保 */
  letter-spacing: .26em;
  color: var(--gold-ink);
  margin-top: .4rem;
}
.brand__type {
  display: block;
  font-size: var(--fs-small);
  color: var(--ink-2);
  margin-top: .15rem;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  padding: 0 .1rem;
}
/* 自然高sticht：EN/JAを1行に横並びして高さを抑える（1366×768でクリップ回避） */
.nav__item {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .34rem .5rem;
  min-height: 44px;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  color: var(--ink);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.nav__item:hover { background: var(--shade); }
.nav__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-ink);
  min-width: 1.6em;
}
.nav__label { font-size: var(--fs-body); font-weight: 500; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.nav__label .en { font-size: 0.9375rem; letter-spacing: .1em; }
.nav__label .ja { font-size: var(--fs-small); color: var(--ink-2); }
/* 現在セクション強調（section spy） — 色だけでなく罫と地で示す */
.nav__item.is-active {
  background: var(--cream-hi);
  border-left-color: var(--gold);
}
.nav__item.is-active .nav__num,
.nav__item.is-active .en { color: var(--gold-ink); }
.nav__item.is-active .nav__label .en { font-weight: 700; }

.rail-left__sns {
  margin-top: auto;
  padding: 1.2rem .5rem 0;
  border-top: 1px solid var(--line-soft);
}
.rail-left__sns h2 {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .2em;
  color: var(--gold-ink);
  margin-bottom: .7rem;
  text-transform: uppercase;
}
.sns { display: flex; gap: .5rem; }
.sns a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.sns a:hover { background: var(--cream-hi); border-color: var(--gold-deep); }
.sns svg { width: 20px; height: 20px; }

/* ---- 中央：サロン本文 ---- */
.center {
  min-width: 0;
  max-width: var(--center-max);
  padding: clamp(1.4rem, 2vw, 2rem) 0 3rem;
}
.section { padding-block: var(--sec-py); border-top: 1px solid var(--line-soft); }
.section:first-of-type { border-top: 0; }
.section__head { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.section__head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .01em;
  margin-top: .5rem;
}
.section__head .lead { margin-top: .8rem; font-size: var(--fs-lead); color: var(--ink-2); max-width: 58ch; }

/* HERO（中央のみ・パララックス） */
.hero { position: relative; padding-top: clamp(1rem, 3vw, 2rem); }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: -8% 0;                    /* パララックス移動の余白 */
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,22,.06) 0%, rgba(28,26,22,0) 30%, rgba(28,26,22,.52) 100%);
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 20% 12%, rgba(245,240,227,.5), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__copy {
  position: absolute;
  left: clamp(1.1rem, 3vw, 2.2rem);
  right: clamp(1.1rem, 3vw, 2.2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  color: var(--cream-hi);
}
.hero__copy .kicker { color: var(--gold-soft); }
.hero__copy .kicker::before { background: var(--gold-soft); }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .01em;
  margin: .5rem 0 .4rem;
  text-shadow: 0 2px 24px rgba(20,16,10,.5);
}
.hero__sub { font-size: var(--fs-lead); max-width: 42ch; color: rgba(250,247,238,.92); }

/* CONCEPT */
.concept__body { display: grid; gap: 1.6rem; }
.concept__lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink);
}
.concept__p { color: var(--ink-2); font-size: var(--fs-body); }
.concept__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: .4rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.concept__fact { background: var(--cream-hi); padding: 1rem 1.05rem; }
.concept__fact dt { font-family: var(--font-mono); font-size: var(--fs-kicker); letter-spacing: .12em; color: var(--gold-ink); text-transform: uppercase; }
.concept__fact dd { font-size: var(--fs-body); font-weight: 600; margin-top: .35rem; }

/* TODAY（本日の出勤・中央再掲用パネル） */
.today {
  background: var(--cream-hi);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-s);
}
.today__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .6rem 1rem; }
.today__count { display: flex; align-items: baseline; gap: .5rem; }
.today__count b { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; line-height: 1; color: var(--gold-ink); }
.today__count span { font-size: var(--fs-body); color: var(--ink-2); }
.today__date { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-2); }
.today__note { margin-top: .9rem; font-size: var(--fs-small); color: var(--ink-3); }
.today__list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.today__chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .8rem; min-height: 40px;
  background: var(--cream-panel);
  border: 1px solid var(--line-soft);
  border-radius: 40px;
  font-size: var(--fs-small);
}
.today__chip b { font-weight: 600; font-size: var(--fs-body); }
.today__chip time { font-family: var(--font-mono); color: var(--gold-ink); }

/* CAST グリッド（3:4） */
.cast-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.8rem, 1.6vw, 1.15rem); }
.cast-card {
  text-align: left;
  display: flex; flex-direction: column;
  background: var(--cream-hi);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.cast-card:hover { box-shadow: var(--shadow-m); border-color: var(--line); transform: translateY(-3px); }
.cast-card__ph { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--cream-panel2); }
.cast-card__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cast-card:hover .cast-card__ph img { transform: scale(1.05); }
.cast-card__tag {
  position: absolute; top: .6rem; left: .6rem;
  font-family: var(--font-mono); font-size: var(--fs-kicker); letter-spacing: .1em;
  background: rgba(28,26,22,.72); color: var(--cream-hi);
  padding: .2rem .6rem; border-radius: 40px;
}
.cast-card__tag--today { background: var(--gold); color: #241d0e; }
.cast-card__body { padding: .8rem .85rem 1rem; display: flex; flex-direction: column; gap: .2rem; }
.cast-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.cast-card__kana { font-size: var(--fs-small); color: var(--ink-3); }
.cast-card__more {
  margin-top: .5rem; font-size: var(--fs-small); font-weight: 600; color: var(--gold-ink);
  display: inline-flex; align-items: center; gap: .3em;
}
.cast-card__more::after { content: "→"; transition: transform .2s var(--ease); }
.cast-card:hover .cast-card__more::after { transform: translateX(3px); }
.cast-more-row { margin-top: 1.4rem; text-align: center; }

/* SYSTEM（料金要約 — 説明的な表） */
.system__table {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-hi);
}
.system__table tr { border-bottom: 1px solid var(--line-soft); }
.system__table tr:last-child { border-bottom: 0; }
.system__table th, .system__table td { padding: .95rem 1.1rem; text-align: left; vertical-align: top; }
.system__table th { font-weight: 600; width: 46%; }
.system__table td { text-align: right; font-family: var(--font-mono); color: var(--ink); }
.system__table .unit { color: var(--ink-3); }
.system__note { margin-top: 1rem; font-size: var(--fs-small); color: var(--ink-3); display: grid; gap: .3rem; }

/* GALLERY（1:1 ＋ ライトボックス） */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.5rem, 1.2vw, .8rem); }
.gallery-cell {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-soft);
  background: var(--cream-panel2);
}
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell__cap {
  position: absolute; inset: auto 0 0 0; padding: .5rem .6rem;
  font-size: var(--fs-small); color: var(--cream-hi);
  background: linear-gradient(180deg, transparent, rgba(28,26,22,.7));
}

/* NEWS */
.news-list { display: grid; gap: .2rem; }
.news-item {
  display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.1rem;
  align-items: baseline;
  padding: 1.05rem .2rem;
  border-bottom: 1px solid var(--line-soft);
}
.news-item:first-child { border-top: 1px solid var(--line-soft); }
.news-item__meta { display: flex; gap: .7rem; align-items: center; }
.news-item__date { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-3); }
.news-item__cat {
  font-size: var(--fs-kicker); letter-spacing: .08em;
  padding: .16rem .6rem; border-radius: 40px;
  border: 1px solid var(--gold-deep); color: var(--gold-ink);
}
.news-item__title { grid-column: 1 / -1; font-size: var(--fs-body); font-weight: 600; }
.news-item a.news-item__title:hover { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ACCESS */
.access__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 1.4rem; }
.access__map { aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.access__map img { width: 100%; height: 100%; object-fit: cover; }
.access__info dl { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1rem; }
.access__info dt { font-family: var(--font-mono); font-size: var(--fs-small); letter-spacing: .06em; color: var(--gold-ink); }
.access__info dd { font-size: var(--fs-body); }
.access__steps { margin-top: 1.1rem; display: grid; gap: .55rem; counter-reset: step; }
.access__step { display: flex; gap: .7rem; font-size: var(--fs-small); color: var(--ink-2); }
.access__step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: var(--cream-hi);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: var(--fs-small);
}

/* ---- 右レール：ユーティリティ ---- */
.rail-right {
  position: sticky;
  top: clamp(1rem, 1.6vw, 1.5rem);
  align-self: start;              /* 自然高：overflow なし（§3.2） */
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: clamp(1rem, 1.6vw, 1.5rem);
  padding-bottom: 1rem;
}
.widget {
  background: var(--cream-hi);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: .7rem .85rem;
  box-shadow: var(--shadow-s);
}
.widget h2 {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .45rem;
  display: flex; align-items: center; gap: .5em;
}
.widget h2::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* 本日の出勤人数 ＋ 今日/明日切替 */
.w-attend__switch { display: flex; gap: .3rem; margin-bottom: .55rem; }
.w-attend__tab {
  flex: 1; min-height: 40px; padding: .3rem;
  font-size: var(--fs-small); font-weight: 600;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); color: var(--ink-2);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.w-attend__tab[aria-selected="true"] { background: var(--ink); color: var(--cream-hi); border-color: var(--ink); }
.w-attend__count { display: flex; align-items: baseline; gap: .45rem; }
.w-attend__count b { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; line-height: 1; color: var(--gold-ink); }
.w-attend__count span { font-size: var(--fs-small); color: var(--ink-2); }
.w-attend__date { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-3); margin-top: .25rem; }
.w-attend__names { margin-top: .45rem; font-size: var(--fs-small); color: var(--ink-2); line-height: 1.6; }

/* 注目キャスト */
.w-feature__card { display: flex; gap: .7rem; align-items: center; text-align: left; width: 100%; }
.w-feature__ph { flex: 0 0 auto; width: 54px; height: 68px; border-radius: var(--radius); overflow: hidden; background: var(--cream-panel2); }
.w-feature__ph img { width: 100%; height: 100%; object-fit: cover; }
.w-feature__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.w-feature__kana { font-size: var(--fs-small); color: var(--ink-3); }
.w-feature__link { margin-top: .2rem; font-size: var(--fs-small); font-weight: 600; color: var(--gold-ink); }

/* INFO タブ（営業時間 / 料金） */
.w-tabs { display: flex; gap: .3rem; margin-bottom: .55rem; }
.w-tabs__tab {
  flex: 1; min-height: 40px; padding: .3rem;
  font-size: var(--fs-small); font-weight: 600;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); color: var(--ink-2);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.w-tabs__tab[aria-selected="true"] { background: var(--ink); color: var(--cream-hi); border-color: var(--ink); }

/* 営業時間 */
.w-hours dl { display: grid; grid-template-columns: auto 1fr; gap: .3rem .8rem; font-size: var(--fs-small); }
.w-hours dt { color: var(--ink-3); }
.w-hours dd { text-align: right; font-family: var(--font-mono); }
.w-hours__status {
  display: inline-flex; align-items: center; gap: .4em;
  margin-top: .5rem; font-size: var(--fs-small); font-weight: 600;
}
.w-hours__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
.w-hours__status.is-open .w-hours__dot { background: #3e7d4f; box-shadow: 0 0 0 3px rgba(62,125,79,.2); }
.w-hours__status.is-open { color: #2c5e3a; }

/* 料金要約 */
.w-price dl { display: grid; gap: .38rem; font-size: var(--fs-small); }
.w-price div { display: flex; justify-content: space-between; gap: .6rem; padding-bottom: .38rem; border-bottom: 1px dashed var(--line-soft); }
.w-price div:last-child { border-bottom: 0; padding-bottom: 0; }
.w-price dt { color: var(--ink-2); }
.w-price dd { font-family: var(--font-mono); font-weight: 600; white-space: nowrap; }
.w-price__note { margin-top: .5rem; font-size: var(--fs-small); color: var(--ink-3); }
.w-price__link { display: inline-block; margin-top: .5rem; font-size: var(--fs-small); font-weight: 600; color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }

/* 連絡・予約 */
.w-contact { display: grid; gap: .45rem; }
.w-contact .btn { min-height: 44px; }
.w-contact .tel { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700; color: var(--ink); text-align: center; letter-spacing: .02em; text-decoration: none; display: block; }
.w-contact .tel:hover { color: var(--gold-ink); }
.w-contact .tel-note { text-align: center; font-size: var(--fs-small); color: var(--ink-3); margin-top: -.1rem; }

/* ============ キャスト詳細サイドパネル ============ */
.sidepanel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--cream-hi);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-panel);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  display: flex; flex-direction: column;
  visibility: hidden;
}
.sidepanel.is-open { transform: none; visibility: visible; }
.sidepanel__scrim {
  position: fixed; inset: 0; z-index: 79;
  background: var(--sheet-scrim);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.sidepanel__scrim.is-open { opacity: 1; visibility: visible; }
.sidepanel__bar { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; border-bottom: 1px solid var(--line-soft); flex: 0 0 auto; }
.sidepanel__bar .en { font-family: var(--font-mono); font-size: var(--fs-kicker); letter-spacing: .18em; color: var(--gold-ink); }
.sidepanel__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.sidepanel__close:hover { background: var(--shade); }
.sidepanel__close svg { width: 22px; height: 22px; }
.sidepanel__body { overflow-y: auto; padding: 1.1rem 1.2rem 1.6rem; }
.sp-hero { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); margin-bottom: 1rem; }
.sp-hero img { width: 100%; height: 100%; object-fit: cover; }
.sp-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.sp-kana { font-size: var(--fs-body); color: var(--ink-3); margin-bottom: .8rem; }
.sp-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.sp-tag { font-size: var(--fs-small); padding: .2rem .7rem; border-radius: 40px; border: 1px solid var(--gold-deep); color: var(--gold-ink); }
.sp-msg { background: var(--cream-panel); border-radius: var(--radius); padding: .9rem 1rem; font-size: var(--fs-body); margin-bottom: 1rem; }
.sp-dl { display: grid; grid-template-columns: auto 1fr; gap: .55rem .9rem; font-size: var(--fs-body); margin-bottom: 1rem; }
.sp-dl dt { color: var(--gold-ink); font-size: var(--fs-small); }
.sp-sched { margin-bottom: 1.2rem; }
.sp-sched h3 { font-size: var(--fs-small); font-family: var(--font-mono); letter-spacing: .1em; color: var(--gold-ink); text-transform: uppercase; margin-bottom: .5rem; }
.sp-sched ul { display: flex; flex-wrap: wrap; gap: .4rem; }
.sp-sched li { font-size: var(--fs-small); padding: .3rem .7rem; border-radius: var(--radius); background: var(--cream-panel); }
.sp-sched time { font-family: var(--font-mono); color: var(--gold-ink); }
.sp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }

/* ============ モバイル上部バー（デスクトップ非表示） ============ */
.topbar { display: none; }

/* ============ モバイル：右レール＝ボトムシート ============ */
.sheet-launch { display: none; }
.sheet { display: none; }

/* ============ モバイル固定CTA（デスクトップ非表示） ============ */
.mcta { display: none; }

/* ============ モーダル（フォーム/汎用） ============ */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal__scrim { position: absolute; inset: 0; background: var(--sheet-scrim); }
.modal__panel {
  position: relative; z-index: 1;
  width: min(460px, 100%); background: var(--cream-hi);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-panel);
  text-align: center;
}
.modal__panel h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .6rem; }
.modal__panel p { color: var(--ink-2); font-size: var(--fs-body); }
.modal__close { margin-top: 1.2rem; }

/* ============ ライトボックス ============ */
.lightbox { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 1.4rem; }
.lightbox[hidden] { display: none; }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(20,16,10,.82); }
.lightbox__stage { position: relative; z-index: 1; max-width: min(900px, 100%); max-height: 86vh; }
.lightbox__stage img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--line); }
.lightbox__cap { text-align: center; color: var(--cream-hi); margin-top: .7rem; font-size: var(--fs-body); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(245,240,227,.14); color: var(--cream-hi);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,240,227,.3);
}
.lightbox__btn:hover { background: rgba(245,240,227,.26); }
.lightbox__prev { left: -4px; }
.lightbox__next { right: -4px; }
.lightbox__close { position: absolute; top: -6px; right: -6px; z-index: 2; }
.lightbox__btn svg { width: 24px; height: 24px; }

/* ============ フッター ============ */
.foot {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: var(--cream-panel);
}
.foot__inner { max-width: 1440px; margin: 0 auto; padding: 2.4rem clamp(1rem, 2.4vw, 2rem); }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
.foot__brand .brand__logo { font-size: 1.5rem; }
.foot__brand p { margin-top: .8rem; font-size: var(--fs-small); color: var(--ink-2); max-width: 40ch; }
.foot__col h2 { font-family: var(--font-mono); font-size: var(--fs-kicker); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .7rem; }
.foot__col ul { display: grid; gap: .5rem; }
.foot__col a { font-size: var(--fs-small); color: var(--ink-2); }
.foot__col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot__bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; }
.foot__bottom small, .foot__bottom p { font-size: var(--fs-small); color: var(--ink-3); }
.foot__demo { font-size: var(--fs-small); color: var(--ink-2); }

/* ============ ページトップ ============ */
.pagetop {
  position: fixed; right: clamp(1rem, 2vw, 1.6rem); bottom: clamp(1rem, 2vw, 1.6rem);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--cream-hi);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-m); z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
}
.pagetop.is-show { opacity: 1; visibility: visible; transform: none; }
.pagetop svg { width: 22px; height: 22px; }

/* フォーム最小（下層で拡張・トップの予約簡易は widget から contact.html へ誘導） */
.field { display: grid; gap: .35rem; margin-bottom: .9rem; }
.field label { font-size: var(--fs-small); font-weight: 600; }
.field input, .field textarea, .field select {
  min-height: 48px; padding: .6rem .8rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream-hi); font-size: var(--fs-body);
}
.field .err { color: #a3341f; font-size: var(--fs-small); }

/* ============ 下層ページ共通 ============ */
.page-head { padding: clamp(1.6rem, 3vw, 2.4rem) 0 1.4rem; border-bottom: 1px solid var(--line-soft); margin-bottom: var(--sec-py); }
.page-head__title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; line-height: 1.2; margin-top: .4rem; }
.page-head__lead { margin-top: .8rem; color: var(--ink-2); font-size: var(--fs-lead); max-width: 60ch; }
.crumbs { display: flex; flex-wrap: wrap; gap: .35rem; font-size: var(--fs-small); color: var(--ink-3); margin-bottom: .8rem; }
.crumbs a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: var(--ink); }
.crumbs span[aria-current] { color: var(--ink-3); }
.empty-msg { padding: 2rem 1rem; text-align: center; color: var(--ink-2); background: var(--cream-hi); border: 1px dashed var(--line); border-radius: var(--radius); }
.center .section:first-of-type { border-top: 0; padding-top: 0; }

/* フィルターチップ */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.chip {
  min-height: 44px; padding: .45rem 1rem;
  font-size: var(--fs-small); font-weight: 600;
  border: 1px solid var(--line); border-radius: 40px;
  background: var(--cream-hi); color: var(--ink-2);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.chip[aria-selected="true"] { background: var(--ink); color: var(--cream-hi); border-color: var(--ink); }
.chip:hover { border-color: var(--gold-deep); }
.chip-static { padding: .35rem .85rem; font-size: var(--fs-small); border: 1px solid var(--gold-deep); color: var(--gold-ink); border-radius: 40px; }

/* cast.html グリッド（中央広め・レール込みでも見やすく） */
.cast-grid--full { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* cast-detail.html */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(1.2rem, 2.5vw, 2rem); align-items: start; }
.detail__main { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.detail__main img { width: 100%; height: 100%; object-fit: cover; }
.detail__subs { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .6rem; }
.detail__subs figure { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.detail__subs img { width: 100%; height: 100%; object-fit: cover; }
.detail__name { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 600; }
.detail__kana { display: block; font-size: var(--fs-body); color: var(--ink-3); font-family: var(--font-body); margin-top: .2rem; }
.detail__sched { margin: 1rem 0; }
.detail__sched h2 { font-family: var(--font-mono); font-size: var(--fs-small); letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .5rem; }
.sp-sched-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.sp-sched-list li { font-size: var(--fs-small); padding: .3rem .7rem; border-radius: var(--radius); background: var(--cream-panel); }
.sp-sched-list time { font-family: var(--font-mono); color: var(--gold-ink); }
.detail__sns { display: flex; align-items: center; gap: .5rem; margin: 1rem 0; }
.detail__sns span { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--gold-ink); margin-right: .3rem; }
.detail__sns .sns { display: inline-flex; gap: .5rem; }
.detail__nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: .6rem; margin-top: 2rem; }

/* schedule.html */
.sched-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.sched-tab {
  min-height: 44px; padding: .4rem .9rem; font-size: var(--fs-small); font-weight: 600;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-hi); color: var(--ink-2);
}
.sched-tab[aria-selected="true"] { background: var(--ink); color: var(--cream-hi); border-color: var(--ink); }
.sched-day__h { font-family: var(--font-display); font-size: var(--fs-h3); margin-bottom: 1rem; }
.sched-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .4rem; border-bottom: 1px solid var(--line-soft); }
.sched-row:first-of-type { border-top: 1px solid var(--line-soft); }
.sched-row:hover { background: var(--shade); }
.sched-row__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.sched-row__kana { font-family: var(--font-body); font-size: var(--fs-small); color: var(--ink-3); margin-left: .5rem; }
.sched-row__time { font-family: var(--font-mono); color: var(--gold-ink); font-size: var(--fs-body); }

/* system.html / recruit.html：料金全表・注記 */
.big-table { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--cream-hi); }
.big-table tr { border-bottom: 1px solid var(--line-soft); }
.big-table tr:last-child { border-bottom: 0; }
.big-table th, .big-table td { padding: .85rem 1rem; text-align: left; }
.big-table th { font-weight: 600; }
.big-table td.unit { color: var(--ink-3); font-family: var(--font-mono); font-size: var(--fs-small); white-space: nowrap; }
.big-table td:last-child { text-align: right; font-family: var(--font-mono); }
.note-list { margin-top: 1rem; display: grid; gap: .4rem; font-size: var(--fs-small); color: var(--ink-3); }
.note-list li { padding-left: 1.1rem; position: relative; }
.note-list li::before { content: "•"; position: absolute; left: .2rem; color: var(--gold-deep); }
.plain-list { display: grid; gap: .5rem; }
.plain-list li { font-size: var(--fs-body); }

/* 来店/応募フロー */
.flow { display: grid; gap: .7rem; }
.flow__item { display: flex; gap: .9rem; align-items: flex-start; background: var(--cream-hi); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: .9rem 1rem; }
.flow__no { flex: 0 0 auto; font-family: var(--font-mono); font-size: var(--fs-small); font-weight: 700; color: var(--gold-ink); padding-top: .1rem; min-width: 4.2em; }
.flow__item b { display: block; font-size: var(--fs-body); margin-bottom: .2rem; }
.flow__item p { font-size: var(--fs-small); color: var(--ink-2); }

/* FAQ アコーディオン */
.faq { border-bottom: 1px solid var(--line-soft); }
.faq:first-child { border-top: 1px solid var(--line-soft); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1rem .3rem; min-height: 48px; font-size: var(--fs-body); font-weight: 600; }
.faq__q:hover { color: var(--gold-ink); }
.faq__ic { font-family: var(--font-mono); font-size: 1.3rem; color: var(--gold-ink); flex: 0 0 auto; }
.faq__a { padding: 0 .3rem 1rem; }
.faq__a p { color: var(--ink-2); font-size: var(--fs-body); }

/* news 記事・ページネーション */
.article__meta { display: flex; gap: .7rem; align-items: center; margin-bottom: .6rem; }
.article__meta time { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--ink-3); }
.article__title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; line-height: 1.25; margin-bottom: 1.2rem; }
.article p { margin-bottom: 1rem; color: var(--ink); }
.pager { display: flex; gap: .5rem; margin-top: 1.6rem; }
.pager__btn { min-width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-hi); font-family: var(--font-mono); font-weight: 700; color: var(--ink-2); }
.pager__btn[aria-selected="true"] { background: var(--ink); color: var(--cream-hi); border-color: var(--ink); }
.related { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: .7rem; }
.related h2 { font-family: var(--font-mono); font-size: var(--fs-kicker); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.related a { font-size: var(--fs-body); }
.related time { color: var(--ink-3); margin-right: .4rem; }

/* フォーム（recruit/contact） */
.form { display: grid; gap: 0; max-width: 620px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
.field__req { color: #a3341f; font-size: var(--fs-small); margin-left: .3rem; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; margin: .4rem 0 1rem; font-size: var(--fs-body); }
.checkbox input { width: 22px; height: 22px; min-height: auto; flex: 0 0 auto; margin-top: .1rem; }
.form textarea { min-height: 120px; resize: vertical; }
.info-dl { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1.2rem; }
.info-dl dt { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--gold-ink); }
.info-dl dd { font-size: var(--fs-body); }
.prose p { margin-bottom: 1rem; color: var(--ink); }
.prose h2 { font-family: var(--font-display); font-size: var(--fs-h3); margin: 1.6rem 0 .6rem; }
.prose ul { display: grid; gap: .4rem; margin: .4rem 0 1rem 1.2rem; list-style: disc; }
.prose ul li { color: var(--ink-2); }

/* 下層のセクション見出し */
.sub-h { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 600; margin-bottom: 1.1rem; }
.sub-lead { color: var(--ink-2); margin-bottom: 1.4rem; max-width: 58ch; }
.access-figure { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.4rem; }
.access-figure img { width: 100%; height: 100%; object-fit: cover; }
