/* =========================================================
   SITE 114 — components.css
   header(固定) / drawer / date-tabs(日付タブ) / filter-chips / search /
   cast card / schedule list / event / menu / gallery+lightbox / form /
   modal / accordion / table / footer / ctabar / notices
   ========================================================= */

/* ---------- レイアウト基礎 ---------- */
.container { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--w-narrow); }

.skip-link {
  position: fixed; left: 8px; top: -60px; z-index: 3000;
  background: var(--c-charcoal); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

.section { padding-block: var(--sp-8); }
.section--alt { background: var(--c-bg-alt); }
.section--band { background: var(--c-bg-band); }
.section__head { max-width: var(--w-narrow); margin-bottom: var(--sp-6); }
.section__eyebrow {
  display: inline-block; font-size: var(--fs-deco); font-weight: 700; letter-spacing: .08em;
  color: var(--c-accent-strong); text-transform: uppercase; margin-bottom: var(--sp-2);
}
.section__title { font-size: var(--fs-h2); margin-bottom: var(--sp-2); }
.section__lead { color: var(--c-ink-muted); font-size: var(--fs-body-lg); }
.section__foot { margin-top: var(--sp-6); }

.no-js .reveal { opacity: 1; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: var(--tap); padding: 0 var(--sp-5); border-radius: var(--r);
  font-weight: 700; font-size: var(--fs-label); text-decoration: none; text-align: center;
  border: 1.5px solid transparent; cursor: pointer; line-height: 1.3;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-hover); }
.btn--ghost { background: #fff; color: var(--c-accent-strong); border-color: var(--c-line-strong); }
.btn--ghost:hover { background: var(--c-bg-alt); }
.btn--charcoal { background: var(--c-charcoal); color: #fff; }
.btn--charcoal:hover { background: #3a4457; }
.btn--sm { min-height: 38px; padding: 0 var(--sp-4); font-size: var(--fs-note); }
.btn--lg { min-height: 52px; padding: 0 var(--sp-6); font-size: var(--fs-body-lg); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---------- ヘッダー（固定） ---------- */
.hdr {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  height: var(--h-header); background: rgba(255, 255, 255, .96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
}
.hdr__in {
  max-width: var(--w-container); margin-inline: auto; padding-inline: var(--gutter);
  height: 100%; display: flex; align-items: center; gap: var(--sp-5);
}
.hdr__brand { display: flex; flex-direction: column; gap: 1px; text-decoration: none; margin-right: auto; }
.hdr__brand-name { font-family: var(--f-latin); font-weight: 800; font-size: 1.25rem; letter-spacing: .02em; color: var(--c-charcoal); }
.hdr__brand-sub { font-size: 11px; color: var(--c-ink-muted); letter-spacing: .04em; }
.hdr__nav { display: none; }
.hdr__nav ul { display: flex; gap: var(--sp-5); }
.hdr__nav a {
  display: inline-block; padding: 8px 2px; font-size: var(--fs-label); font-weight: 600; text-decoration: none;
  color: var(--c-ink); white-space: nowrap; border-bottom: 2px solid transparent;
}
.hdr__nav a:hover, .hdr__nav a[aria-current] { color: var(--c-accent-strong); border-color: var(--c-accent); }
.hdr__acts { display: flex; align-items: center; gap: var(--sp-3); }
.hdr__tel { display: none; flex-direction: column; text-decoration: none; text-align: right; line-height: 1.2; }
.hdr__tel-label { font-size: 11px; color: var(--c-ink-muted); }
.hdr__tel-num { font-weight: 700; color: var(--c-charcoal); font-size: var(--fs-label); }
.hdr__cta-short { display: inline; }
.hdr__cta-full { display: none; }
.hdr__menu {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  width: var(--tap); height: var(--tap); justify-content: center; border-radius: var(--r-sm);
}
.hdr__menu-bars, .hdr__menu-bars span { display: block; width: 22px; height: 2px; background: var(--c-charcoal); position: relative; }
.hdr__menu-bars::before, .hdr__menu-bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--c-charcoal); }
.hdr__menu-bars::before { top: -6px; }
.hdr__menu-bars::after { top: 6px; }
.hdr__menu-text { font-size: 10px; font-weight: 700; }

/* ---------- ドロワー ---------- */
.drawer { position: fixed; inset: 0; z-index: 900; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(44, 52, 66, .5); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
  background: #fff; box-shadow: var(--sh-2); display: flex; flex-direction: column;
  padding: var(--sp-5); gap: var(--sp-5); overflow-y: auto;
}
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__title { font-weight: 800; font-size: 1.05rem; }
.drawer__close { min-height: var(--tap); padding-inline: var(--sp-3); font-weight: 700; border-radius: var(--r-sm); }
.drawer__nav a {
  display: block; padding: 12px 4px; font-size: 1.05rem; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--c-line); color: var(--c-ink);
}
.drawer__nav a[aria-current] { color: var(--c-accent-strong); }
.drawer__actions { display: flex; flex-direction: column; gap: var(--sp-3); }
.drawer__info { display: grid; grid-template-columns: auto 1fr; gap: 6px var(--sp-3); font-size: var(--fs-note); }
.drawer__info dt { color: var(--c-ink-muted); }
.drawer__info dd { font-weight: 600; }

/* ---------- パンくず ---------- */
.crumbs { padding-block: var(--sp-3); font-size: var(--fs-note); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; color: var(--c-ink-muted); }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 4px; }
.crumbs a { text-decoration: underline; }
.crumbs [aria-current] { color: var(--c-charcoal); font-weight: 700; }

/* ---------- 日付タブ（DATE TABS。固定ヘッダー直下に sticky） ---------- */
.datetabs {
  position: sticky; top: var(--h-header); z-index: 400;
  background: #fff; border-bottom: 1px solid var(--c-line);
}
.datetabs__in { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--gutter); }
.datetabs__row { display: flex; align-items: stretch; gap: 6px; padding-block: 8px; }
.datetabs__scroll { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; flex: 1 1 auto; }
.datetabs__scroll::-webkit-scrollbar { display: none; }
.datetab {
  flex: 0 0 auto; min-width: 64px; min-height: var(--tap); padding: 6px 10px; border-radius: var(--r);
  border: 1.5px solid var(--c-line); background: #fff; display: flex; flex-direction: column; align-items: center;
  gap: 2px; cursor: pointer;
}
.datetab__dow { font-size: 11px; color: var(--c-ink-muted); font-weight: 700; }
.datetab__day { font-size: 1.05rem; font-weight: 800; font-family: var(--f-latin); }
.datetab__mark { font-size: 10px; font-weight: 700; color: var(--c-accent-strong); }
.datetab[aria-selected="true"] { background: var(--c-accent); border-color: var(--c-accent); }
.datetab[aria-selected="true"] .datetab__dow,
.datetab[aria-selected="true"] .datetab__day { color: #fff; }
.datetab[aria-selected="true"] .datetab__mark { color: var(--c-lblue); }
.datetab.is-closed { opacity: .55; }
.datetab.is-today { border-color: var(--c-accent); }
.datetab.is-today .datetab__mark { color: var(--c-accent-strong); }
.datetabs__week {
  flex: 0 0 auto; min-height: var(--tap); padding: 0 var(--sp-3); border-radius: var(--r);
  border: 1.5px solid var(--c-line-strong); background: var(--c-bg-alt); font-weight: 700; font-size: var(--fs-note);
  white-space: nowrap;
}
.datetabs__week[aria-pressed="true"] { background: var(--c-charcoal); color: #fff; border-color: var(--c-charcoal); }

/* 週間ボトムシート（モバイルで7日分から選ぶ） */
.weeksheet { position: fixed; inset: 0; z-index: 920; display: flex; align-items: flex-end; justify-content: center; }
.weeksheet::before { content: ""; position: absolute; inset: 0; background: rgba(44, 52, 66, .5); }
.weeksheet__panel {
  position: relative; background: #fff; width: 100%; max-width: 560px; border-radius: 16px 16px 0 0;
  padding: var(--sp-5); max-height: 82vh; overflow-y: auto; box-shadow: var(--sh-2);
}
.weeksheet__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.weeksheet__title { font-weight: 800; font-size: 1.05rem; }
.weeksheet__close { min-height: var(--tap); padding-inline: var(--sp-3); font-weight: 700; }
.weeksheet__list { display: flex; flex-direction: column; gap: 8px; }
.weeksheet__item {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  min-height: var(--tap); padding: 10px var(--sp-4); border: 1.5px solid var(--c-line); border-radius: var(--r);
  text-align: left; width: 100%;
}
.weeksheet__item[aria-pressed="true"] { border-color: var(--c-accent); background: var(--c-lblue-050); }
.weeksheet__item.is-closed { color: var(--c-ink-muted); }

/* ---------- ステータスカード（TODAY SUMMARY） ---------- */
.today {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3);
}
.today__card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: var(--sp-4);
  display: flex; flex-direction: column; gap: 4px;
}
.today__card--status { background: var(--c-charcoal); color: #fff; border-color: var(--c-charcoal); }
.today__label { font-size: var(--fs-note); font-weight: 700; letter-spacing: .04em; opacity: .8; }
.today__value { font-size: 1.25rem; font-weight: 800; }
.today__sub { font-size: var(--fs-note); opacity: .85; }
.today__badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; padding: 3px 10px;
  border-radius: 999px; font-size: var(--fs-note); font-weight: 700;
}
.today__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.today__badge--open { background: var(--c-ok-bg); color: #1f6d3a; }
.today__badge--closed { background: var(--c-warn-bg); color: #8a5a10; }

/* ---------- フィルターバー（時間帯フィルター / CAST検索） ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-bottom: var(--sp-5); }
.chipgroup { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 40px; padding: 0 var(--sp-4); border-radius: 999px; border: 1.5px solid var(--c-line-strong);
  background: #fff; font-size: var(--fs-note); font-weight: 700; color: var(--c-ink);
}
.chip[aria-pressed="true"] { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.searchbox { position: relative; flex: 1 1 220px; min-width: 200px; }
.searchbox input {
  width: 100%; min-height: var(--tap); padding: 0 var(--sp-4); border-radius: var(--r);
  border: 1.5px solid var(--c-line-strong); font-size: var(--fs-body); background: #fff;
}
.searchbox input:focus-visible { border-color: var(--c-accent); }
.searchbox__clear {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  min-height: 34px; min-width: 34px; border-radius: var(--r-sm); font-weight: 700;
}

/* ---------- CAST カード / 出勤一覧 ---------- */
.castgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.castcard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r);
  overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--sh-1);
}
.castcard__media { aspect-ratio: 3 / 4; min-width: 0; overflow: hidden; background: var(--c-bg-alt); }
.castcard__media img { width: 100%; height: 100%; object-fit: cover; }
.castcard__body { padding: var(--sp-3) var(--sp-4) var(--sp-4); display: flex; flex-direction: column; gap: 4px; }
.castcard__name { font-weight: 800; font-size: 1.05rem; }
.castcard__role { font-size: var(--fs-note); color: var(--c-ink-muted); }
.castcard__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.castcard__tag { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: var(--c-bg-alt); color: var(--c-accent-strong); font-weight: 700; }
.castcard__hours { margin-top: 6px; font-size: var(--fs-note); font-weight: 700; color: var(--c-charcoal); }

/* 出勤一覧（普通のシフト表。カード収集風にしない） */
.schedulelist { display: flex; flex-direction: column; border-top: 1px solid var(--c-line); }
.schedulerow {
  display: grid; grid-template-columns: 56px 1fr auto auto; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-2); border-bottom: 1px solid var(--c-line);
}
.schedulerow__avatar { width: 56px; height: 56px; border-radius: var(--r-sm); overflow: hidden; background: var(--c-bg-alt); }
.schedulerow__avatar img { width: 100%; height: 100%; object-fit: cover; }
.schedulerow__name { font-weight: 800; }
.schedulerow__role { font-size: var(--fs-note); color: var(--c-ink-muted); }
.schedulerow__time { font-weight: 700; font-size: var(--fs-label); white-space: nowrap; }
.schedulerow__link { font-size: var(--fs-note); white-space: nowrap; }
.schedule__empty {
  padding: var(--sp-6); text-align: center; color: var(--c-ink-muted); border: 1px dashed var(--c-line-strong);
  border-radius: var(--r); background: var(--c-bg-alt);
}
.schedule__daymeta { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-3); flex-wrap: wrap; }
.schedule__daytitle { font-size: 1.1rem; font-weight: 800; }
.schedule__daycount { font-size: var(--fs-note); color: var(--c-ink-muted); }

/* ---------- イベント ---------- */
.eventgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.eventcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; text-decoration: none; color: inherit; }
.eventcard__media { aspect-ratio: 16 / 9; min-width: 0; background: var(--c-bg-alt); }
.eventcard__media img { width: 100%; height: 100%; object-fit: cover; }
.eventcard__body { padding: var(--sp-4); display: flex; flex-direction: column; gap: 6px; }
.eventcard__date { font-size: var(--fs-note); font-weight: 800; color: var(--c-accent-strong); }
.eventcard__title { font-size: 1.05rem; font-weight: 800; }
.eventcard__cat { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: var(--c-bg-band); font-weight: 700; align-self: flex-start; }
.eventcard--past { opacity: .6; }

/* ---------- メニュー ---------- */
.menutabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-5); }
.menugrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.menucard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; }
.menucard__media { aspect-ratio: 1 / 1; min-width: 0; background: var(--c-bg-alt); }
.menucard__media img { width: 100%; height: 100%; object-fit: cover; }
.menucard__body { padding: var(--sp-4); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.menucard__name { font-weight: 800; }
.menucard__price { font-weight: 800; color: var(--c-accent-strong); }
.menucard__desc { font-size: var(--fs-note); color: var(--c-ink-muted); }
.menucard__allergen { font-size: 12px; color: var(--c-ink-muted); }

/* ---------- 料金・表 ---------- */
.pricetable { width: 100%; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; }
.pricetable th, .pricetable td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--c-line); font-size: var(--fs-body); }
.pricetable thead th { background: var(--c-bg-alt); font-size: var(--fs-note); }
.pricetable tr:last-child td { border-bottom: 0; }
.pricecards { display: none; }
.pricecard { border: 1px solid var(--c-line); border-radius: var(--r); padding: var(--sp-4); display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--sp-3); }
.pricecard__row { display: flex; justify-content: space-between; gap: var(--sp-3); font-size: var(--fs-note); }
.pricecard__name { font-weight: 700; }
.pricecard__price { font-weight: 800; color: var(--c-accent-strong); }
.plan { border: 1px solid var(--c-line); border-radius: var(--r); padding: var(--sp-5); background: #fff; }
.plan__name { font-size: 1.1rem; font-weight: 800; }
.plan__price { font-size: 1.5rem; font-weight: 800; color: var(--c-accent-strong); }
.plan__unit { font-size: var(--fs-note); color: var(--c-ink-muted); }
.exampletable { display: flex; flex-direction: column; gap: 4px; }
.exampletable__row { display: flex; justify-content: space-between; font-size: var(--fs-note); padding-block: 2px; }
.exampletable__total { display: flex; justify-content: space-between; font-weight: 800; border-top: 1px solid var(--c-line); margin-top: 6px; padding-top: 6px; }

/* ---------- ギャラリー / ライトボックス ---------- */
.gallerygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.gallerygrid button { display: block; aspect-ratio: 4 / 3; min-width: 0; border-radius: var(--r-sm); overflow: hidden; background: var(--c-bg-alt); }
.gallerygrid img { width: 100%; height: 100%; object-fit: cover; }
.lightbox { position: fixed; inset: 0; z-index: 950; background: rgba(20, 24, 32, .92); display: flex; flex-direction: column; }
.lightbox__top { display: flex; justify-content: flex-end; padding: var(--sp-3); }
.lightbox__close { color: #fff; font-weight: 700; min-height: var(--tap); padding-inline: var(--sp-4); }
.lightbox__stage { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 var(--sp-5); min-height: 0; }
.lightbox__stage img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox__nav { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4); color: #fff; gap: var(--sp-3); }
.lightbox__nav button { color: #fff; min-height: var(--tap); padding-inline: var(--sp-4); font-weight: 700; border: 1px solid rgba(255,255,255,.3); border-radius: var(--r); }
.lightbox__caption { font-size: var(--fs-note); }

/* ---------- FAQ / アコーディオン ---------- */
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); padding: var(--sp-4) 4px; font-weight: 700; text-align: left; min-height: var(--tap); }
.acc__mark { flex: none; width: 20px; height: 20px; position: relative; }
.acc__mark::before, .acc__mark::after { content: ""; position: absolute; background: var(--c-charcoal); }
.acc__mark::before { width: 14px; height: 2px; left: 3px; top: 9px; }
.acc__mark::after { width: 2px; height: 14px; left: 9px; top: 3px; transition: transform .15s ease; }
.acc__btn[aria-expanded="true"] .acc__mark::after { transform: scaleY(0); }
.acc__panel { padding-bottom: var(--sp-4); color: var(--c-ink-muted); }

/* ---------- ノーティス ---------- */
.notice { border: 1px solid var(--c-warn-line); background: var(--c-warn-bg); border-radius: var(--r); padding: var(--sp-4); display: flex; flex-direction: column; gap: 4px; }
.notice__label { font-weight: 800; font-size: var(--fs-note); }
.noticelist { display: flex; flex-direction: column; gap: var(--sp-3); }

/* ---------- カードグリッド汎用（求人・アクセス動線など） ---------- */
.card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }

/* ---------- ページヘッド（下層ページ見出し） ---------- */
.page-head { padding-block: var(--sp-6) var(--sp-5); }
.page-head__title { font-size: var(--fs-h1); margin-bottom: var(--sp-2); }
.page-head__lead { color: var(--c-ink-muted); font-size: var(--fs-body-lg); max-width: var(--w-narrow); }

/* ---------- フォーム ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.field label { font-weight: 700; font-size: var(--fs-label); }
.field__req { color: var(--c-error); font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea {
  min-height: var(--tap); padding: 0 var(--sp-3); border: 1.5px solid var(--c-line-strong); border-radius: var(--r-sm);
  background: #fff; font-size: var(--fs-body);
}
.field textarea { min-height: 120px; padding-block: var(--sp-2); }
.field__error { color: var(--c-error); font-size: var(--fs-note); font-weight: 700; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: var(--c-error); }
.form__summary { border: 1.5px solid var(--c-error); background: var(--c-error-bg); border-radius: var(--r); padding: var(--sp-4); margin-bottom: var(--sp-5); }
.form__summary a { color: var(--c-error); text-decoration: underline; font-weight: 700; }
.form__confirm {
  border: 1.5px solid var(--c-line-strong); border-radius: var(--r); padding: var(--sp-5); margin-top: var(--sp-5);
  scroll-margin-bottom: 190px;
}
.form__confirm-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.form__confirm-list > div { display: flex; flex-direction: column; gap: 2px; border-bottom: 1px dashed var(--c-line); padding-bottom: var(--sp-2); }
.form__confirm-list dt { font-size: var(--fs-note); color: var(--c-ink-muted); }
.form__confirm-list dd { font-weight: 700; }
.form__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- モーダル（デモリンク） ---------- */
.modal { position: fixed; inset: 0; z-index: 950; display: flex; align-items: center; justify-content: center; padding: var(--sp-4); }
.modal::before { content: ""; position: absolute; inset: 0; background: rgba(44, 52, 66, .55); }
.modal__panel { position: relative; background: #fff; border-radius: var(--r); padding: var(--sp-6); max-width: 420px; width: 100%; box-shadow: var(--sh-2); }
.modal__title { font-size: 1.1rem; margin-bottom: var(--sp-3); }
.modal__body { color: var(--c-ink-muted); margin-bottom: var(--sp-5); }
.modal__close { min-height: var(--tap); padding-inline: var(--sp-5); font-weight: 700; }

/* ---------- ヒーロー（短い） ---------- */
.hero { padding-block: var(--sp-6) var(--sp-5); background: linear-gradient(180deg, var(--c-lblue-050), #fff); }
.hero__in { display: flex; flex-direction: column; gap: var(--sp-3); }
.hero__eyebrow { font-size: var(--fs-deco); font-weight: 800; letter-spacing: .08em; color: var(--c-accent-strong); text-transform: uppercase; }
.hero__title { font-size: var(--fs-hero); }
.hero__lead { color: var(--c-ink-muted); font-size: var(--fs-body-lg); max-width: 640px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); font-size: var(--fs-note); color: var(--c-ink-muted); }
.hero__meta strong { color: var(--c-charcoal); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- フッター ---------- */
.ftr { background: var(--c-charcoal); color: #e9ecf4; padding-block: var(--sp-8) var(--sp-6); }
.ftr__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-6); padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,.14); }
.ftr__brand-name { font-family: var(--f-latin); font-weight: 800; font-size: 1.3rem; color: #fff; }
.ftr__brand-sub { font-size: var(--fs-note); color: #b9c2d6; margin-bottom: var(--sp-3); }
.ftr__info { display: grid; grid-template-columns: auto 1fr; gap: 4px var(--sp-3); font-size: var(--fs-note); }
.ftr__info dt { color: #9aa5bd; }
.ftr__info dd a { color: #fff; text-decoration: underline; }
.ftr__navtitle { font-weight: 700; font-size: var(--fs-note); color: #9aa5bd; margin-bottom: var(--sp-2); }
.ftr__nav a { display: block; padding: 6px 0; text-decoration: none; color: #dfe4f0; font-size: var(--fs-note); }
.ftr__notices { padding-block: var(--sp-5); display: flex; flex-direction: column; gap: 6px; font-size: var(--fs-note); color: #c4cbdc; }
.ftr__bottom { display: flex; flex-direction: column; gap: var(--sp-2); font-size: var(--fs-note); color: #9aa5bd; }
.to-top { color: #fff; text-decoration: underline; align-self: flex-start; }

/* ---------- 固定CTA（TODAY/CAST/MENU/ACCESS） ---------- */
.ctabar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 480; background: #fff; border-top: 1px solid var(--c-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.ctabar__list { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; }
.ctabar__item { }
.ctabar__item a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: var(--h-ctabar); text-decoration: none; color: var(--c-ink-muted); font-size: 11px; font-weight: 700;
}
.ctabar__item--wide { }
.ctabar__item--primary a { color: var(--c-accent-strong); }
.ctabar__item a[aria-current] { color: var(--c-accent-strong); }
.ctabar__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* ---------- 終端CTA ---------- */
.endcta { background: var(--c-charcoal); color: #fff; padding-block: var(--sp-7); }
.endcta__in { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; }
.endcta__title { font-size: var(--fs-h2); margin-bottom: var(--sp-2); }
.endcta__text { color: #c4cbdc; max-width: 480px; }
.endcta__acts { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ---------- noscript ---------- */
.noscript-box { max-width: var(--w-narrow); margin: var(--sp-7) auto; padding: var(--sp-5); border: 1px solid var(--c-line); border-radius: var(--r); }
.noscript-box dl { display: grid; grid-template-columns: auto 1fr; gap: 6px var(--sp-3); margin-block: var(--sp-4); }
.noscript-box ul { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.noscript-box a { text-decoration: underline; }

/* ---------- 空・エラー ---------- */
.empty { text-align: center; padding: var(--sp-7); color: var(--c-ink-muted); }
.empty__title { font-weight: 800; color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.callout { border: 1px solid var(--c-line); border-radius: var(--r); padding: var(--sp-6); background: var(--c-bg-alt); }

.notes { font-size: var(--fs-note); color: var(--c-ink-muted); }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; font-size: var(--fs-note); font-weight: 700; }
.badge--open { background: var(--c-ok-bg); color: #1f6d3a; }
.badge--closed { background: var(--c-warn-bg); color: #8a5a10; }
