/* ============================================================
   三輪緑山応援バス予約システム — front.css v3
   フルスクリーン・ライトテーマ（FC町田ゼルビアカラー）
   ============================================================ */

:root {
  --zb:      #1645BE;
  --zb-dark: #0D2E8A;
  --zb-deep: #07194D;
  --zb-lt:   #EEF3FF;
  --zb-md:   #C5D5F8;
  --zg:      #C9A227;
  --zg-lt:   #FBF5DC;
  --zg-dark: #8A6D10;
  --navy:    #062050;
  --bg:      #EFF4FB;
  --card:    #FFFFFF;
  --text:    #0D1B3E;
  --text2:   #4A5568;
  --text3:   #8A9AB8;
  --border:  #D4DEED;
  --ok:      #1A7A3A;
  --ok-lt:   #EAF7EE;
  --warn:    #8A5A00;
  --warn-lt: #FFF8E1;
  --ng:      #8A1A1A;
  --ng-lt:   #FFF0F0;
  --radius:  10px;
  --radius-sm: 6px;
  --shadow:  0 2px 16px rgba(6,32,80,.10);
  --shadow-md: 0 4px 24px rgba(6,32,80,.14);
}

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

/* ================================================================
   PAGE WRAPPER — フルスクリーン
   ================================================================ */
.zbus-page {
  min-height: 100vh;
  background: var(--bg);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text);
  font-size: 15px;
}

/* ================================================================
   STEP BAR（画面上部に横断）
   ================================================================ */
.zbus-stepbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(6,32,80,.08);
}
.zbus-stepbar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.zbus-step-item {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.zbus-step-item:last-child { flex: none; }
.zbus-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--text3);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.zbus-step-label {
  font-size: 11px;
  color: var(--text3);
  margin-left: 6px;
  white-space: nowrap;
  transition: color .2s;
}
.zbus-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  transition: background .2s;
}
/* active */
.zbus-step-item.active .zbus-step-num {
  background: var(--zb);
  border-color: var(--zb);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22,69,190,.35);
}
.zbus-step-item.active .zbus-step-label { color: var(--zb); font-weight: 700; }
/* done */
.zbus-step-item.done .zbus-step-num {
  background: var(--zg-lt);
  border-color: var(--zg);
  color: var(--zg-dark);
}
.zbus-step-item.done .zbus-step-label { color: var(--zg-dark); }
.zbus-step-item.done + .zbus-step-item .zbus-step-line,
.zbus-step-line.done { background: var(--zg); }

/* ================================================================
   CONTENT AREA
   ================================================================ */
.zbus-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 120px; /* bottom: ボタン分の余白 */
}

/* ================================================================
   CARD（コンテンツカード）
   ================================================================ */
.zbus-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}
.zbus-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.zbus-card-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--zb);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zbus-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.zbus-card-body { padding: 22px 24px; }

/* ================================================================
   HERO BANNER（LPトップ）
   ================================================================ */
.zbus-hero {
  background: linear-gradient(135deg, var(--zb-deep) 0%, var(--zb-dark) 50%, var(--zb) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 30px 28px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--zg);
}
.zbus-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 280px; height: 280px;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 10px,
    rgba(201,162,39,.07) 10px, rgba(201,162,39,.07) 20px
  );
  border-radius: 50%;
}
.zbus-hero-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; }
.zbus-hero-text { flex: 1; }
.zbus-badge {
  display: inline-flex;
  align-items: center;
  background: var(--zg);
  color: #3D2600;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.zbus-hero-title {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(6,12,26,.4);
}
.zbus-hero-sub { color: rgba(200,220,255,.75); font-size: 13px; }
.zbus-mascot {
  width: 140px;
  max-width: 30%;
  position: relative;
  bottom: -24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.zbus-hero-strip {
  background: var(--zg);
  padding: 10px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 20px;
}
.zbus-hero-strip span {
  font-size: 12px;
  color: #2C1A00;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.zbus-hero-strip .dashicons { font-size: 15px; }

/* Banner */
.zbus-banner { width: 100%; overflow: hidden; border-radius: var(--radius); margin-bottom: 16px; }
.zbus-banner-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.zbus-banner-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--zb-lt), #E8EFF8);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text3);
  margin-bottom: 16px;
}
.zbus-banner-placeholder .dashicons { font-size: 36px; }
.zbus-banner-placeholder small { font-size: 12px; }

/* ================================================================
   NOTICE
   ================================================================ */
.zbus-notice {
  background: var(--warn-lt);
  border: 1px solid rgba(201,162,39,.4);
  border-left: 4px solid var(--zg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--warn);
  line-height: 1.7;
  margin-bottom: 16px;
}
.zbus-notice strong { color: var(--zg-dark); }

/* ================================================================
   COURSE CARDS
   ================================================================ */
.zbus-course-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
  position: relative;
}
.zbus-course-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: background .15s;
}
.zbus-course-card:hover:not(.zbus-course-disabled) {
  border-color: var(--zb-md);
  box-shadow: 0 2px 12px rgba(22,69,190,.12);
}
.zbus-course-card:hover:not(.zbus-course-disabled)::before { background: var(--zb); }
.zbus-course-card.selected {
  border: 2px solid var(--zb);
  background: var(--zb-lt);
  box-shadow: 0 4px 16px rgba(22,69,190,.18);
}
.zbus-course-card.selected::before { background: var(--zb); }
.zbus-course-card.zbus-course-disabled { opacity: .45; cursor: default; }
.zbus-course-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 5px; }
.zbus-course-name { font-size: 15px; font-weight: 700; color: var(--text); }
.selected .zbus-course-name { color: var(--zb); }
.zbus-course-badge { font-size: 11px; padding: 3px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; font-weight: 700; }
.badge-ok  { background: var(--ok-lt);   color: var(--ok);   border: 1px solid rgba(26,122,58,.3); }
.badge-few { background: var(--warn-lt);  color: var(--warn); border: 1px solid rgba(201,162,39,.4); }
.badge-ng  { background: var(--ng-lt);    color: var(--ng);   border: 1px solid rgba(138,26,26,.3); }
.zbus-course-meta  { font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.zbus-course-times { display: flex; flex-wrap: wrap; gap: 6px; }
.zbus-time-chip {
  background: #f0f5ff;
  border: 1px solid var(--zb-md);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--zb);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.zbus-time-chip.dep .dashicons { font-size: 14px; color: var(--zb); }
.zbus-time-chip.ret .dashicons { font-size: 14px; color: var(--ok); }
.zbus-remain { font-size: 11px; color: var(--warn); font-weight: 700; margin-left: 4px; }
.zbus-course-note { font-size: 12px; color: var(--text3); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.zbus-no-courses, .zbus-err { color: var(--text3); font-size: 14px; padding: 16px 0; text-align: center; }

/* ================================================================
   CALENDAR
   ================================================================ */
.zbus-cal { }
.zbus-cal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.zbus-cal-prev, .zbus-cal-next {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text2);
  line-height: 1;
  transition: all .12s;
}
.zbus-cal-prev:hover, .zbus-cal-next:hover { border-color: var(--zb); color: var(--zb); background: var(--zb-lt); }
.zbus-cal-title   { font-size: 16px; font-weight: 700; color: var(--text); }
.zbus-cal-legend  { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.zbus-cal-ev-dot  { width: 10px; height: 10px; background: var(--zb-lt); border: 2px solid var(--zb); border-radius: 2px; display: inline-block; }
.zbus-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.zbus-cal-head { text-align: center; font-size: 12px; color: var(--text3); padding: 6px 0 8px; font-weight: 700; letter-spacing: .04em; }
.zbus-cal-head.sat { color: var(--zb); }
.zbus-cal-head.sun { color: #C0392B; }
.zbus-cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text3);
  position: relative;
  line-height: 1.3;
}
.zbus-cal-day.sat  { color: var(--zb); }
.zbus-cal-day.sun  { color: #C0392B; }
.zbus-cal-day.past { opacity: .3; }
.zbus-cal-day.has-event {
  background: var(--zb-lt);
  color: var(--zb);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--zb-md);
  font-size: 12px;
}
.zbus-cal-day.has-event:hover { background: var(--zb); color: #fff; border-color: var(--zb); }
.zbus-cal-day.has-event .ev-dot { background: var(--zg); }
.zbus-cal-day.selected {
  background: var(--zb);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  border: none;
}
.ev-dot { display: block; width: 5px; height: 5px; background: var(--zg); border-radius: 50%; margin: 2px auto 0; }
.selected .ev-dot { background: rgba(255,255,255,.6); }
/* 試合名ラベル */
.zbus-cal-day .ev-label { display: block; font-size: 9px; color: var(--zb); line-height: 1.2; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zbus-cal-day.selected .ev-label { color: rgba(255,255,255,.75); }

/* ================================================================
   BOTTOM CTA BUTTON（フルスクリーン固定）
   ================================================================ */
.zbus-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(239,244,251,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
}
.zbus-bottom-inner { max-width: 860px; margin: 0 auto; }
.zbus-btn-primary {
  display: block;
  width: 100%;
  padding: 17px 24px;
  background: linear-gradient(135deg, var(--zb) 0%, var(--zb-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(22,69,190,.35);
  transition: opacity .15s, transform .1s;
}
.zbus-btn-primary:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
.zbus-btn-primary:disabled { opacity: .35; cursor: default; transform: none; background: var(--text3); box-shadow: none; }
.zbus-btn-zip {
  padding: 11px 16px;
  background: var(--zb);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transition: opacity .12s;
}
.zbus-btn-zip:hover { opacity: .88; }

/* ================================================================
   FORM ELEMENTS（ライト）
   ================================================================ */
.zbus-form-section {
  padding: 22px 24px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
  background: #fff;
}
.zbus-form-section:last-of-type { border-bottom: none; }
.zbus-form-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--zb);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.zbus-form-section-title .dashicons { font-size: 16px; }
.zbus-form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.zbus-field { margin-bottom: 14px; }
.zbus-field:last-child { margin-bottom: 0; }
.zbus-field label {
  display: block;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.req {
  background: rgba(201,162,39,.15);
  color: var(--zg-dark);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  border: 1px solid rgba(201,162,39,.4);
}
.zbus-field input[type="text"],
.zbus-field input[type="email"],
.zbus-field input[type="tel"],
.zbus-field input[type="number"],
.zbus-field select,
.zbus-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.zbus-field input:focus, .zbus-field select:focus, .zbus-field textarea:focus {
  outline: none;
  border-color: var(--zb);
  box-shadow: 0 0 0 3px rgba(22,69,190,.12);
}
.zbus-field input::placeholder, .zbus-field textarea::placeholder { color: #BEC9DF; }
.zbus-invalid { border-color: #E53E3E !important; }
.zbus-field-hint { font-size: 11px; color: var(--text3); margin-top: 4px; display: block; }
.zbus-form-actions { padding: 20px 24px; background: #fff; }

/* DOB */
.zbus-dob-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.zbus-dob-item { display: flex; align-items: center; gap: 5px; }
.zbus-dob-unit { font-size: 13px; color: var(--text2); white-space: nowrap; }
.zbus-dob-item select { width: auto; padding: 10px 8px; }
.zbus-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--zb-lt);
  border: 1.5px solid var(--zb-md);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--zb);
  font-weight: 600;
}
.zbus-age-label { font-size: 11px; font-weight: 400; }

/* Gender */
.zbus-gender-row { display: flex; gap: 8px; flex-wrap: wrap; }
.zbus-gender-opt { cursor: pointer; }
.zbus-gender-opt input { display: none; }
.zbus-gender-opt span {
  display: inline-block;
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text2);
  background: #fff;
  transition: all .15s;
}
.zbus-gender-opt input:checked + span {
  border: 2px solid var(--zb);
  background: var(--zb-lt);
  color: var(--zb);
  font-weight: 700;
}

/* Zip */
.zbus-zip-row { display: flex; gap: 8px; }
.zbus-zip-row input { flex: 1; }
.zbus-zip-msg { font-size: 12px; margin-top: 6px; padding: 5px 10px; border-radius: 4px; }
.zbus-zip-msg.success { background: var(--ok-lt); color: var(--ok); border: 1px solid rgba(26,122,58,.3); }
.zbus-zip-msg.error   { background: var(--ng-lt);  color: var(--ng);  border: 1px solid rgba(138,26,26,.3); }

/* Pax */
.zbus-pax-row { display: flex; align-items: center; gap: 12px; }
.zbus-pax-row select { flex: 0 0 200px; }
.zbus-pax-hint {
  font-size: 12px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--text3);
  white-space: nowrap;
  background: #f8faff;
}
.has-comp { background: var(--zb-lt) !important; color: var(--zb) !important; border-color: var(--zb-md) !important; font-weight: 600 !important; }
.zbus-companions-notice {
  background: var(--zb-lt);
  border-left: 3px solid var(--zb);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--zb);
  margin-bottom: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.zbus-companion-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.zbus-companion-head {
  background: var(--zb-lt);
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.zbus-comp-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--zb); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.zbus-comp-title { font-size: 13px; font-weight: 700; color: var(--zb); }
.zbus-companion-body { padding: 16px; }

/* Course summary */
.zbus-course-summary { margin-bottom: 16px; }
.zbus-course-summary-inner {
  background: linear-gradient(135deg, var(--zb-deep), var(--zb-dark));
  border-radius: var(--radius);
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}
.zbus-course-summary-inner::after { content:''; position:absolute; top:0; right:0; bottom:0; width:4px; background:var(--zg); }
.zbus-summary-badge { display:inline-block; background:rgba(201,162,39,.2); color:var(--zg); font-size:10px; font-weight:700; padding:2px 10px; border-radius:20px; margin-bottom:8px; border:1px solid rgba(201,162,39,.3); }
.zbus-summary-title { color:#fff; font-size:15px; font-weight:700; margin-bottom:4px; }
.zbus-summary-meta  { color:rgba(200,220,255,.6); font-size:12px; margin-bottom:8px; }
.zbus-summary-times { display:flex; flex-direction:column; gap:3px; }
.zbus-summary-times span { color:rgba(200,220,255,.75); font-size:12px; }

/* Confirm */
.zbus-confirm-lead { font-size: 13px; color: var(--text3); margin-bottom: 16px; }
.zbus-confirm-card { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.zbus-confirm-head { background: linear-gradient(135deg, var(--zb-deep), var(--zb-dark)); padding: 18px 20px; }
.zbus-confirm-course { color: #fff; font-size: 15px; font-weight: 700; }
.zbus-confirm-date   { color: rgba(200,220,255,.6); font-size: 12px; margin-top: 4px; }
.zbus-confirm-rows   { background: #fff; }
.zbus-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  gap: 10px;
}
.zbus-confirm-row:last-child { border-bottom: none; }
.zbus-confirm-row.sub { padding-left: 32px; background: var(--bg); }
.zbus-confirm-row .label { color: var(--text3); white-space: nowrap; flex-shrink: 0; min-width: 90px; }
.zbus-confirm-row .value { color: var(--text); font-weight: 600; text-align: right; }
.zbus-confirm-comp-title { padding: 9px 20px 4px; font-size: 12px; font-weight: 700; color: var(--zb); border-top: 1px solid var(--border); background: var(--zb-lt); }
.zbus-error-msg { background: var(--ng-lt); color: var(--ng); border: 1px solid rgba(138,26,26,.3); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; margin-top: 10px; }

/* Done */
.zbus-done-wrap { padding: 40px 24px 32px; text-align: center; }
.zbus-done-icon { width: 72px; height: 72px; background: var(--ok-lt); border: 2px solid rgba(26,122,58,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.zbus-done-icon .dashicons { font-size: 36px; color: var(--ok); }
.zbus-done-title { font-size: 22px; font-weight: 900; margin: 0 0 10px; color: var(--text); }
.zbus-done-sub   { font-size: 13px; color: var(--text3); line-height: 1.8; margin: 0 0 20px; }
.zbus-done-booking-num { font-size: 13px; margin-bottom: 12px; color: var(--text3); }
.zbus-done-booking-num strong { color: var(--zb); font-size: 20px; letter-spacing: .05em; font-weight: 900; }
.zbus-done-details { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 20px; text-align: left; margin-bottom: 14px; }
.zbus-done-row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.zbus-done-row:last-child { border-bottom: none; }
.zbus-done-row span:first-child { color: var(--text3); }
.zbus-done-row span:last-child  { font-weight: 600; color: var(--text); }
.zbus-done-email-note { font-size: 12px; color: var(--text3); }

/* Misc */
.zbus-loading { padding: 24px; color: var(--text3); font-size: 14px; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.zbus-spin { display: inline-block; animation: spin .8s linear infinite; }
.zbus-btn-submit .dashicons { font-size: 18px; vertical-align: -4px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 640px) {
  .zbus-content { padding: 16px 12px 110px; }
  .zbus-card-body { padding: 16px; }
  .zbus-card-header { padding: 16px 16px 12px; }
  .zbus-form-section { padding: 16px 16px 0; padding-bottom: 16px; }
  .zbus-form-grid2 { grid-template-columns: 1fr; }
  .zbus-hero { padding: 22px 16px 18px; }
  .zbus-hero-title { font-size: 22px; }
  .zbus-mascot { width: 100px; }
  .zbus-hero-strip { padding: 9px 16px; }
  .zbus-step-label { display: none; }
  .zbus-stepbar { padding: 10px 12px; }
  .zbus-step-num { width: 26px; height: 26px; font-size: 12px; }
  .zbus-dob-row { flex-wrap: nowrap; }
  .zbus-dob-item select { padding: 9px 4px; font-size: 12px; }
  .zbus-confirm-row .label { min-width: 70px; }
  .zbus-pax-row select { flex: 1; }
}
@media (max-width: 400px) {
  .zbus-step-line { margin: 0 3px; }
}

/* ================================================================
   FULLSCREEN PAGE — テーマのヘッダー要素を非表示
   .zbus-fullscreen-page は body クラスとして付与される
   対象：Lightning / Cocoon / Swell / Twenty系 主要テーマ
   ================================================================ */

/* ── ページタイトル・パンくず ── */
.zbus-fullscreen-page .entry-header,
.zbus-fullscreen-page .page-header,
.zbus-fullscreen-page .vk_page_header,
.zbus-fullscreen-page .vk_page_header_outer,
.zbus-fullscreen-page .page-title-area,
.zbus-fullscreen-page .breadcrumb,
.zbus-fullscreen-page .breadcrumbs,
.zbus-fullscreen-page .vk_breadcrumb,
.zbus-fullscreen-page .vk-breadcrumb,
.zbus-fullscreen-page nav.breadcrumb,
.zbus-fullscreen-page .site-breadcrumb,
.zbus-fullscreen-page .entry-title,
.zbus-fullscreen-page h1.entry-title,
.zbus-fullscreen-page h2.entry-title,
.zbus-fullscreen-page .post-title,
.zbus-fullscreen-page .page-section-title,
.zbus-fullscreen-page .wp-block-post-title { display: none !important; }

/* ── ページ内余白をリセット（テーマの padding を上書き） ── */
.zbus-fullscreen-page .entry-content,
.zbus-fullscreen-page .l-main__content,
.zbus-fullscreen-page .site-main,
.zbus-fullscreen-page main.site-main,
.zbus-fullscreen-page article.page,
.zbus-fullscreen-page .l-article,
.zbus-fullscreen-page .hentry { padding: 0 !important; margin: 0 !important; }

/* ── コンテナの最大幅制限を解除 ── */
.zbus-fullscreen-page .entry-content .container,
.zbus-fullscreen-page .entry-content .l-container,
.zbus-fullscreen-page .entry-content .wp-block-group,
.zbus-fullscreen-page main > .container,
.zbus-fullscreen-page .l-container { max-width: 100% !important; padding: 0 !important; }

/* ── プラグインのページ wrapper が全幅になるよう ── */
.zbus-fullscreen-page .zbus-page { margin: 0; width: 100%; }

/* ================================================================
   FULL-BLEED — テーマコンテナを突き破って全幅表示
   Lightning / VK テーマ 専用セレクターも含む
   ================================================================ */

/* ── Lightning/VK 専用 ── */
.zbus-fullscreen-page .l-container,
.zbus-fullscreen-page .l-main,
.zbus-fullscreen-page .l-main__content,
.zbus-fullscreen-page .l-article,
.zbus-fullscreen-page .vk_post-content,
.zbus-fullscreen-page .vk_main_col,
.zbus-fullscreen-page article.hentry,
.zbus-fullscreen-page article.page,
.zbus-fullscreen-page .site-content .container,
.zbus-fullscreen-page #content,
.zbus-fullscreen-page #primary,
.zbus-fullscreen-page .entry-content > *:not(.zbus-page) {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

/* ── フルブリード：コンテナを突き破る汎用テクニック ── */
.zbus-fullscreen-page .zbus-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc( -50vw + 50% ) !important;
  margin-right: calc( -50vw + 50% ) !important;
  box-sizing: border-box !important;
}

/* ── サイドバーを非表示にして 1 カラムにする ── */
.zbus-fullscreen-page .l-side,
.zbus-fullscreen-page .l-sidebar,
.zbus-fullscreen-page #secondary,
.zbus-fullscreen-page .widget-area,
.zbus-fullscreen-page aside.widget-area { display: none !important; }

/* ── メインカラムを 100% 幅に ── */
.zbus-fullscreen-page .l-main,
.zbus-fullscreen-page #primary { width: 100% !important; max-width: 100% !important; }

/* ── overflow をリセット（負マージン技法を有効化） ── */
.zbus-fullscreen-page body,
.zbus-fullscreen-page #page,
.zbus-fullscreen-page .site,
.zbus-fullscreen-page #content,
.zbus-fullscreen-page #primary,
.zbus-fullscreen-page .content-area,
.zbus-fullscreen-page .site-content,
.zbus-fullscreen-page .l-container,
.zbus-fullscreen-page .l-main,
.zbus-fullscreen-page article.hentry,
.zbus-fullscreen-page .entry-content { overflow: visible !important; }

/* ── #zbus-app が body 直下に移動後の見た目 ── */
body > #zbus-app {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ================================================================
   HERO HEADER（ページ最上部・全幅）
   ================================================================ */
.zbus-hero-header {
  background:
    linear-gradient(160deg,
      rgba(6,12,26,.92) 0%,
      rgba(7,25,77,.82) 45%,
      rgba(22,69,190,.68) 100%),
    radial-gradient(ellipse at 75% 50%, #1645BE 0%, #060C1A 70%);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.zbus-hero-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 340px; height: 340px;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 10px,
    rgba(201,162,39,.07) 10px, rgba(201,162,39,.07) 20px
  );
  border-radius: 50%;
  pointer-events: none;
}
.zbus-hero-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--zg,#C9A227) 0%, var(--zb,#1645BE) 50%, var(--zg,#C9A227) 100%);
}
.zbus-hero-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.zbus-hero-header .zbus-badge {
  display: inline-flex;
  background: var(--zg,#C9A227);
  color: #3D2600;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.zbus-hero-header .zbus-hero-title {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 10px;
  text-shadow: 0 2px 16px rgba(6,12,26,.5);
}
.zbus-hero-header .zbus-hero-sub {
  color: rgba(200,220,255,.75);
  font-size: 14px;
  margin: 0;
  letter-spacing: .04em;
}
.zbus-hero-header .zbus-mascot {
  width: 180px;
  max-width: 25%;
  position: relative;
  bottom: -28px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.35));
  flex-shrink: 0;
}
.zbus-hero-header .zbus-hero-strip {
  background: linear-gradient(90deg,
    var(--zgd,#9B7A10) 0%,
    var(--zg,#C9A227) 40%,
    var(--zgd,#9B7A10) 100%);
  padding: 12px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.zbus-hero-header .zbus-hero-strip span {
  font-size: 13px;
  color: #2C1A00;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
}
.zbus-hero-header .zbus-hero-strip .dashicons { font-size: 16px; }

/* ── ステップバーはヒーロー直下で sticky ── */
.zbus-stepbar {
  top: 0; /* ヒーローがsticky でない場合はヘッダー直下で sticky */
}

/* ── 戻るボタン（ライト版） ── */
.zbus-btn-secondary {
  flex: 0 0 auto;
  padding: 17px 24px;
  background: #fff;
  color: var(--zb,#1645BE);
  border: 2px solid var(--zb,#1645BE);
  border-radius: var(--radius,10px);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.zbus-btn-secondary:hover { background: var(--zb-lt,#EEF3FF); }

/* レスポンシブ */
@media (max-width: 640px) {
  .zbus-hero-header-inner { padding: 22px 16px 16px; }
  .zbus-hero-header .zbus-hero-title { font-size: 24px; }
  .zbus-hero-header .zbus-mascot { width: 110px; bottom: -18px; }
  .zbus-hero-header .zbus-hero-strip { padding: 9px 16px; gap: 14px; }
  .zbus-hero-header .zbus-hero-strip span { font-size: 11px; }
}

/* ================================================================
   サイトヘッダーを非表示
   （fine-tourist-test / テーマのナビゲーションバー）
   ================================================================ */
.zbus-fullscreen-page .site-header,
.zbus-fullscreen-page header.site-header,
.zbus-fullscreen-page #masthead,
.zbus-fullscreen-page header#masthead,
.zbus-fullscreen-page .l-header,
.zbus-fullscreen-page #header,
.zbus-fullscreen-page .site-branding,
.zbus-fullscreen-page .global-header,
.zbus-fullscreen-page .header-area,
.zbus-fullscreen-page nav.site-navigation,
.zbus-fullscreen-page .main-navigation,
.zbus-fullscreen-page #site-navigation { display: none !important; }

/* ================================================================
   お問い合わせブロック
   ================================================================ */
.zbus-contact-block {
  background: var(--card,#fff);
  border: 1px solid var(--border,#D4DEED);
  border-radius: var(--radius,10px);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow,0 2px 16px rgba(6,32,80,.10));
}
.zbus-contact-inner { padding: 18px 22px; }
.zbus-contact-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--zb,#1645BE);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.zbus-contact-title .dashicons { font-size: 16px; }
.zbus-contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.zbus-contact-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border,#D4DEED);
  font-size: 13px;
}
.zbus-contact-row:last-child { border-bottom: none; }
.zbus-contact-label {
  color: var(--t3,#8A9AB8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 52px;
}
.zbus-contact-val { color: var(--t1,#0D1B3E); font-weight: 600; }
.zbus-contact-val a { color: var(--zb,#1645BE); text-decoration: none; }
.zbus-contact-val a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .zbus-contact-info { grid-template-columns: 1fr; }
}

/* ================================================================
   フッター お問い合わせ
   ================================================================ */
.zbus-footer-contact {
  background: var(--zbdp, #07194D);
  border-top: 4px solid var(--zg, #C9A227);
  padding: 28px 20px;
  width: 100%;
}
.zbus-footer-contact-inner {
  max-width: 860px;
  margin: 0 auto;
}
.zbus-footer-contact .zbus-contact-title {
  color: var(--zg, #C9A227);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.zbus-footer-contact .zbus-contact-title .dashicons { font-size: 16px; }
.zbus-footer-contact .zbus-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
.zbus-footer-contact .zbus-contact-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  min-width: 220px;
  flex: 1;
}
.zbus-footer-contact .zbus-contact-row:last-child { border-bottom: none; }
.zbus-footer-contact .zbus-contact-label {
  color: rgba(200,220,255,.5);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 52px;
}
.zbus-footer-contact .zbus-contact-val { color: #fff; font-weight: 500; }
.zbus-footer-contact .zbus-contact-val a { color: rgba(200,220,255,.9); text-decoration: none; }
.zbus-footer-contact .zbus-contact-val a:hover { color: var(--zg,#C9A227); }

/* 既存の .zbus-contact-block（使われなくなる）は念のため非表示 */
.zbus-contact-block { display: none !important; }

@media (max-width: 520px) {
  .zbus-footer-contact .zbus-contact-info { flex-direction: column; gap: 0; }
}

/* ── 現地出発時間チップ ── */
.zbus-time-chip.venue {
  background: #F0FFF5;
  border-color: rgba(26,122,58,.3);
  color: var(--ok,#1A7A3A);
}

/* ── コースハイライト（同日複数のとき、カレンダーから選択） ── */
.zbus-course-card.highlight {
  border: 2px solid var(--zg,#C9A227);
  background: var(--zg-lt,#FBF5DC);
  animation: zbus-pulse 1.2s ease-in-out 2;
}
.zbus-course-card.highlight .zbus-course-name { color: var(--zg-dark,#8A6D10); }
@keyframes zbus-pulse {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 0 4px rgba(201,162,39,.25); }
}

/* ── 複数コース案内バナー ── */
.zbus-date-hint {
  background: var(--zg-lt,#FBF5DC);
  border: 1.5px solid rgba(201,162,39,.5);
  border-radius: var(--radius-sm,6px);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--zg-dark,#8A6D10);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.zbus-date-hint .dashicons { font-size: 16px; }

/* ── カレンダー複数コースバッジ ── */
.zbus-cal-day .cal-multi {
  display: inline-block;
  background: var(--zg,#C9A227);
  color: #2C1A00;
  font-size: 8px;
  font-weight: 700;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  line-height: 13px;
  text-align: center;
  position: absolute;
  top: 2px;
  right: 2px;
}
.zbus-cal-day { position: relative; }

/* ================================================================
   キャンセルリンク（ヒーローヘッダー内）
   ================================================================ */
.zbus-cancel-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 8px 40px;
  font-size: 12px;
  color: rgba(200,220,255,.65);
  text-decoration: none;
  background: rgba(0,0,0,.25);
  transition: color .15s;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  position: relative;
  z-index: 2;
}
.zbus-cancel-link:hover { color: rgba(255,220,100,.9); text-decoration: underline; }
.zbus-cancel-link .dashicons { font-size: 14px; width:14px; height:14px; }
@media (max-width:640px) { .zbus-cancel-link { padding: 8px 16px; } }

/* ================================================================
   キャンセルフォーム — タブ
   ================================================================ */
.zcancel-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border,#D4DEED);
  border-radius: var(--radius,10px);
  overflow: hidden;
  margin-bottom: 18px;
}
.zcancel-tab {
  flex: 1;
  padding: 10px 12px;
  background: var(--bg,#EFF4FB);
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--t3,#8A9AB8);
  cursor: pointer;
  transition: all .15s;
}
.zcancel-tab + .zcancel-tab { border-left: 1.5px solid var(--border,#D4DEED); }
.zcancel-tab.active {
  background: var(--zb,#1645BE);
  color: #fff;
}

/* キャンセル実行ボタン */
.zbus-btn-cancel-exec {
  background: linear-gradient(135deg,#C0392B,#922B21) !important;
  box-shadow: 0 4px 16px rgba(192,57,43,.35) !important;
}
.zbus-btn-cancel-exec:hover:not(:disabled) { opacity: .9; }

@media (max-width:640px) {
  .zbus-cancel-link { padding: 8px 16px; }
}

/* ================================================================
   キャンセル モーダル
   ================================================================ */
.zbus-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,25,77,.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: zmFadeIn .2s ease;
}
@keyframes zmFadeIn { from { opacity:0; } to { opacity:1; } }

.zbus-modal {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(6,12,26,.4);
  animation: zmSlideUp .25s ease;
}
@keyframes zmSlideUp { from { transform:translateY(30px);opacity:0; } to { transform:none;opacity:1; } }

.zbus-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--zbdp,#07194D), var(--zbd,#0D2E8A));
  border-radius: 14px 14px 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.zbus-modal-icon { font-size: 22px; color: var(--zg,#C9A227); }
.zbus-modal-title { color: #fff; font-size: 15px; font-weight: 700; }
.zbus-modal-sub   { color: rgba(200,220,255,.6); font-size: 11px; margin-top: 2px; }
.zbus-modal-close {
  margin-left: auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  line-height: 1;
}
.zbus-modal-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ステップバー */
.zbus-modal-steps {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--bg,#EFF4FB);
  border-bottom: 1px solid var(--bd,#D4DEED);
}
.zbus-ms {
  display: flex; align-items: center; gap: 6px; flex: 1;
}
.zbus-ms:last-child { flex: none; }
.zms-num {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bd,#D4DEED);
  background: #fff;
  color: var(--t3,#8A9AB8);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.zms-lbl { font-size: 11px; color: var(--t3,#8A9AB8); white-space: nowrap; }
.zms-line { flex: 1; height: 2px; background: var(--bd,#D4DEED); margin: 0 4px; }
.zbus-ms.active .zms-num { background: var(--zb,#1645BE); border-color: var(--zb,#1645BE); color: #fff; }
.zbus-ms.active .zms-lbl { color: var(--zb,#1645BE); font-weight: 700; }
.zbus-ms.done   .zms-num { background: #FBF5DC; border-color: var(--zg,#C9A227); color: #8A6D10; }
.zbus-ms.done   .zms-lbl { color: #8A6D10; }
.zms-line.done  { background: var(--zg,#C9A227); }

/* ボディ */
.zbus-modal-body { padding: 20px; }
.zm-notice {
  background: #FFF8E1;
  border-left: 4px solid var(--zg,#C9A227);
  padding: 10px 14px; font-size: 12px; color: #8A5A00;
  border-radius: 0 6px 6px 0; margin-bottom: 16px; line-height: 1.7;
}
.zm-notice-red {
  background: #FFF0F0 !important;
  border-color: #E53E3E !important;
  color: #7A1A1A !important;
}
.zm-tabs {
  display: flex; border: 1.5px solid var(--bd,#D4DEED);
  border-radius: 8px; overflow: hidden; margin-bottom: 16px;
}
.zm-tab {
  flex: 1; padding: 9px 10px; background: var(--bg,#EFF4FB);
  border: none; font-size: 12px; font-weight: 600; color: var(--t3,#8A9AB8); cursor: pointer;
}
.zm-tab+.zm-tab { border-left: 1.5px solid var(--bd,#D4DEED); }
.zm-tab.active { background: var(--zb,#1645BE); color: #fff; }
.zm-field { margin-bottom: 12px; }
.zm-field label {
  display: block; font-size: 11px; color: var(--t2,#4A5568);
  font-weight: 700; margin-bottom: 4px;
}
.zm-field input {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--bd,#D4DEED); border-radius: 6px;
  font-size: 13px; color: var(--t1,#0D1B3E);
  transition: border-color .15s;
}
.zm-field input:focus { outline: none; border-color: var(--zb,#1645BE); }
.zm-error {
  background: #FFF0F0; color: #7A1A1A;
  border: 1px solid rgba(229,62,62,.3);
  border-radius: 6px; padding: 8px 12px; font-size: 12px; margin-bottom: 12px;
}

/* 複数予約リスト */
.zm-booking-item {
  border: 1.5px solid var(--bd,#D4DEED); border-radius: 8px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.zm-booking-item:hover { border-color: var(--zb,#1645BE); background: var(--zb-lt,#EEF3FF); }
.zm-booking-title { font-size: 13px; font-weight: 700; color: var(--t1,#0D1B3E); margin-bottom: 3px; }
.zm-booking-meta  { font-size: 11px; color: var(--t3,#8A9AB8); }
.zm-booking-num   { font-size: 11px; color: var(--zb,#1645BE); font-weight: 600; margin-top: 3px; }

/* 予約詳細 */
.zm-detail-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--bd,#D4DEED);
  font-size: 12px;
}
.zm-detail-row:last-child { border-bottom: none; }
.zm-detail-lbl { color: var(--t3,#8A9AB8); }
.zm-detail-val  { font-weight: 600; color: var(--t1,#0D1B3E); text-align: right; }

/* ボタン */
.zm-btn-primary {
  width: 100%; padding: 12px; background: var(--zb,#1645BE); color: #fff;
  border: none; border-radius: 8px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: opacity .15s;
}
.zm-btn-primary:hover { opacity: .9; }
.zm-btn-primary:disabled { opacity: .4; cursor: default; }
.zm-btn-secondary {
  padding: 11px 16px; background: #fff; color: var(--zb,#1645BE);
  border: 2px solid var(--zb,#1645BE); border-radius: 8px;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
.zm-btn-cancel {
  flex: 1; padding: 12px; background: linear-gradient(135deg,#C0392B,#922B21);
  color: #fff; border: none; border-radius: 8px; font-size: 13px;
  font-weight: 700; cursor: pointer;
}

/* 完了 */
.zm-done-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #FFF0F0; border: 2px solid rgba(229,62,62,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #E53E3E; margin: 0 auto 14px;
}
.zm-done-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--t1,#0D1B3E); }
.zm-done-sub   { font-size: 12px; color: var(--t3,#8A9AB8); line-height: 1.7; margin-bottom: 8px; }
.zm-done-num   { font-size: 12px; color: var(--t3,#8A9AB8); }
.zm-done-num strong { color: var(--zb,#1645BE); font-size: 16px; font-weight: 700; }
