/* ===== リセット・基本設定 ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* カラーパレット */
  --sakura:       #f4a7b9;
  --sakura-light: #fef0f4;
  --sakura-mid:   #d4607a;
  --sakura-deep:  #c0506a;
  --sakura-dark:  #9a3050;

  --teal:         #1d9c6a;
  --teal-dark:    #147a52;
  --teal-light:   #e6f7f1;

  --white:        #ffffff;
  --bg:           #fafbfc;
  --bg-alt:       #f4f6f8;
  --border:       #e8ecf0;
  --border-light: #f0f3f5;

  --gray-500:     #8a9ab0;
  --gray-600:     #5a6a7e;
  --gray-700:     #3d4f63;
  --gray-800:     #253040;
  --gray-900:     #141e2b;

  --text:         #1e2d3d;
  --text-muted:   #6a7d93;

  /* フォント */
  --font-heading: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  /* 角丸 */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* シャドウ */
  --shadow-xs: 0 1px 3px rgba(30,45,61,0.06);
  --shadow-sm: 0 2px 8px rgba(30,45,61,0.08);
  --shadow-md: 0 6px 24px rgba(30,45,61,0.09);
  --shadow-lg: 0 16px 48px rgba(30,45,61,0.11);
  --shadow-sakura: 0 6px 28px rgba(192,80,106,0.22);
  --shadow-teal:   0 6px 28px rgba(29,156,106,0.26);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== セクション共通 ===== */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sakura-mid);
  background: var(--sakura-light);
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--sakura-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.logo-main--nowrap {
  white-space: nowrap;
  display: block;
}

.logo-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0;
}

.header-tel-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: white;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: var(--shadow-teal);
}

.header-tel-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(29,156,106,0.38);
}

/* ヒーローが全幅画像になり電話番号が下がったぶん、ヘッダーに番号そのものを出す。
   ここが常時見えている限り、画面のどこにいても番号に手が届く */
.header-tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.header-tel-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.header-tel-num {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ===== ヒーロー ===== */
.hero {
  background: linear-gradient(150deg, #fff8fa 0%, #fef0f4 40%, #f0faf6 100%);
  padding-top: 70px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #fde8ef, transparent);
  top: -160px; right: -80px;
}

.hero-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #d4f5e9, transparent);
  bottom: 0; left: -60px;
}

.hero-inner {
  /* 画像を全幅に出したので2カラムをやめ、テキストは中央に1カラムで置く */
  padding-top: 18px;
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* 全幅の実車写真。container の外にあるので、そのまま画面幅いっぱいに広がる */
.hero-visual {
  position: relative;
  z-index: 1;
  /* 画面の左右いっぱいに出す。container の外に置いてあるのでそのまま全幅になる */
  margin-top: 18px;
}

/* picture はインライン要素のままだと画像が自然幅（1200px）で止まり、
   画面の両端まで届かない。block にして幅を渡す */
.hero-visual picture {
  display: block;
}

.hero-content {
  max-width: 720px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  color: var(--gray-600);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.hero-title {
  font-family: var(--font-heading);
  /* 全幅レイアウトでは見出しを縦に詰めて、ヒーロー全体を1画面に収める */
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  color: var(--sakura-deep);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--sakura) 0%, var(--sakura-light) 100%);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.55;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

.hero-subtitle strong {
  color: var(--sakura-deep);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  /* 1カラム中央寄せになったので、電話2件は横に並べて縦を稼ぐ */
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== CTAボタン ===== */
.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  text-align: left;
}

.cta-btn:active { transform: scale(0.98); }

.cta-btn--primary {
  background: var(--teal);
  color: white;
  box-shadow: var(--shadow-teal);
  animation: pulse-teal 2.8s ease-in-out infinite;
}

.cta-btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(29,156,106,0.42);
  animation: none;
}

.cta-btn--secondary {
  background: white;
  color: var(--sakura-deep);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-btn--secondary:hover {
  border-color: var(--sakura);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sakura);
}

.cta-btn--outline {
  background: white;
  color: var(--sakura-deep);
  border: 2px solid var(--sakura-deep);
  box-shadow: var(--shadow-sm);
}

.cta-btn--outline:hover {
  background: var(--sakura-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sakura);
}

.cta-btn--lg { padding: 18px 28px; }

.cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.cta-btn--secondary .cta-icon-wrap,
.cta-btn--outline .cta-icon-wrap {
  background: var(--sakura-light);
}

.cta-btn--secondary:hover .cta-icon-wrap,
.cta-btn--outline:hover .cta-icon-wrap {
  background: rgba(255,255,255,0.2);
}

.cta-text { display: flex; flex-direction: column; }
.cta-label { font-size: 11.5px; opacity: 0.82; font-weight: 500; }
.cta-number { font-family: var(--font-heading); font-size: 23px; font-weight: 900; letter-spacing: 0.02em; line-height: 1.2; }

/* ===== ヒーロービジュアル ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  /* バッジを画像の角に置くための基準。全幅なので幅いっぱい */
  position: relative;
  display: block;
  width: 100%;
}


.hero-car-img {
  display: block;
  /* 画像は 3:2 のまま一切切らない。**高さ**を viewport 基準で決めて幅を従わせることで、
     桜を全部見せたまま、ヒーロー全体が1画面に収まるようにしている。
     ここを width 基準にすると縦が伸びてファーストビューが画像だけで埋まる */
  /* 左右いっぱいに出すため、幅100%・高さを viewport 基準で固定し、はみ出す分は切る。
     3:2 の画像を全幅にすると縦が長くなりすぎて1画面に収まらないため、
     ここでのクロップは避けられない。object-position で車が欠けない位置に寄せている */
  width: 100%;
  height: 62vh;
  max-height: 660px;
  object-fit: cover;
  object-position: center 58%;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px; left: max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--sakura-deep);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ===== ヒーロー統計 ===== */
.hero-stats {
  background: white;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

/* 信頼バッジ帯 */
.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 0;
}

.trust-band-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-band-item [data-lucide] {
  color: var(--sakura-deep);
  flex-shrink: 0;
}

.trust-band-sep {
  color: var(--border-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}

/* ===== ご利用シーン ===== */
.section-usecases {
  background: var(--bg);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usecase-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura);
}

.usecase-icon-wrap {
  width: 56px; height: 56px;
  background: var(--ic, #fef0f4);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cc, #c0506a);
}

.usecase-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.4;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== 選ばれる理由 ===== */
.section-features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== 実車写真（後方リフト展開）===== */
.lift-photo {
  margin: 40px 0 0;
  max-width: 860px;
  margin-inline: auto;
}

.lift-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.lift-photo figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.lift-photo figcaption strong {
  color: var(--sakura-deep);
  font-weight: 700;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura);
}

.feature-card-inner {
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  position: absolute;
  top: 18px; right: 22px;
}

.feature-icon-wrap {
  width: 56px; height: 56px;
  background: var(--sakura-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sakura-deep);
}

.feature-icon-wrap--green {
  background: var(--teal-light);
  color: var(--teal);
}

.feature-body { flex: 1; min-width: 0; }

.feature-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.4;
  padding-right: 52px;
}

.feature-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ftag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: var(--sakura-light);
  color: var(--sakura-deep);
  gap: 2px;
}

.ftag--green {
  background: var(--teal-light);
  color: var(--teal);
}

/* ===== ご利用の流れ ===== */
.section-flow {
  background: var(--bg);
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.flow-step {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura);
}

.flow-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sakura-mid);
  margin-bottom: 14px;
}

.flow-icon-wrap {
  width: 68px; height: 68px;
  background: var(--sakura-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--sakura-deep);
}

.flow-step h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.4;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: 52px;
  color: var(--border);
}

/* ===== 料金 ===== */
.section-pricing {
  background: white;
}

.pricing-wrap { max-width: 720px; margin: 0 auto; }

.pricing-table-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  table-layout: fixed;
}

.pricing-table td:first-child { width: 65%; }
.pricing-table td:last-child { width: 35%; }

.pricing-table thead tr {
  background: linear-gradient(135deg, var(--sakura-deep) 0%, var(--sakura-mid) 100%);
}

.pricing-table th {
  padding: 16px 22px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
}

.pricing-table th.text-right { text-align: right; }

.pricing-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--sakura-light); transition: background 0.15s; }
.pricing-table .text-right { text-align: right; }

/* 料金列の改行防止 */
.price-amount {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 1px;
}

.price-item-name { font-weight: 600; color: var(--gray-700); }

.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: #fff3e0;
  color: #c84b00;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-left: 8px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--sakura-deep);
  letter-spacing: -0.02em;
}

.price-value.surcharge { color: #c84b00; }

.price-unit {
  font-size: 13px;
  font-weight: 600;
  margin-left: 2px;
}

.surcharge-row td { background: #fffbf5; }

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== 代表挨拶 ===== */
.section-profile {
  background: var(--bg);
}

.profile-card {
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  padding: 52px;
  display: grid;
  grid-template-columns: 200px 1px 1fr;
  gap: 52px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}

.profile-name-block { text-align: center; }

.profile-position {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sakura-mid);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.profile-name-ja {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.profile-name-kana {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.profile-name-ruby {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.profile-divider {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
}

.profile-quote {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--sakura-deep);
  border-left: 4px solid var(--sakura);
  padding-left: 18px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.profile-message p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.95;
  margin-bottom: 14px;
}

.profile-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cert-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sakura-light);
  color: var(--sakura-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-full);
}

/* ===== FAQ ===== */
.section-faq {
  background: white;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--sakura);
  box-shadow: var(--shadow-xs);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.5;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--sakura-light); }

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--sakura-deep);
  color: white;
  font-size: 14px;
  font-weight: 900;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 64px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.85;
  border-left: 3px solid var(--sakura-light);
  padding-left: 14px;
}

/* ===== CTAセクション ===== */
/* ===== 対応エリア ===== */
.section-area {
  background: linear-gradient(160deg, #fff8fa 0%, #fdfbfc 45%, #f4faf7 100%);
}

.area-groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.area-group {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-xs);
}

.area-group--primary {
  border-color: var(--sakura);
  box-shadow: var(--shadow-sm);
}

.area-group-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.area-group-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--sakura-light);
  color: var(--sakura-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-group-icon--teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.area-group-head h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.area-group-head p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.area-badge--ticket {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px 13px;
  border-radius: var(--r-full);
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-list li {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 7px 16px;
}

.area-group--primary .area-list li {
  background: var(--sakura-light);
  border-color: #f7d3dd;
  color: var(--sakura-dark);
}

.area-note-sm {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.area-cta {
  max-width: 880px;
  margin: 36px auto 0;
  text-align: center;
}

.area-cta p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.area-cta .cta-btn {
  display: inline-flex;
}

/* ===== ご利用者の声・実績 ===== */
.section-voice {
  background: var(--bg);
}

/* 実績バー */
.record-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 40px;
}

.record-item {
  background: white;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: var(--sakura-deep);
}

.record-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.record-unit {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
  color: var(--sakura-deep);
}

.record-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 声カード */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sakura);
}

.voice-stars {
  display: flex;
  gap: 2px;
  color: #f0a500;
  fill: #f0a500;
}

.voice-stars svg { fill: currentColor; }

.voice-text {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.voice-avatar {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: var(--sakura-light);
  color: var(--sakura-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-person {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.voice-name {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-800);
}

.voice-use {
  font-size: 12px;
  color: var(--text-muted);
}

.voice-note {
  margin-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
}

.section-cta {
  background: linear-gradient(150deg, #fff8fa 0%, #fef0f4 50%, #f0faf6 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(244,167,185,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-sakura-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sakura);
  border: 1px solid var(--sakura-light);
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.8vw, 36px);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-inner > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== フッター ===== */
.site-footer {
  background: var(--gray-900);
  color: #7a8a9a;
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.footer-permit {
  font-size: 12px;
  color: #4a5a6a;
  line-height: 1.6;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-row {
  display: flex;
  gap: 16px;
  font-size: 14px;
  align-items: baseline;
}

.fi-label {
  color: var(--sakura);
  font-weight: 700;
  min-width: 80px;
  flex-shrink: 0;
  font-size: 13px;
}

.fi-value { color: #9aabb8; }

.fi-link {
  color: #9aabb8;
  transition: color 0.2s;
}

.fi-link:hover { color: var(--sakura); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #3a4a5a;
}

/* ===== 固定CTAバー ===== */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(30,45,61,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.3s;
  /* 初期はヒーロー表示中のため非表示。script.js が表示を制御する */
  opacity: 0;
  pointer-events: none;
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--teal);
  color: white;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-weight: 700;
  transition: background 0.2s;
  box-shadow: var(--shadow-teal);
  animation: pulse-teal 2.8s ease-in-out infinite;
}

.fixed-cta-btn:active {
  background: var(--teal-dark);
  animation: none;
}

.fixed-cta-text { display: flex; flex-direction: column; }

.fixed-cta-label {
  font-size: 11px;
  opacity: 0.88;
  font-weight: 500;
}

.fixed-cta-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* ===== アニメーション ===== */
@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 6px 28px rgba(29,156,106,0.26); }
  50%       { box-shadow: 0 6px 40px rgba(29,156,106,0.52); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay { --delay: 0.15s; }

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr; }

  .profile-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px;
  }

  .profile-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .profile-name-block {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .flow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .flow-arrow { display: none; }

  .voice-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid .voice-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 68px 0; }

  /* 全幅ヒーロー：モバイルでもヒーロー全体が1画面に収まるよう縦を削る */
  .hero { padding-top: 62px; }
  .hero-car-img { height: 34vh; max-height: 300px; border-radius: 0; }
  .hero-img-badge { bottom: 12px; left: 12px; font-size: 11.5px; padding: 7px 12px; }
  .hero-visual { margin-top: 10px; }
  .hero-inner { padding-top: 16px; padding-bottom: 16px; }
  .hero-badge { font-size: 11px; margin-bottom: 10px; }
  .hero-title { font-size: 27px; margin-bottom: 10px; }
  .hero-subtitle { font-size: 13.5px; line-height: 1.75; margin-bottom: 12px; }
  .hero-cta { flex-direction: row; gap: 8px; margin-bottom: 8px; }
  .hero-cta .cta-btn { flex: 1 1 0; min-width: 0; padding: 10px 12px; }
  .hero-cta .cta-icon-wrap { display: none; }
  .hero-cta .cta-label { font-size: 10px; }
  .hero-cta .cta-number { font-size: 15px; }
  .hero-note { font-size: 11.5px; }
  .header-tel-label { display: none; }
  .header-tel-num { font-size: 14px; }
  .header-tel-btn { padding: 9px 16px; }

  .lift-photo { margin-top: 28px; }
  .lift-photo img { border-radius: var(--r-lg); }
  .lift-photo figcaption { font-size: 13px; text-align: left; margin-top: 14px; }

  .hero { padding-top: 64px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .hero-visual { order: -1; }
  .hero-car-img { border-radius: var(--r-lg); }
  .hero-title { font-size: 30px; }

  .usecase-grid { grid-template-columns: repeat(2, 1fr); }

  .record-band { grid-template-columns: repeat(2, 1fr); }
  .record-item { padding: 20px 12px; }
  .record-num { font-size: 26px; }

  .trust-band { gap: 4px; padding: 10px 0; }
  .trust-band-item { padding: 4px 14px; font-size: 12px; }
  .trust-band-sep { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn { width: 100%; max-width: 380px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .usecase-grid { grid-template-columns: 1fr; }
  .area-group { padding: 22px 18px; }
  .area-group-head h3 { font-size: 16.5px; }
  .area-badge--ticket { margin-left: 0; }
  .area-list li { font-size: 13px; padding: 6px 13px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-grid .voice-card:last-child { grid-column: auto; }
  .voice-card { padding: 24px 20px; }
  .record-label { font-size: 11.5px; }
  .logo-sub { display: none; }
  .logo-main { font-size: 18px !important; white-space: nowrap !important; }
  .header-inner { padding: 11px 14px; gap: 8px; }
  .header-tel-btn { padding: 9px 14px; font-size: 13px; }
  .logo-icon svg { width: 26px !important; height: 26px !important; }
  .hero-img-badge { font-size: 12px; padding: 8px 12px; }
  .profile-card { padding: 24px; }
  .profile-name-ja { font-size: 28px; }
  .flow-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-answer { padding-left: 22px; }
  .trust-band-item { padding: 4px 10px; font-size: 11.5px; }

  /* 料金表スマホ最適化 */
  .pricing-table th,
  .pricing-table td { padding: 12px 14px; font-size: 13px; }
  .price-value { font-size: 18px; }
  .price-unit { font-size: 12px; }
  .price-item-name { font-size: 13px; }
  .price-badge { font-size: 10px; padding: 2px 6px; }
}

/* ===== 料金表：ご相談行 ===== */
.consult-row td {
  background: #f8fffe;
}
.price-note-inline {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  background: #f0eaff;
  color: #7c4dff;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
}
.price-consult {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
