/* ============================================
   Appointment MyCred - Booking Form
   Modern, clean, mobile-first design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,400&display=swap');

/* HARICARE v1.10.2: mypage と統一したブランドデザイン（ローズ＋ゴールド／明朝見出し／暖色） */
:root {
  --haricare-primary: #c8839d;        /* rose */
  --haricare-primary-light: #d9a3b4;  /* soft rose */
  --haricare-primary-dark: #b06880;
  --haricare-rose-deep: #7a324a;
  --haricare-accent: #c9a227;         /* gold（旧アンバーから変更） */
  --haricare-accent-dark: #a8893f;
  --haricare-gold: #d4af37;
  --haricare-success: #4f9d7f;
  --haricare-danger: #c0556a;
  --haricare-bg: #ffffff;
  --haricare-bg-subtle: #fdf6f8;      /* rose pale */
  --haricare-bg-muted: #fbeef2;
  --haricare-border: #f0dde2;         /* warm rose-tinted */
  --haricare-text: #2a1c20;           /* warm ink */
  --haricare-text-muted: #7a5f63;
  --haricare-text-light: #b3a39a;
  --haricare-radius: 16px;
  --haricare-radius-sm: 11px;
  --haricare-radius-full: 9999px;
  --haricare-shadow: 0 2px 10px rgba(122,50,74,.06);
  --haricare-shadow-md: 0 10px 28px -8px rgba(122,50,74,.14);
  --haricare-shadow-lg: 0 18px 44px -12px rgba(122,50,74,.18);
  --haricare-transition: .2s cubic-bezier(.4,0,.2,1);
  --haricare-font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --haricare-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', '游明朝', serif;
}

.haricare-booking {
  font-family: var(--haricare-font);
  max-width: 640px;
  margin: 0 auto;
  color: var(--haricare-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.haricare-booking *, .haricare-booking *::before, .haricare-booking *::after { box-sizing: border-box; }

/* ── Steps Progress ── */
.haricare-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 0 16px;
}
.haricare-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .4;
  transition: var(--haricare-transition);
}
.haricare-step.active { opacity: 1; }
.haricare-step.done { opacity: .7; }
.haricare-step-num {
  width: 32px; height: 32px;
  border-radius: var(--haricare-radius-full);
  background: var(--haricare-bg-muted);
  color: var(--haricare-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  transition: var(--haricare-transition);
}
.haricare-step.active .haricare-step-num {
  background: var(--haricare-primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(200,131,157,.18);
}
.haricare-step.done .haricare-step-num { background: var(--haricare-success); color: #fff; }
.haricare-step-label { font-size: 13px; font-weight: 500; white-space: nowrap; }
.haricare-step-line {
  flex: 1; height: 2px; min-width: 20px; max-width: 60px;
  background: var(--haricare-border); margin: 0 4px;
}

/* ── Panels ── */
.haricare-panel {
  background: var(--haricare-bg);
  border: 1px solid var(--haricare-border);
  border-radius: var(--haricare-radius);
  padding: 28px 24px;
  box-shadow: var(--haricare-shadow);
  animation: haricareSlideIn .35s ease;
}
@keyframes haricareSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.haricare-panel-title {
  font-family: var(--haricare-serif);
  font-size: 19px; font-weight: 600; margin: 0 0 20px;
  color: var(--haricare-text); letter-spacing: .02em;
}

/* ── Category Tabs ── */
.haricare-categories {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.haricare-cat-btn {
  padding: 6px 16px; border-radius: var(--haricare-radius-full);
  border: 1px solid var(--haricare-border); background: var(--haricare-bg);
  font-size: 13px; font-weight: 500; color: var(--haricare-text-muted);
  cursor: pointer; transition: var(--haricare-transition);
  font-family: var(--haricare-font);
}
.haricare-cat-btn:hover { border-color: var(--haricare-primary); color: var(--haricare-primary); }
.haricare-cat-btn.active {
  background: var(--haricare-primary); color: #fff; border-color: var(--haricare-primary);
}

/* ── Service Cards ── */
.haricare-service-list { display: flex; flex-direction: column; gap: 10px; }
.haricare-service-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--haricare-radius-sm);
  border: 2px solid var(--haricare-border); cursor: pointer;
  transition: var(--haricare-transition); background: var(--haricare-bg);
}
.haricare-service-card:hover {
  border-color: var(--haricare-primary-light);
  box-shadow: var(--haricare-shadow-md);
  transform: translateY(-1px);
}
.haricare-service-card.selected {
  border-color: var(--haricare-primary);
  background: rgba(200,131,157,.07);
  box-shadow: 0 0 0 3px rgba(200,131,157,.16);
}
.haricare-service-dot {
  width: 10px; height: 10px; border-radius: var(--haricare-radius-full);
  flex-shrink: 0;
}
.haricare-service-info { flex: 1; min-width: 0; }
.haricare-service-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.haricare-service-desc { font-size: 12px; color: var(--haricare-text-muted); }
.haricare-service-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px; color: var(--haricare-text-muted); flex-shrink: 0;
}
.haricare-service-duration { display: flex; align-items: center; gap: 4px; }
.haricare-service-price { font-weight: 600; color: var(--haricare-text); font-size: 15px; }

/* ── Staff Picker ── */
.haricare-staff-list {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.haricare-staff-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--haricare-radius-full);
  border: 2px solid var(--haricare-border); cursor: pointer;
  transition: var(--haricare-transition); font-size: 14px; font-weight: 500;
  background: var(--haricare-bg); font-family: var(--haricare-font);
}
.haricare-staff-chip:hover { border-color: var(--haricare-primary-light); }
.haricare-staff-chip.selected {
  border-color: var(--haricare-primary); background: rgba(200,131,157,.07);
  color: var(--haricare-primary);
}
.haricare-staff-color {
  width: 8px; height: 8px; border-radius: var(--haricare-radius-full);
}

/* ── Calendar ── */
.haricare-calendar-wrap { margin-bottom: 20px; }
.haricare-calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding: 0 4px;
}
.haricare-cal-month { font-family: var(--haricare-serif); font-size: 16px; font-weight: 600; color: var(--haricare-rose-deep); }
.haricare-cal-nav {
  width: 36px; height: 36px; border-radius: var(--haricare-radius-full);
  border: 1px solid var(--haricare-border); background: var(--haricare-bg);
  font-size: 20px; cursor: pointer; transition: var(--haricare-transition);
  display: flex; align-items: center; justify-content: center;
  color: var(--haricare-text-muted); font-family: var(--haricare-font);
}
.haricare-cal-nav:hover { background: var(--haricare-bg-muted); color: var(--haricare-text); }
.haricare-cal-dow {
  display: grid; grid-template-columns: repeat(7,1fr);
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--haricare-text-muted); margin-bottom: 8px;
}
.haricare-cal-dow span:nth-child(6) { color: #3b82f6; }
.haricare-cal-dow span:nth-child(7) { color: var(--haricare-danger); }
.haricare-cal-days {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 4px;
}
.haricare-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--haricare-radius-sm); font-size: 14px; font-weight: 500;
  cursor: default; transition: var(--haricare-transition); border: none;
  background: none; font-family: var(--haricare-font); color: var(--haricare-text-light);
}
.haricare-cal-day.available {
  cursor: pointer; color: var(--haricare-text); background: var(--haricare-bg-subtle);
}
.haricare-cal-day.available:hover {
  background: rgba(200,131,157,.12); color: var(--haricare-primary);
}
.haricare-cal-day.selected {
  background: var(--haricare-primary) !important; color: #fff !important;
  box-shadow: 0 2px 8px rgba(168,80,106,.32);
}
.haricare-cal-day.today { font-weight: 700; }
.haricare-cal-day.today::after {
  content: ''; position: absolute; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--haricare-primary);
}
.haricare-cal-day { position: relative; }

/* ── Time Slots ── */
.haricare-time-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}
.haricare-time-slot {
  padding: 10px 4px; border-radius: var(--haricare-radius-sm);
  border: 1.5px solid var(--haricare-border); text-align: center;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: var(--haricare-transition); background: var(--haricare-bg);
  font-family: var(--haricare-font);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.haricare-time-slot:hover {
  border-color: var(--haricare-primary); color: var(--haricare-primary);
  background: rgba(200,131,157,.07);
}
.haricare-time-slot.selected {
  background: var(--haricare-primary); color: #fff; border-color: var(--haricare-primary);
  box-shadow: 0 2px 8px rgba(168,80,106,.32);
}
.haricare-slot-time { font-size: 14px; font-weight: 600; }
.haricare-slot-label { font-size: 10px; font-weight: 500; color: var(--haricare-text-muted); }
.haricare-time-slot.selected .haricare-slot-label { color: rgba(255,255,255,.85); }
/* 埋まり・過去のスロット: 灰色 + 取り消し線 + ラベル */
.haricare-time-slot.busy {
  background: #f5f5f5;
  color: #bbb;
  border-color: #e5e5e5;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}
.haricare-time-slot.busy .haricare-slot-time {
  text-decoration: line-through;
  color: #bbb;
}
.haricare-time-slot.busy .haricare-slot-label {
  color: #d4736c;
  font-weight: 600;
  font-size: 10px;
}

/* ── Form ── */
.haricare-label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--haricare-text);
}
.haricare-required { color: var(--haricare-danger); }
.haricare-form-group { margin-bottom: 16px; }
.haricare-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.haricare-input {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--haricare-border);
  border-radius: var(--haricare-radius-sm); font-size: 15px;
  transition: var(--haricare-transition); background: var(--haricare-bg);
  font-family: var(--haricare-font); color: var(--haricare-text);
}
.haricare-input:focus {
  outline: none; border-color: var(--haricare-primary);
  box-shadow: 0 0 0 3px rgba(200,131,157,.12);
}
.haricare-input::placeholder { color: var(--haricare-text-light); }
.haricare-textarea { resize: vertical; min-height: 80px; }

/* ── Buttons ── */
.haricare-nav-buttons {
  display: flex; gap: 12px; justify-content: space-between; margin-top: 24px;
}
.haricare-btn {
  padding: 11px 28px; border-radius: var(--haricare-radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: var(--haricare-transition); border: none;
  font-family: var(--haricare-font); display: inline-flex;
  align-items: center; gap: 6px;
}
.haricare-btn:disabled { opacity: .5; cursor: not-allowed; }
.haricare-btn-primary {
  background: linear-gradient(135deg, var(--haricare-primary) 0%, var(--haricare-primary-dark) 100%);
  color: #fff; box-shadow: 0 8px 20px -6px rgba(122,50,74,.34);
}
.haricare-btn-primary:hover:not(:disabled) { box-shadow: 0 12px 26px -6px rgba(122,50,74,.44); transform: translateY(-1px); }
.haricare-btn-accent {
  background: linear-gradient(135deg, var(--haricare-primary) 0%, var(--haricare-primary-dark) 55%, var(--haricare-accent-dark) 100%);
  color: #fff; box-shadow: 0 10px 26px -8px rgba(122,50,74,.4);
}
.haricare-btn-accent:hover:not(:disabled) { box-shadow: 0 14px 32px -8px rgba(122,50,74,.5); transform: translateY(-1px); }
.haricare-btn-outline {
  background: transparent; color: var(--haricare-text-muted);
  border: 1.5px solid var(--haricare-border);
}
.haricare-btn-outline:hover { background: var(--haricare-bg-muted); color: var(--haricare-text); }

/* ── Confirm Card ── */
.haricare-confirm-card {
  background: var(--haricare-bg-subtle); border-radius: var(--haricare-radius-sm);
  padding: 20px;
}
.haricare-confirm-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--haricare-border); font-size: 14px;
}
.haricare-confirm-row:last-child { border: none; }
.haricare-confirm-label { color: var(--haricare-text-muted); font-weight: 500; }
.haricare-confirm-value { font-weight: 600; text-align: right; }

/* ── Done ── */
.haricare-done { text-align: center; padding: 20px 0; }
.haricare-done-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  color: var(--haricare-primary-dark);
  animation: haricareCheckPop .5s ease;
}
@keyframes haricareCheckPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.haricare-done-title { font-family: var(--haricare-serif); font-size: 21px; font-weight: 600; margin-bottom: 8px; color: var(--haricare-rose-deep); letter-spacing: .02em; }
.haricare-done-text { color: var(--haricare-text-muted); font-size: 14px; margin-bottom: 20px; }
.haricare-done-summary {
  text-align: left; background: var(--haricare-bg-subtle);
  border-radius: var(--haricare-radius-sm); padding: 16px;
  font-size: 14px;
}

/* ── Loading ── */
.haricare-loading { text-align: center; padding: 32px; }
.haricare-spinner {
  width: 32px; height: 32px; border: 3px solid var(--haricare-border);
  border-top-color: var(--haricare-primary); border-radius: 50%;
  animation: haricareSpin .7s linear infinite; margin: 0 auto;
}
@keyframes haricareSpin { to { transform: rotate(360deg); } }
.haricare-no-slots { text-align: center; padding: 24px; color: var(--haricare-text-muted); font-size: 14px; }

/* ── Mobile ── */
@media (max-width: 480px) {
  .haricare-panel { padding: 20px 16px; }
  .haricare-form-row { grid-template-columns: 1fr; }
  .haricare-step-label { display: none; }
  .haricare-step-line { min-width: 16px; }
  .haricare-time-grid { grid-template-columns: repeat(3, 1fr); }
  .haricare-service-card { flex-wrap: wrap; }
  .haricare-service-meta { width: 100%; padding-left: 24px; }
}

/* ============================================
   Deposit-specific styles
   ============================================ */

/* Deposit Notice */
.haricare-deposit-notice {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a; border-radius: var(--haricare-radius-sm);
  padding: 18px; margin: 16px 0;
}
.haricare-deposit-notice-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.haricare-deposit-notice-body { flex: 1; }
.haricare-deposit-notice-title { font-weight: 700; font-size: 14px; color: #92400e; margin: 0 0 6px; }
.haricare-deposit-notice-text { font-size: 13px; color: #78350f; margin: 0; line-height: 1.7; }
.haricare-deposit-notice-text strong { color: #b45309; font-size: 15px; }

/* Stripe Card Element */
.haricare-stripe-section { margin: 20px 0; }
.haricare-stripe-element {
  padding: 14px 16px;
  border: 2px solid var(--haricare-border);
  border-radius: var(--haricare-radius-sm);
  background: var(--haricare-bg);
  transition: var(--haricare-transition);
}
.haricare-stripe-element:focus-within,
.haricare-stripe-element.StripeElement--focus {
  border-color: var(--haricare-primary);
  box-shadow: 0 0 0 3px rgba(200,131,157,.16);
}
.haricare-stripe-element.StripeElement--invalid {
  border-color: var(--haricare-danger);
}
.haricare-stripe-error {
  color: var(--haricare-danger); font-size: 13px; margin-top: 8px; min-height: 18px;
}

/* Pay button accent style for deposit */
.haricare-deposit-mode .haricare-btn-accent {
  background: linear-gradient(135deg, var(--haricare-primary) 0%, var(--haricare-primary-dark) 55%, var(--haricare-accent-dark) 100%);
  padding: 14px 32px; font-size: 15px;
  box-shadow: 0 10px 28px -8px rgba(122,50,74,.4);
  width: 100%;
  justify-content: center;
}
.haricare-deposit-mode .haricare-btn-accent:hover:not(:disabled) {
  box-shadow: 0 14px 34px -8px rgba(122,50,74,.5);
  transform: translateY(-1px);
}
.haricare-deposit-mode .haricare-btn-accent:disabled {
  background: #d1d5db; box-shadow: none; transform: none;
}

/* ============================================
   v1.14.46: 予約CVR強化（緊急訴求 / レビュー / 声 / FAQ）
   ============================================ */

/* ── 緊急訴求ヘッダー（v1.14.48 斬新版：ディープローズ×ゴールドのプレミアム帯） ── */
.hb-urgent {
  font-family: var(--haricare-font);
  max-width: 640px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #6f2c41 0%, #8c3f59 48%, #b06880 100%);
  border: none;
  border-radius: 20px;
  box-shadow: 0 16px 38px -14px rgba(122,50,74,.55);
  padding: 18px 22px 16px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* 装飾：右上のゴールドのグロー（左の縦バーは廃止） */
.hb-urgent::after {
  content: ''; position: absolute; right: -50px; top: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.28), transparent 70%);
  pointer-events: none;
}
.hb-urgent-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: #fbe8c4;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--haricare-radius-full);
  padding: 5px 13px 5px 11px; margin-bottom: 14px;
}
.hb-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--haricare-gold);
  box-shadow: 0 0 0 0 rgba(212,175,55,.6);
  animation: hb-pulse 1.6s infinite;
}
@keyframes hb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,.55); }
  70% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.hb-urgent-grid {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
/* 残り席数：大きなゴールド数字 */
.hb-seatbox { display: flex; align-items: baseline; gap: 6px; font-family: var(--haricare-serif); }
.hb-seatbox-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92); }
.hb-seatbox-num {
  font-size: 48px; font-weight: 700; line-height: .85;
  color: var(--haricare-gold);
  text-shadow: 0 2px 14px rgba(212,175,55,.45);
}
.hb-seatbox-unit { font-size: 17px; font-weight: 600; color: rgba(255,255,255,.92); }
/* カウントダウン：デジットタイル */
.hb-cdbox { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.hb-cdbox-label { font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.78); }
.hb-cdtiles { display: flex; align-items: center; gap: 4px; }
.hb-tile {
  min-width: 40px; padding: 8px 5px; text-align: center;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums;
  color: #fff; line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hb-colon { font-size: 18px; font-weight: 700; color: rgba(255,255,255,.55); }
.hb-urgent-note {
  position: relative; z-index: 1;
  margin-top: 14px; font-size: 11.5px; color: rgba(255,255,255,.82); line-height: 1.55;
}

/* ── 信頼ブロック共通 ── */
.hb-trust { font-family: var(--haricare-font); max-width: 640px; margin: 40px auto 0; }
.hb-section { margin-top: 34px; }
.hb-section-title {
  font-family: var(--haricare-serif);
  font-size: 20px; font-weight: 600; color: var(--haricare-text);
  text-align: center; margin: 0 0 20px; position: relative;
}
.hb-section-title::after {
  content: ''; display: block; width: 40px; height: 2px; margin: 10px auto 0;
  background: linear-gradient(90deg, var(--haricare-primary), var(--haricare-accent));
}

/* ── Google レビュー ── */
.hb-reviews {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--haricare-bg);
  border: 1px solid var(--haricare-border);
  border-radius: var(--haricare-radius);
  box-shadow: var(--haricare-shadow);
  padding: 18px 22px; flex-wrap: wrap;
}
.hb-reviews-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hb-g { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--haricare-text); }
.hb-score { font-size: 30px; font-weight: 700; color: var(--haricare-rose-deep); line-height: 1; font-family: var(--haricare-serif); }
.hb-stars { color: var(--haricare-gold); font-size: 17px; letter-spacing: 2px; }
.hb-rev-count { font-size: 12.5px; color: var(--haricare-text-muted); }
.hb-rev-link {
  font-size: 13px; font-weight: 600; color: var(--haricare-primary-dark);
  text-decoration: none; white-space: nowrap;
}
.hb-rev-link:hover { text-decoration: underline; }

/* ── 患者様の声 ── */
.hb-voices { display: grid; gap: 14px; }
.hb-voice {
  background: var(--haricare-bg);
  border: 1px solid var(--haricare-border);
  border-radius: var(--haricare-radius);
  box-shadow: var(--haricare-shadow);
  padding: 18px 20px; margin: 0; position: relative;
}
.hb-voice::before {
  content: '\201C'; position: absolute; top: 6px; right: 16px;
  font-family: var(--haricare-serif); font-size: 48px; line-height: 1;
  color: var(--haricare-bg-muted);
}
.hb-voice-stars { color: var(--haricare-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.hb-voice-body { margin: 0 0 12px; font-size: 14px; line-height: 1.8; color: var(--haricare-text); position: relative; z-index: 1; }
.hb-voice-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hb-voice-name { font-size: 13px; font-weight: 600; color: var(--haricare-text); }
.hb-voice-tag {
  font-size: 11px; font-weight: 600; color: var(--haricare-primary-dark);
  background: var(--haricare-bg-muted); border-radius: var(--haricare-radius-full);
  padding: 3px 10px;
}

/* ── FAQ ── */
.hb-faq { display: grid; gap: 10px; }
.hb-faq-item {
  background: var(--haricare-bg);
  border: 1px solid var(--haricare-border);
  border-radius: var(--haricare-radius-sm);
  box-shadow: var(--haricare-shadow);
  overflow: hidden;
}
.hb-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; list-style: none; padding: 15px 18px;
  font-size: 14px; font-weight: 600; color: var(--haricare-text);
}
.hb-faq-q::-webkit-details-marker { display: none; }
.hb-faq-ico { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.hb-faq-ico::before, .hb-faq-ico::after {
  content: ''; position: absolute; background: var(--haricare-primary-dark);
  transition: var(--haricare-transition);
}
.hb-faq-ico::before { left: 0; top: 6px; width: 14px; height: 2px; }
.hb-faq-ico::after { left: 6px; top: 0; width: 2px; height: 14px; }
.hb-faq-item[open] .hb-faq-ico::after { transform: rotate(90deg); opacity: 0; }
.hb-faq-a {
  padding: 0 18px 16px; font-size: 13px; line-height: 1.8;
  color: var(--haricare-text-muted);
}

/* ── 末尾CTA ── */
.hb-cta-foot { text-align: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--haricare-border); }
.hb-cta-text { font-size: 13.5px; line-height: 1.9; color: var(--haricare-text-muted); margin: 0 0 18px; }
.hb-cta-btn {
  display: inline-block; text-decoration: none;
  font-size: 14px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--haricare-primary) 0%, var(--haricare-primary-dark) 60%, var(--haricare-accent-dark) 100%);
  border-radius: var(--haricare-radius-full);
  padding: 13px 34px;
  box-shadow: 0 10px 28px -8px rgba(122,50,74,.4);
  transition: var(--haricare-transition);
}
.hb-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -8px rgba(122,50,74,.5); }

@media (max-width: 520px) {
  .hb-urgent-grid { gap: 12px; }
  .hb-cdbox { align-items: flex-start; }
  .hb-seatbox-num { font-size: 42px; }
  .hb-tile { min-width: 36px; font-size: 20px; padding: 7px 4px; }
  .hb-reviews { justify-content: center; text-align: center; }
  .hb-score { font-size: 26px; }
}

/* ============================================
   v1.14.47: Bookly ブランドスキン
   既定のゴールド(#ad8200)を、サイトのローズ＋ゴールドへ寄せる。
   ※ booking.css は [haricare_cro] を置いたページ（＝予約ページ）のみで読み込まれるため、
     .bookly-css-root スコープの上書きは予約ページ内の Bookly だけに作用する。
   ※ 最もきれいな方法は Bookly管理 → Appearance のメインカラーを下記ローズに設定すること。
     このCSSはその補完（ボタンのグラデ等、設定では出せない部分）。
   ============================================ */
.bookly-css-root .bookly-btn,
.bookly-css-root button.bookly-btn,
.bookly-css-root .ladda-button {
  background: linear-gradient(135deg, var(--haricare-primary) 0%, var(--haricare-primary-dark) 60%, var(--haricare-accent-dark) 100%) !important;
  border-color: var(--haricare-primary-dark) !important;
  color: #fff !important;
  border-radius: var(--haricare-radius-sm) !important;
}
.bookly-css-root .bookly-btn:hover,
.bookly-css-root button.bookly-btn:hover {
  filter: brightness(1.04);
}
/* 進捗トラッカーのアクティブ色（#ad8200 → ローズ） */
.bookly-css-root .bookly-progress-tracker .active,
.bookly-css-root .bookly-progress-tracker .active * {
  color: var(--haricare-rose-deep) !important;
  border-color: var(--haricare-rose-deep) !important;
}
/* 進捗バーの塗り（amberのインライン/塗りをローズへ） */
.bookly-css-root .bookly-progress-tracker .active .bookly-progress-dot,
.bookly-css-root .bookly-progress-tracker .bookly-progress-bar-active,
.bookly-css-root .bookly-progress-tracker td.active > div {
  background-color: var(--haricare-primary) !important;
}
/* 見出し・リンク・選択中の各種アクセントもローズ寄りに */
.bookly-css-root a { color: var(--haricare-primary-dark) !important; }
.bookly-css-root .bookly-label-error { color: var(--haricare-danger) !important; }
