/* SITE 119 — CONCAFE RECRUIT FOCUS / components
   header / mode bar（来店・求人の切替）/ drawer / breadcrumb / button / card /
   cast card / tabs / chips / accordion / table / notice / modal / lightbox /
   form / footer / mobile CTA / day-flow（一日の流れ） */

/* ============ base ============ */
body {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
p { max-width: 74ch; }
a { text-underline-offset: 0.2em; }

.num {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -200px;
  z-index: 200;
  background: var(--c-charcoal);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-s);
  font-weight: 700;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

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

/* ============ eyebrow / section ============ */
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  color: var(--c-purple-deep);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.eyebrow--pink { color: var(--c-pink-deep); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--c-ivory-2); }
.section--line { border-top: 1px solid var(--c-line); }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.section__title { font-size: var(--fs-h2); letter-spacing: 0.01em; }
.section__title--sm { font-size: var(--fs-h3); }
.section__lead {
  color: var(--c-muted);
  font-size: var(--fs-body);
  margin-top: var(--sp-2);
}

/* ============ header（常時不透明の sticky ヘッダー・実測 72px） ============ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 6px var(--gutter);
  min-height: var(--header-h);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex: none;
  min-height: 44px;
  min-width: 0;
}
.header__mark { flex: none; width: 28px; height: 28px; }
.header__brand-text { display: grid; gap: 0; min-width: 0; }
.header__brand-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  white-space: nowrap;
}
.header__brand-sub {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  white-space: nowrap;
}
.header__brand[aria-current="page"] .header__brand-name { color: var(--c-purple-deep); }

.header__nav { margin-inline-start: auto; min-width: 0; }
.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 14px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-nav);
  white-space: nowrap;
  text-decoration: none;
  color: var(--c-ink);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header__nav a:hover { color: var(--c-purple-deep); border-bottom-color: var(--c-purple); }
.header__nav a[aria-current="page"] { color: var(--c-purple-deep); border-bottom-color: var(--c-purple); font-weight: 700; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: none;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 44px;
  background: var(--c-ivory);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  color: var(--c-ink);
}
.header__burger span {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.header__burger span::before,
.header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.header__burger span::before { top: -6px; }
.header__burger span::after { top: 6px; }

/* ============ mode bar（来店 / 求人 切替。全ページ常設） ============
   ヘッダー直下の帯。いま見ている内容と、戻し方（もう一方のボタン）を
   同じ場所に置き続ける。768px以上ではヘッダー直下へ sticky で貼り付け、
   スクロール位置に関わらず切替へ手が届くようにする。 */
.mode-bar {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory-2);
}
@media (min-width: 768px) {
  .mode-bar {
    position: sticky;
    top: var(--header-h);
    z-index: var(--z-mode-bar);
  }
}
body[data-audience="recruit"] .mode-bar {
  background: var(--c-pink-tint);
  border-bottom-color: var(--c-pink);
}
.mode-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-4);
  padding-block: var(--sp-2);
  min-height: var(--mode-bar-h);
}
.mode-bar__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-note);
  font-weight: 700;
  color: var(--c-mode);
  flex: none;
}
.mode-bar__label b { font-size: var(--fs-body); }
.mode-bar__note {
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  line-height: 1.6;
  flex: 1 1 260px;
  min-width: 0;
  margin: 0;
  max-width: none;
}

.aud-switch {
  display: inline-flex;
  align-items: stretch;
  flex: none;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  overflow: hidden;
  background: var(--c-card);
}
.aud-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  padding: 6px 16px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--c-line-strong);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-ink-2);
  white-space: nowrap;
}
.aud-switch__btn:last-child { border-right: 0; }
.aud-switch__btn:hover { color: var(--c-ink); background: var(--c-ivory-2); }
.aud-switch__btn[aria-pressed="true"] {
  background: var(--c-mode);
  color: var(--c-on-accent);
}
.aud-switch__btn[aria-pressed="true"]:hover { background: var(--c-mode); color: var(--c-on-accent); }
.aud-switch__btn[aria-pressed="true"]::before { content: "●"; font-size: 0.6em; }

.drawer__switch {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-4) 0;
}
.drawer__switch .aud-switch { display: flex; }
.drawer__switch .aud-switch__btn { flex: 1 1 50%; }
.drawer__switch-label { font-size: var(--fs-note); font-weight: 700; color: var(--c-muted); }

/* ============ drawer ============ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(48, 48, 56, 0.5);
  z-index: var(--z-drawer);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  z-index: calc(var(--z-drawer) + 1);
  background: var(--c-ivory);
  border-left: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--sp-6));
  box-shadow: var(--sh-2);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-line);
}
.drawer__title { font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; }
.drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  background: var(--c-ivory);
  color: var(--c-ink);
  font-size: 1.25rem;
  line-height: 1;
}
.drawer__nav { padding: var(--sp-2) var(--sp-4); }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 52px;
  padding: 4px 0;
  font-size: var(--fs-body);
  text-decoration: none;
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}
.drawer__nav a[aria-current="page"] { color: var(--c-purple-deep); font-weight: 700; }
.drawer__nav a .en {
  font-size: var(--fs-note);
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.drawer__foot {
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-3);
}
.drawer__info {
  font-size: var(--fs-note);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--r-s);
  border: 1px solid transparent;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--primary { background: var(--c-purple-deep); color: var(--c-on-accent); border-color: var(--c-purple-deep); }
.btn--primary:hover { background: #472f6e; border-color: #472f6e; }
.btn--apply { background: var(--c-pink-deep); color: var(--c-on-accent); border-color: var(--c-pink-deep); }
.btn--apply:hover { background: #832f49; border-color: #832f49; }
.btn--outline { background: var(--c-card); color: var(--c-ink); border-color: var(--c-line-strong); }
.btn--outline:hover { border-color: var(--c-purple); color: var(--c-purple-deep); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line-strong); }
.btn--ghost:hover { border-color: var(--c-ink); }
.btn--sm { min-height: 44px; padding: 10px 14px; font-size: var(--fs-label); }
.btn--block { width: 100%; }
.btn--lg { min-height: 52px; padding: 14px 26px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-purple-deep);
  text-decoration: underline;
  white-space: nowrap;
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { color: var(--c-ink); }

/* ============ breadcrumb ============ */
.breadcrumb {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-note);
  color: var(--c-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: "/"; color: var(--c-line-strong); }
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 2px;
  text-decoration: underline;
  color: var(--c-muted);
}
.breadcrumb a:hover { color: var(--c-purple-deep); }
.breadcrumb [aria-current="page"] { color: var(--c-ink); }

/* ============ page head ============ */
.page-head {
  padding-block: clamp(26px, 3.6vw, 44px);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ivory);
}
.page-head__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}
.page-head__lead {
  margin-top: var(--sp-3);
  color: var(--c-ink-2);
  font-size: var(--fs-body-lg);
}

/* ============ card / grid ============ */
.card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
  overflow: hidden;
}

.grid { display: grid; gap: var(--sp-4); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ============ cast card ============ */
.cast-card {
  display: flex;
  flex-direction: column;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cast-card:hover { border-color: var(--c-purple); box-shadow: var(--sh-1); }
.cast-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  min-width: 0;
  background: var(--c-ivory-3);
}
.cast-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cast-card__badges {
  position: absolute;
  left: 6px;
  top: 6px;
  right: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cast-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--r-s);
  background: var(--c-purple-deep);
  color: var(--c-on-accent);
  font-size: var(--fs-note);
  font-weight: 700;
  line-height: 1.4;
}
.cast-card__badge--new { background: var(--c-charcoal); }
.cast-card__badge--live { background: var(--c-ok); }
.cast-card__body { padding: var(--sp-3); display: grid; gap: 4px; }
.cast-card__name { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; color: var(--c-ink); }
.cast-card__role { font-size: var(--fs-note); color: var(--c-muted); }
.cast-card__time {
  font-size: var(--fs-note);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.5;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.cast-card__time span { font-weight: 400; color: var(--c-muted); }
.cast-card__time--off { color: var(--c-muted); font-weight: 400; }
.cast-card__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 2px; }
.tag {
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  background: var(--c-ivory-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-s);
  padding: 2px 7px;
  line-height: 1.4;
}

/* ============ tabs ============ */
.tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.tabs__btn {
  flex: none;
  min-height: 48px;
  padding: 10px 16px;
  background: var(--c-card);
  color: var(--c-ink);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  font-size: var(--fs-label);
  font-weight: 600;
  white-space: nowrap;
}
.tabs__btn[aria-selected="true"] {
  background: var(--c-charcoal);
  color: #fff;
  border-color: var(--c-charcoal);
  font-weight: 700;
}
.tabs__btn[aria-selected="true"]::before { content: "● "; font-size: 0.7em; vertical-align: 0.15em; }
.tabs--pink .tabs__btn[aria-selected="true"] { background: var(--c-pink-deep); border-color: var(--c-pink-deep); color: var(--c-on-accent); }

/* ============ chips ============ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.chip {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--r-s);
  border: 1px solid var(--c-line-strong);
  background: var(--c-card);
  color: var(--c-ink);
  font-size: var(--fs-label);
}
.chip:hover { border-color: var(--c-purple); }
.chip[aria-pressed="true"] {
  background: var(--c-purple-tint);
  border-color: var(--c-purple);
  color: var(--c-purple-deep);
  font-weight: 700;
}
.chip[aria-pressed="true"]::before { content: "✓ "; }

/* ============ table ============ */
.table-wrap { overflow-x: auto; }
.table { min-width: 480px; font-size: var(--fs-body); background: var(--c-card); }
.table caption {
  text-align: left;
  font-size: var(--fs-note);
  color: var(--c-muted);
  padding-bottom: var(--sp-2);
}
.table th,
.table td {
  border-bottom: 1px solid var(--c-line);
  padding: 13px var(--sp-4);
  text-align: left;
  line-height: var(--lh-dense);
  vertical-align: top;
}
.table thead th {
  background: var(--c-ivory-2);
  font-weight: 700;
  color: var(--c-ink);
  border-bottom-color: var(--c-line-strong);
}
.table td.num,
.table th.num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* ============ accordion ============ */
.acc { border-top: 1px solid var(--c-line); }
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 13px 4px;
  background: transparent;
  border: 0;
  color: var(--c-ink);
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: left;
  line-height: var(--lh-heading);
}
.acc__btn .mark {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--c-purple);
  border-radius: var(--r-s);
  color: var(--c-purple-deep);
  font-size: 1rem;
  line-height: 1;
}
.acc__btn[aria-expanded="true"] .mark::before { content: "−"; }
.acc__btn[aria-expanded="false"] .mark::before { content: "＋"; font-size: 0.75rem; }
.acc__panel { padding: 0 4px var(--sp-4); }
.acc__panel > * + * { margin-top: var(--sp-3); }

/* ============ notice ============ */
.notice {
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-purple);
  border-radius: var(--r-s);
  background: var(--c-card);
  padding: var(--sp-4);
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  line-height: 1.7;
}
.notice--pink { border-left-color: var(--c-pink); }
.notice strong { color: var(--c-ink); }
.notice ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }
.notice li + li { margin-top: 4px; }
.notice p { max-width: none; }

/* ============ day-flow（一日の流れ） ============ */
.day-flow {
  display: grid;
  gap: var(--sp-3);
  counter-reset: dayflow;
}
.day-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
}
.day-flow__time {
  flex: none;
  min-width: 5.4em;
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--c-purple-deep);
  font-variant-numeric: tabular-nums lining-nums;
}
.day-flow__title { font-size: var(--fs-body); font-weight: 700; margin-bottom: 4px; }
.day-flow__text { color: var(--c-ink-2); font-size: var(--fs-note); max-width: none; }

/* ============ role card（職種）============ */
.role-cards { display: grid; gap: var(--sp-4); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.role-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}
.role-card__name { font-size: var(--fs-h4); font-weight: 700; }
.role-card__wage { font-size: var(--fs-body-lg); font-weight: 700; color: var(--c-pink-deep); }
.role-card__note { font-size: var(--fs-note); color: var(--c-muted); }
.role-card__summary { color: var(--c-ink-2); font-size: var(--fs-note); max-width: none; }
.role-card__items { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 2px; }

/* ============ recruit stats ============ */
.recruit-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.recruit-stat {
  background: var(--c-pink-tint);
  border: 1px solid var(--c-pink);
  border-radius: var(--r-m);
  padding: var(--sp-3) var(--sp-4);
}
.recruit-stat__label { font-size: var(--fs-note); color: var(--c-pink-deep); font-weight: 700; }
.recruit-stat__value { font-size: var(--fs-stat); font-weight: 700; color: var(--c-ink); margin-top: 2px; }

/* ============ modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: end center;
  background: rgba(48, 48, 56, 0.52);
}
@media (min-width: 768px) {
  .modal { place-items: center; padding: var(--sp-5); }
}
.modal__dialog {
  width: min(620px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background: var(--c-ivory);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m) var(--r-m) 0 0;
  padding: var(--sp-5) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--sp-6));
  box-shadow: var(--sh-2);
}
@media (min-width: 768px) {
  .modal__dialog { border-radius: var(--r-m); padding-bottom: var(--sp-6); }
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.modal__title { font-size: var(--fs-h3); }
.modal__close {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  background: var(--c-ivory);
  color: var(--c-ink);
  font-size: 1.25rem;
  line-height: 1;
}
.modal__body > * + * { margin-top: var(--sp-4); }
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.modal__actions .btn { flex: 1 1 200px; }

/* ============ lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(24, 22, 28, 0.95);
  color: #ffffff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--sp-3) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--sp-4));
}
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.lightbox__count { font-size: var(--fs-note); color: #e6e0ee; }
.lightbox .modal__close { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.5); }
.lightbox__stage {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: var(--sp-3) 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--r-s);
}
.lightbox__caption {
  text-align: center;
  font-size: var(--fs-body);
  color: #ffffff;
  padding-top: var(--sp-2);
  max-width: none;
}
.lightbox__nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
}
.lightbox__nav button {
  min-width: 56px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-s);
  background: transparent;
  color: #ffffff;
  font-size: var(--fs-body);
}

/* ============ form ============ */
.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: 6px; }
.field__label {
  font-size: var(--fs-label);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.field__req {
  font-size: var(--fs-note);
  background: var(--c-purple-deep);
  color: var(--c-on-accent);
  border-radius: var(--r-s);
  padding: 2px 8px;
  font-weight: 700;
}
.field__opt {
  font-size: var(--fs-note);
  border: 1px solid var(--c-line-strong);
  color: var(--c-muted);
  border-radius: var(--r-s);
  padding: 2px 8px;
}
.field__hint { font-size: var(--fs-note); color: var(--c-muted); line-height: 1.6; }
.field input,
.field select,
.field textarea,
.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  color: var(--c-ink);
  font-size: var(--fs-body);
}
.field textarea { min-height: 140px; line-height: 1.7; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder,
.input::placeholder { color: #8a8791; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.input:focus-visible { border-color: var(--c-ink); }
.field.is-error input,
.field.is-error select,
.field.is-error textarea { border-color: var(--c-alert); background: #fbeeee; }
.field__error {
  font-size: var(--fs-note);
  color: var(--c-alert);
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.6;
}
.field__error::before { content: "！"; font-weight: 700; }
.field__error:empty { display: none; }

.checkline {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  min-height: 44px;
  font-size: var(--fs-body);
}
.checkline input {
  width: 24px; height: 24px;
  min-height: 24px;
  margin-top: 4px;
  flex: none;
  accent-color: var(--c-purple-deep);
}

.form__summary {
  border: 1px solid var(--c-alert);
  border-radius: var(--r-s);
  background: #fbeeee;
  padding: var(--sp-4);
  font-size: var(--fs-body);
}
.form__summary ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }
.form__summary a { color: var(--c-alert); }

.form__review {
  border: 1px solid var(--c-line-strong);
  border-left: 4px solid var(--c-purple);
  border-radius: var(--r-s);
  background: var(--c-card);
  padding: var(--sp-4);
}
.form__review dl { display: grid; gap: var(--sp-3); margin: var(--sp-3) 0 0; }
.form__review dt { font-size: var(--fs-note); color: var(--c-muted); }
.form__review dd { margin: 2px 0 0; font-size: var(--fs-body); word-break: break-word; }
.form__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.form__actions .btn { flex: 1 1 220px; }

/* ============ footer ============ */
.footer {
  border-top: 1px solid var(--c-line);
  background: var(--c-ivory-2);
  padding-block: var(--sp-7) var(--sp-6);
  margin-top: var(--section-y);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-6);
}
.footer__brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em; }
.footer__brand-sub {
  font-size: var(--fs-note);
  letter-spacing: 0.08em;
  color: var(--c-purple-deep);
  margin-top: 2px;
}
.footer__desc { margin-top: var(--sp-3); font-size: var(--fs-note); color: var(--c-muted); }
.footer h2 {
  font-size: var(--fs-label);
  letter-spacing: 0.05em;
  color: var(--c-purple-deep);
  margin-bottom: var(--sp-2);
}
.footer__info { font-size: var(--fs-note); color: var(--c-ink-2); line-height: 1.8; }
.footer__info a { color: var(--c-purple-deep); text-decoration: underline; }
.footer__info dt { color: var(--c-muted); }
.footer__nav { display: grid; gap: 0; }
.footer__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  text-decoration: none;
  white-space: nowrap;
}
.footer__nav a:hover { color: var(--c-purple-deep); text-decoration: underline; }
.footer__colophon {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-line);
  font-size: var(--fs-note);
  color: var(--c-muted);
  line-height: 1.8;
}
.footer__colophon p { max-width: none; }
.footer__colophon p + p { margin-top: 6px; }
.footer__legal { display: grid; gap: 4px; margin-top: var(--sp-3); }

/* ============ mobile fixed CTA ============
   来店モードは「予約・LINE」、求人モードは「LINE応募・フォーム応募」を主導線にする。
   求人モードでは必ず「来店案内へ戻る」を1枠残す。 */
.cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-cta);
  background: var(--c-ivory);
  border-top: 1px solid var(--c-line-strong);
  padding: var(--cta-pad) var(--sp-2) calc(env(safe-area-inset-bottom, 0px) + var(--cta-pad));
}
.cta-bar__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta-bar li { display: flex; min-width: 0; flex: 1 1 0; }
.cta-bar li:has(.is-primary),
.cta-bar li:has(.is-apply) { flex-grow: 1.3; }
.cta-bar li:has(.is-back) { flex-grow: 1.1; }
.cta-bar a,
.cta-bar button {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--cta-tap);
  border-radius: var(--r-s);
  border: 1px solid var(--c-line-strong);
  background: var(--c-card);
  text-decoration: none;
  color: var(--c-ink);
  font-size: var(--fs-note);
  font-weight: 700;
  line-height: 1.2;
  padding: 2px 4px;
}
.cta-bar .en {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  font-weight: 600;
  color: var(--c-muted);
}
.ctabar-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
.ctabar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-bar .is-primary .ctabar-icon svg,
.cta-bar .is-apply .ctabar-icon svg { stroke: currentColor; }
.cta-bar .is-primary {
  background: var(--c-purple-deep);
  color: var(--c-on-accent);
  border-color: var(--c-purple-deep);
}
.cta-bar .is-primary .en { color: #ded4f0; }
.cta-bar .is-apply {
  background: var(--c-pink-deep);
  color: var(--c-on-accent);
  border-color: var(--c-pink-deep);
}
.cta-bar .is-apply .en { color: #f4d7e0; }
.cta-bar .is-back {
  border-color: var(--c-pink);
  background: var(--c-pink-tint);
  color: var(--c-pink-deep);
}
.cta-bar .is-back .en { color: var(--c-pink-deep); }

/* ============ motion（1種類のみ） ============ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

body.is-locked { overflow: hidden; }

/* ============ 単独リンクのタップ領域（44px）をまとめて確保する ============ */
a[data-tel-link],
a.tag,
.checkline a,
.info-list__row dd a,
.footer__info a,
.prose a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
a.tag { padding: 4px 10px; text-decoration: none; }
a.tag:hover { border-color: var(--c-purple); color: var(--c-purple-deep); }
.footer__info a,
.info-list__row dd a,
.checkline a,
.prose a { margin-block: -10px; vertical-align: middle; }

/* ============ info list（アクセス・お問い合わせ等の定義リスト）============ */
.info-list { display: grid; gap: var(--sp-3); }
.info-list__row {
  display: grid;
  grid-template-columns: 7.6em 1fr;
  gap: var(--sp-3);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--c-line);
}
.info-list__row dt { font-size: var(--fs-note); color: var(--c-muted); font-weight: 700; }
.info-list__row dd { font-size: var(--fs-body); max-width: none; }

/* ============ status badge（営業状況）============ */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--c-ink-2);
  margin-bottom: var(--sp-3);
}
.status__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-muted);
  flex: none;
}
.status.is-open .status__dot { background: var(--c-ok); }
.status.is-closed .status__dot { background: var(--c-alert); }

/* ============ steps（来店の流れ・選考の流れ）============ */
.steps { display: grid; gap: var(--sp-3); counter-reset: step; }
.steps--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.step {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
}
.step__num {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-purple-deep);
  color: #fff;
  font-weight: 700;
}
.step__title { font-weight: 700; margin-bottom: 2px; }
.step__text { font-size: var(--fs-note); color: var(--c-ink-2); max-width: none; }

.point-list { display: grid; gap: var(--sp-2); }
.point-list li {
  display: flex;
  gap: var(--sp-2);
  font-size: var(--fs-body);
  line-height: 1.7;
}
.point-list li::before { content: "・"; color: var(--c-purple-deep); font-weight: 700; }

.empty { padding: var(--sp-6) 0; text-align: center; color: var(--c-muted); }
.empty__title { font-size: var(--fs-h3); color: var(--c-ink); margin-bottom: var(--sp-2); }

.noscript-info {
  padding: var(--sp-5) 0;
}
.noscript-info dl { margin-top: var(--sp-3); display: grid; gap: var(--sp-2); }
.noscript-info dt { font-weight: 700; }
