/* ================================================
   HOTEL SEVEN お客様予約画面 スタイル
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --text: #1a1a1a;
  --text-light: #555;
  --muted: #888;
  --border: #e2dfd8;
  --bg: #faf8f4;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --success: #2e7d5c;
  --warning: #c68a1a;
  --danger: #c93545;
  --rainbow: linear-gradient(90deg, #ff3d7f 0%, #ff8a3d 20%, #ffd93d 40%, #6bcb77 60%, #4dd0e1 80%, #a06cd5 100%);
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body.reserve-body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: 15px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: 15px; }

.reserve-rainbow-top { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--rainbow); z-index: 100; }

.reserve-header {
  background: #fff; height: 60px; position: sticky; top: 3px; z-index: 90;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.reserve-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.14em; }
.reserve-brand-logo { height: 40px; width: auto; }
.reserve-brand-name { font-size: 14px; }

.reserve-main { max-width: 880px; margin: 0 auto; padding: 40px 20px 80px; }

.reserve-hero { text-align: center; margin-bottom: 36px; }
.reserve-breadcrumb { font-size: 11px; color: var(--muted); letter-spacing: 0.2em; margin-bottom: 8px; }
.reserve-title { font-family: var(--font-sans); font-size: 28px; font-weight: 800; letter-spacing: 0.06em; margin-bottom: 10px; }
.reserve-sub { font-size: 13px; color: var(--text-light); }
.holiday-badge { display: inline-block; margin-top: 12px; padding: 5px 14px; background: #fff4e0; color: #a86d00; border: 1px solid #f0c978; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* ========== 使い方ガイド ========== */
.how-to { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 28px 32px; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.how-to::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rainbow); }
.how-to-title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; letter-spacing: 0.14em; text-align: center; margin: 6px 0 22px; }
.how-to-steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.how-to-steps li { display: flex; gap: 14px; padding: 14px; background: var(--off-white); border-radius: 4px; align-items: flex-start; }
.how-to-num { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--text); line-height: 1; padding: 6px 10px; background: #fff; border: 1px solid var(--border); border-radius: 3px; }
.how-to-body b { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.how-to-body p { font-size: 12px; color: var(--text-light); line-height: 1.7; margin: 0; }
.how-to-notes { margin-top: 24px; padding-top: 22px; border-top: 1px dashed var(--border); }
.how-to-notes-title { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: 0.08em; }
.how-to-notes ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.how-to-notes li { font-size: 12px; color: var(--text); padding-left: 16px; position: relative; line-height: 1.8; }
.how-to-notes li::before { content: '•'; position: absolute; left: 4px; color: var(--text); }
.how-to-notes a { color: var(--text); font-weight: 700; border-bottom: 1px solid var(--text); }

.calendar-section-title { text-align: center; margin: 30px 0 18px; }
.calendar-section-title h2 { font-family: var(--font-serif); font-size: 18px; font-weight: 400; letter-spacing: 0.16em; }

/* ========== 確認ページ ========== */
.confirm-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 24px 28px; margin-bottom: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.confirm-section-title { font-size: 13px; font-weight: 800; color: var(--text); padding-bottom: 10px; border-bottom: 2px solid var(--text); margin-bottom: 16px; letter-spacing: 0.1em; }
.confirm-list { display: grid; grid-template-columns: 110px 1fr; gap: 10px 18px; }
.confirm-list dt { font-size: 12px; color: var(--text-light); font-weight: 600; padding: 6px 0; }
.confirm-list dd { font-size: 14px; color: var(--text); padding: 6px 0; border-bottom: 1px dashed var(--border); }
.confirm-list dd:last-child { border-bottom: none; }
.confirm-list b { font-weight: 700; }
.confirm-list small { color: var(--text-light); font-size: 11px; margin-left: 4px; }
.holiday-tag { display: inline-block; margin-left: 8px; padding: 2px 10px; background: #fff4e0; color: #a86d00; font-size: 10px; font-weight: 700; border-radius: 20px; border: 1px solid #f0c978; }
.confirm-notice { background: #fffaee; border: 1px solid #f0d998; border-radius: 6px; padding: 16px 20px; margin-bottom: 24px; }
.confirm-notice-title { font-size: 12px; font-weight: 800; color: #7a5000; margin-bottom: 8px; letter-spacing: 0.06em; }
.confirm-notice ul { list-style: none; }
.confirm-notice li { font-size: 11px; color: #4a3200; padding: 2px 0 2px 14px; position: relative; line-height: 1.8; }
.confirm-notice li::before { content: '※'; position: absolute; left: 0; }
.confirm-notice a { color: #4a3200; font-weight: 700; border-bottom: 1px solid; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.confirm-actions .btn { min-width: 160px; padding: 14px 28px; font-size: 13px; }
.confirm-actions .btn svg { width: 14px; height: 14px; }

/* ========== 利用規約ページ ========== */
.terms-article { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 36px 44px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.terms-intro { font-size: 13px; color: var(--text); line-height: 2; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px dashed var(--border); }
.terms-article h2 { font-family: var(--font-sans); font-size: 14px; font-weight: 800; color: var(--text); margin: 24px 0 10px; padding-left: 10px; border-left: 3px solid var(--text); letter-spacing: 0.06em; }
.terms-article p { font-size: 13px; color: var(--text); line-height: 2; margin-bottom: 10px; }
.terms-article ol, .terms-article ul { padding-left: 22px; font-size: 13px; color: var(--text); line-height: 2; margin-bottom: 10px; }
.terms-article li { margin-bottom: 4px; }
.terms-footer { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; font-size: 11px; color: var(--text-light); line-height: 2; }
.terms-link { color: var(--text); font-weight: 700; border-bottom: 1px solid var(--text); }

/* ========== お知らせ一覧 ========== */
.news-list-page { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); margin-bottom: 24px; }
.news-list-item { display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border); color: var(--text); transition: background 0.15s; }
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: var(--off-white); }
.news-list-date { font-size: 12px; font-weight: 800; color: var(--text-light); min-width: 90px; font-family: var(--font-sans); }
.news-list-title { flex: 1; font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.7; }
.news-list-arrow { color: var(--text-light); font-weight: 700; }
.news-detail-title { font-size: 22px !important; line-height: 1.5 !important; }
.news-detail-body { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 32px 40px; font-size: 14px; line-height: 2; color: var(--text); margin-bottom: 20px; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item[open] { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-item summary { padding: 18px 24px; font-size: 14px; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px; transition: background 0.15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; margin-left: auto; font-size: 22px; font-weight: 300; color: var(--text); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--off-white); }
.faq-answer { padding: 4px 24px 22px; border-top: 1px dashed var(--border); margin-top: 4px; }
.faq-answer p { font-size: 13px; color: var(--text); line-height: 2; margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--text); font-weight: 700; border-bottom: 1px solid var(--text); }

@media (max-width: 560px) {
  .news-list-item { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 18px; }
  .news-list-date { min-width: 0; }
  .news-list-arrow { display: none; }
  .news-detail-body { padding: 20px 22px; }
  .faq-item summary { padding: 14px 18px; font-size: 13px; }
  .faq-answer { padding: 2px 18px 16px; }
}

/* ========== カレンダー ========== */
.calendar-legend { display: flex; gap: 18px; justify-content: center; font-size: 11px; color: var(--text-light); margin-bottom: 20px; flex-wrap: wrap; }
.cl-box { display: inline-block; width: 12px; height: 12px; border-radius: 2px; vertical-align: middle; margin-right: 4px; }
.cl-ok { background: #c6e8d1; }
.cl-few { background: #ffe2a8; }
.cl-full { background: #f0c0c8; }
.cl-past { background: #eee; }

.calendar-wrap { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.calendar-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }
.cal-btn { background: transparent; border: 1px solid var(--border); padding: 8px 16px; border-radius: 3px; cursor: pointer; font-weight: 700; font-size: 12px; }
.cal-btn:hover { background: var(--text); color: #fff; }
.cal-title { font-size: 18px; font-weight: 700; min-width: 140px; text-align: center; }

.cal-grid-head { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-head { text-align: center; font-size: 10px; font-weight: 700; padding: 6px; color: var(--text-light); }
.cal-head:first-child { color: var(--danger); }
.cal-head:last-child { color: #1e6091; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-cell { aspect-ratio: 1; border: 1px solid var(--border); border-radius: 3px; padding: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.15s; position: relative; background: #fff; }
.cal-cell:not(.cal-disabled):hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: var(--text); }
.cal-empty { border: none; background: transparent; }
.cal-disabled { cursor: not-allowed; opacity: 0.5; }
.cal-day { font-size: 13px; font-weight: 700; }
.cal-mark { font-size: 18px; font-weight: 700; line-height: 1; }
.cal-lbl { font-size: 9px; color: var(--text-light); }
.cal-ok { background: #f0faf5; }
.cal-ok .cal-mark { color: var(--success); }
.cal-few { background: #fff9ee; }
.cal-few .cal-mark { color: var(--warning); }
.cal-full { background: #fcf0f2; }
.cal-full .cal-mark { color: var(--danger); }
.cal-past { background: #f3f3f3; }
.cal-past .cal-mark { color: var(--muted); }
.cal-closed { background: #f3f3f3; }
.cal-closed .cal-mark { color: var(--muted); }
.cal-closed .cal-lbl { font-size: 8px; }
.calendar-loading { text-align: center; padding: 40px; color: var(--muted); }

/* ========== 営業時間タイムラインガイド ========== */
.timeline-guide { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 18px 22px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.timeline-title { font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: 0.08em; }
.timeline-bar { position: relative; height: 60px; background: var(--off-white); border-radius: 3px; }
.timeline-hours { position: absolute; inset: 0; }
.timeline-hour { position: absolute; top: -14px; transform: translateX(-50%); font-size: 9px; color: var(--text-light); font-weight: 700; }
.timeline-block { position: absolute; top: 6px; bottom: 6px; display: flex; align-items: center; justify-content: center; border-radius: 3px; font-size: 11px; font-weight: 700; color: #fff; text-align: center; padding: 0 8px; line-height: 1.3; }
.timeline-day { background: linear-gradient(135deg, #5aa8d8, #3a6ea0); }
.timeline-night { background: linear-gradient(135deg, #4a4080, #2a2050); font-size: 9px; }

/* ========== プラン選択(カテゴリナビ) ========== */
.plan-category-nav { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; padding: 4px; }
.pc-tab { flex: 1; min-width: 120px; display: flex; align-items: center; justify-content: center; padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 3px; font-size: 13px; font-weight: 800; color: var(--text); transition: all 0.2s; white-space: nowrap; }
.pc-tab:hover { background: var(--text); color: #fff; border-color: var(--text); }
.pc-tab-day_use { border-left: 4px solid #5aa8d8; }
.pc-tab-midnight { border-left: 4px solid #4a4080; }
.pc-tab-stay { border-left: 4px solid #a86d00; }

/* ========== プラン選択 ========== */
.plan-section { display: flex; flex-direction: column; gap: 40px; }
.plan-group { scroll-margin-top: 80px; }
.plan-group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding: 16px 20px; background: #fff; border: 1px solid var(--border); border-radius: 4px; border-left: 6px solid var(--text); box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.plan-group-badge { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.plan-group-badge-day_use { background: linear-gradient(135deg, #5aa8d8, #3a6ea0); }
.plan-group-badge-midnight { background: linear-gradient(135deg, #4a4080, #2a2050); }
.plan-group-badge-stay { background: linear-gradient(135deg, #c68a1a, #8a5000); }
.plan-group-title { font-size: 17px; font-weight: 800; letter-spacing: 0.06em; color: var(--text); margin-bottom: 3px; }
.plan-group-hours { font-size: 11px; color: var(--text-light); font-weight: 600; }

.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.plan-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 22px 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column; gap: 14px; }
.plan-card-top { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.plan-card-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.plan-card-duration { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; }

/* プランカードの時間帯ビジュアル */
.plan-card-time-visual { padding: 10px 0; }
.pctv-label { font-size: 10px; color: var(--text-light); font-weight: 700; margin-bottom: 6px; letter-spacing: 0.08em; }
.pctv-bar { position: relative; height: 12px; background: var(--off-white); border-radius: 2px; border: 1px solid var(--border); }
.pctv-range { position: absolute; top: 0; bottom: 0; background: linear-gradient(90deg, #5aa8d8, #3a6ea0); border-radius: 2px; }
.pctv-hours { display: flex; justify-content: space-between; font-size: 9px; color: var(--text-light); margin-top: 3px; padding: 0 1px; }
.pctv-text { font-size: 11px; color: var(--text); margin-top: 6px; letter-spacing: 0.02em; }
.pctv-text b { font-weight: 800; }

.plan-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.8; padding: 10px 0; border-top: 1px dashed var(--border); }
.plan-card-price-row { display: flex; justify-content: flex-end; padding: 8px 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
.plan-card-price { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.plan-card-price small { font-size: 11px; font-weight: 500; color: var(--text-light); margin-left: 4px; }
.plan-card-form { display: flex; flex-direction: column; gap: 10px; }
.plan-card-form label { display: flex; flex-direction: column; gap: 6px; font-size: 11px; color: var(--text-light); font-weight: 700; }
.plan-card-form select { padding: 10px 12px; border: 1px solid var(--border); border-radius: 3px; background: var(--off-white); font-size: 14px; color: var(--text); }
.plan-card-form .btn { padding: 14px; font-size: 13px; }

@media (max-width: 560px) {
  .plan-cards { grid-template-columns: 1fr; }
  .plan-category-nav { gap: 6px; }
  .pc-tab { padding: 10px 8px; font-size: 11px; min-width: 80px; }
  .timeline-block { font-size: 10px; }
}

/* ========== 予約サマリー + フォーム ========== */
.reserve-summary {
  background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 20px 24px;
  margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.reserve-summary div { display: flex; gap: 18px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.reserve-summary div:last-child { border-bottom: none; }
.reserve-summary span { min-width: 60px; color: var(--muted); }
.reserve-summary b { color: var(--text); }
.reserve-summary small { color: var(--muted); font-size: 11px; margin-left: 6px; }
.price-big { font-family: var(--font-serif); font-size: 22px; font-weight: 700; }

.reserve-form { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 700; }
.form-label em { background: var(--danger); color: #fff; font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 2px; margin-left: 6px; font-style: normal; vertical-align: middle; }
.form-field input, .form-field textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: 3px; background: var(--off-white); width: 100%; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--text); background: #fff; }
.form-field small { font-size: 11px; color: var(--muted); }
.form-agree { display: flex; align-items: center; gap: 10px; padding: 14px; background: var(--off-white); border-radius: 3px; font-size: 13px; margin-bottom: 20px; }

/* ========== ボタン ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 3px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  background: #fff; color: var(--text); border: 1px solid var(--text); cursor: pointer; transition: all 0.2s;
  text-decoration: none; font-family: inherit;
}
.btn:hover { background: var(--text); color: #fff; }
.btn-primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn-primary:hover { background: #000; }
.btn-muted { color: var(--text-light); border-color: var(--border); }
.btn-big { padding: 16px 32px; font-size: 14px; width: 100%; }

/* ========== 完了画面 ========== */
.complete-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 36px; font-weight: 900;
}
.complete-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 28px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); margin-bottom: 20px; }
.complete-number { font-size: 14px; color: var(--muted); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.complete-number b { color: var(--text); font-family: monospace; font-size: 16px; }
.complete-note { background: var(--off-white); padding: 18px 22px; border-radius: 3px; font-size: 12px; line-height: 2; color: var(--text-light); margin-bottom: 20px; }
.complete-note p { margin-bottom: 4px; }
.complete-actions { text-align: center; }

.detail-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 13px; }
.detail-list dt { color: var(--muted); font-weight: 600; font-size: 11px; }
.detail-list dd { color: var(--text); }

/* ========== フッター ========== */
.reserve-footer {
  background: #1a1a1a; color: rgba(255,255,255,0.6);
  padding: 30px 20px; text-align: center; font-size: 11px; line-height: 2;
}
.reserve-footer a { color: #fff; font-weight: 700; }

/* ========== タイプガイド ========== */
.type-guide { margin-bottom: 24px; }
.type-guide-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; text-align: center; }
.type-guide-cards { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.type-guide-card { flex: 1; min-width: 100px; max-width: 200px; padding: 10px 12px; border-radius: 6px; text-align: center; border: 2px solid; }
.type-c { border-color: #4a9; background: #e8f6f0; }
.type-b { border-color: #38a; background: #e6f0fa; }
.type-a { border-color: #a64; background: #fef5e8; }
.type-guide-name { font-size: 15px; font-weight: 900; }
.type-guide-rooms { font-size: 10px; color: #555; margin: 2px 0; }
.type-guide-label { font-size: 11px; font-weight: 700; }

/* ========== 料金帯バッジ ========== */
.rate-tier-badge { display: inline-block; padding: 3px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; margin-top: 8px; }
.rate-tier-weekday { background: #e6f0fa; color: #285; }
.rate-tier-friday { background: #e6f0fa; color: #38a; }
.rate-tier-holiday_eve { background: #fde8eb; color: #a33; }
.rate-tier-holiday { background: #fde8eb; color: #a33; }
.rate-tier-tag { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 700; background: #f0f0f0; color: #555; margin-left: 6px; }

/* ========== タイプ別料金表 ========== */
.plan-type-prices { margin: 10px 0; border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; }
.ptp-row { display: flex; padding: 5px 10px; font-size: 12px; border-bottom: 1px solid #eee; }
.ptp-row:last-child { border-bottom: none; }
.ptp-header { background: #f8f8f8; font-weight: 700; font-size: 11px; color: #777; }
.ptp-type { flex: 1; font-weight: 600; }
.ptp-price-label { flex: 1; text-align: right; }
.ptp-price { flex: 1; text-align: right; font-weight: 800; font-size: 14px; }
.ptp-type-C .ptp-type { color: #2a8a5a; }
.ptp-type-B .ptp-type { color: #2a6a9a; }
.ptp-type-A .ptp-type { color: #9a6a2a; }

/* ========== タイプ選択ラジオ ========== */
.plan-form-type-select { margin: 10px 0; }
.pfts-label { font-size: 12px; font-weight: 700; color: #555; margin-bottom: 6px; display: block; }
.pfts-options { display: flex; gap: 6px; }
.pfts-option { flex: 1; cursor: pointer; }
.pfts-option input { display: none; }
.pfts-btn { display: flex; flex-direction: column; align-items: center; padding: 8px 4px; border: 2px solid #ddd; border-radius: 6px; font-size: 12px; font-weight: 700; transition: all 0.15s; text-align: center; }
.pfts-btn small { font-size: 11px; font-weight: 800; margin-top: 2px; }
.pfts-btn-C { color: #2a8a5a; }
.pfts-btn-B { color: #2a6a9a; }
.pfts-btn-A { color: #9a6a2a; }
.pfts-option input:checked + .pfts-btn-C { border-color: #2a8a5a; background: #e8f6f0; box-shadow: 0 2px 8px rgba(42,138,90,0.2); }
.pfts-option input:checked + .pfts-btn-B { border-color: #2a6a9a; background: #e6f0fa; box-shadow: 0 2px 8px rgba(42,106,154,0.2); }
.pfts-option input:checked + .pfts-btn-A { border-color: #9a6a2a; background: #fef5e8; box-shadow: 0 2px 8px rgba(154,106,42,0.2); }

/* ========== フラッシュ ========== */
.flash { padding: 12px 18px; border-radius: 3px; font-size: 13px; margin-bottom: 16px; border-left: 4px solid; }
.flash-success { background: #e5f5ed; color: #1a6040; border-color: #2e7d5c; }
.flash-danger { background: #fde8eb; color: #8a2020; border-color: #c93545; }
.flash-warning { background: #fff4e0; color: #8a5a00; border-color: #e6a028; }

/* ========== レスポンシブ ========== */
@media (max-width: 560px) {
  .reserve-title { font-size: 22px; }
  .plan-cards { grid-template-columns: 1fr; }
  .cal-day { font-size: 11px; }
  .cal-mark { font-size: 14px; }
  .cal-lbl { display: none; }
  .calendar-wrap { padding: 14px; }
  .reserve-main { padding: 24px 14px 60px; }
}
