/* 対面受付（タブレット・接客用）専用スタイル。style.cssのトークン・パーツを流用 */

.c-shell {
  max-width: none; margin: 0; padding: 0 16px 16px;
  min-height: 100dvh; display: flex; flex-direction: column;
}
.c-shell[hidden] { display: none; }

.c-guard {
  min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 15px; color: var(--ink-2);
}
.c-guard[hidden] { display: none; }
.c-guard a { color: var(--accent); font-weight: 700; }

.c-back { align-self: flex-start; margin-bottom: 10px; }

/* ── 予約一覧 ── */
.c-reserve-wrap[hidden] { display: none; }
.reserve-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
  margin-top: 10px;
}
.reserve-card {
  appearance: none; font: inherit; cursor: pointer; text-align: left;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 14px 16px;
}
.reserve-card:hover { border-color: var(--accent); }
.reserve-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.reserve-card .rc-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.reserve-card .rc-no { font-weight: 700; color: var(--ink-3); font-size: 12px; }
.reserve-card .rc-start { font-weight: 700; font-size: 15px; }
.reserve-card .rc-status { margin-left: auto; }
.reserve-card .rc-mid { font-size: 14px; font-weight: 600; }
.reserve-card .rc-bottom { font-size: 12px; color: var(--ink-3); margin-top: 4px; min-height: 1em; }
.c-empty { color: var(--ink-3); font-size: 13px; margin-top: 14px; }

/* ── フォーム＋プレビュー（左右分割・タブレット横向き前提） ── */
.c-form-area {
  display: flex; gap: 20px; align-items: flex-start; flex: 1; min-height: 0;
}
.c-form-area[hidden] { display: none; }
.c-left { flex: 1.3; min-width: 0; display: flex; flex-direction: column; }
.c-right {
  flex: 1; min-width: 280px; max-width: 420px;
  position: sticky; top: 8px;
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 860px) {
  .c-form-area { flex-direction: column; }
  .c-right { max-width: none; width: 100%; position: static; }
}

.c-store-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700;
  margin-bottom: 12px;
}
.c-store-chip::before { content: ""; width: 11px; height: 11px; border-radius: 3px; background: var(--c); }

/* アコーディオン: 選択中のセクションだけ開く（他は要約だけ表示） */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-section {
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface);
  box-shadow: var(--shadow); overflow: hidden;
}
.acc-head {
  appearance: none; width: 100%; font: inherit; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: none; padding: 16px 18px;
  text-align: left; color: var(--ink);
}
.acc-section.open > .acc-head { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.acc-arrow { color: var(--ink-3); font-size: 12px; width: 12px; flex: none; transition: transform .15s ease; }
.acc-section.open .acc-arrow { transform: rotate(90deg); color: var(--accent); }
.acc-title { font-size: 15px; font-weight: 700; }
.acc-summary {
  margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent);
  max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.acc-body { display: none; padding: 16px 18px; }
.acc-section.open .acc-body { display: block; }
/* タブレットのタップ精度に配慮し、選択肢ボタンを一回り大きく */
.acc-body .seg button, .acc-body .course-grid button, .acc-body .chiprow button {
  min-height: 44px; font-size: 14px;
}
.acc-body .course-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
#c-f-long { margin-top: 8px; }

/* ── 料金プレビュー ── */
.price-preview {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 18px 20px;
}
.pp-label { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .08em; }
.pp-total { font-size: 34px; font-weight: 700; margin: 4px 0 12px; }
.pp-rows { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); padding-top: 10px; }
.pp-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-2); }
.pp-row span:last-child { font-weight: 600; color: var(--ink); }

.c-submit { padding: 16px; font-size: 16px; }
.c-note-hint { text-align: center; font-size: 12px; color: var(--ink-3); margin: 0; }
