/* =========================================================
   かながわ遺品整理みつもり比較 LP
   Palette: navy #2C4A6E / paleblue #DCEAF5 / palegreen #DEEDE4
            gray #E8EAED / teal #4A8F7B / white
   ========================================================= */

:root {
  --navy: #2C4A6E;
  --navy-dark: #1F3A52;
  --paleblue: #DCEAF5;
  --paleblue-light: #EFF5FA;
  --palegreen: #DEEDE4;
  --palegreen-light: #F0F7F3;
  --gray: #E8EAED;
  --gray-bg: #F7F9FB;
  --teal: #4A8F7B;
  --teal-dark: #3D7867;
  --text: #33404F;
  --text-light: #6B7A8C;
  --error: #C4604F;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(44, 74, 110, 0.08);
  --shadow-lg: 0 8px 30px rgba(44, 74, 110, 0.14);
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-display: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --fixed-cta-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: #fff;
  -webkit-text-size-adjust: 100%;
  padding-bottom: var(--fixed-cta-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
ul, ol { list-style: none; }

.section-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.sp-only { display: inline; }
.pc-only { display: none; }

/* ---------- 見出し共通 ---------- */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--teal);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
}
.title-small { font-size: 0.7em; font-weight: 500; display: inline-block; }
.title-break { display: none; color: var(--teal); }
.title-accent { color: var(--teal); }
.title-icon { display: inline-block; vertical-align: -8px; margin-right: 6px; }
.section-lead { margin-bottom: 18px; }
.small-note { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }

/* ---------- CTAボタン共通 ---------- */
.btn-cta {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 8px auto 0;
  padding: 16px 20px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(74, 143, 123, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  line-height: 1.4;
}
.btn-cta:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(74, 143, 123, 0.4); }
.btn-cta .btn-note { display: block; font-size: 12px; font-weight: 500; opacity: 0.9; margin-top: 2px; }
.btn-cta--large { padding: 20px; font-size: 20px; }
.text-cta { text-align: center; margin-top: 20px; }
.text-cta a { font-weight: 700; font-size: 17px; text-decoration: none; border-bottom: 2px solid var(--palegreen); padding-bottom: 2px; }

/* ---------- ① ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray);
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 56px;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
}
.brand-sub { display: block; font-size: 10px; color: var(--text-light); }
.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-badge {
  display: none;
  font-size: 12px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
}
.header-cta {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- ② ファーストビュー ---------- */
.fv {
  background: linear-gradient(180deg, var(--paleblue-light) 0%, #fff 100%);
  padding: 32px 0 40px;
  overflow: hidden;
}
.fv-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.fv-area-label {
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
  line-height: 1.4;
}
.fv-area-label strong {
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.fv-area-label span {
  padding: 6px 12px;
  display: flex;
  align-items: center;
}
.fv-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
}
.fv-title em {
  font-style: normal;
  color: var(--teal);
  border-bottom: 6px solid var(--palegreen);
}
.fv-sub { font-size: 15px; margin-bottom: 18px; }
.fv-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.fv-badges li {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--paleblue);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  box-shadow: var(--shadow);
}
.fv-badges li img { margin: 0 auto 6px; }
.fv-note { font-size: 12px; color: var(--text-light); text-align: left; margin-top: 12px; }
.fv-visual { margin-top: 24px; }
.fv-visual img { max-width: 440px; margin: 0 auto; }

/* ---------- ③ フォームセクション ---------- */
.form-section {
  background: linear-gradient(180deg, var(--palegreen-light), var(--paleblue-light));
  padding: 48px 0 56px;
  border-top: 3px solid var(--palegreen);
  border-bottom: 3px solid var(--palegreen);
}
.form-lead { text-align: center; margin-bottom: 22px; font-size: 15px; }
.form-lead-img { max-width: 200px; margin: 0 auto 12px; }
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 18px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.progress-area { margin-bottom: 20px; }
.progress-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-align: center; }
.progress-bar { height: 8px; background: var(--gray); border-radius: 999px; overflow: hidden; }
.progress-fill {
  height: 100%;
  width: 14%;
  background: linear-gradient(90deg, var(--teal), #6FB39F);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.form-step { display: none; animation: stepIn 0.25s ease; }
.form-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .form-step { animation: none; }
}

.step-title {
  font-size: 19px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.5;
}
.step-note { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

/* 選択ボタン */
.choice-list { display: flex; flex-direction: column; gap: 10px; }
.choice-grid { flex-direction: row; flex-wrap: wrap; }
.choice-grid .choice { width: calc(50% - 5px); }
.choice-grid .choice-wide { width: 100%; }
.choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 12px 10px 34px;
  background: var(--gray-bg);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.choice:hover { border-color: var(--navy); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { position: relative; }
.choice::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #B9C4D0;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.choice-check::before { border-radius: 6px; }
.choice:has(input:checked),
.choice.is-checked {
  border-color: var(--navy);
  background: var(--paleblue);
  font-weight: 700;
  color: var(--navy);
}
.choice:has(input:checked)::before,
.choice.is-checked::before {
  border-color: var(--teal);
  background: var(--teal);
}
.choice:has(input:checked)::after,
.choice.is-checked::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}
.choice:has(input:focus-visible) { outline: 3px solid var(--teal); outline-offset: 2px; }
.choice-compact .choice, .choice-compact.choice-list .choice { min-height: 48px; font-size: 14px; }
.choice-time { flex-direction: column; }
.choice-time .choice { width: 100%; }

/* 入力フィールド */
.field { margin-bottom: 18px; }
.field-label { display: block; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.req, .opt {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 7px;
  vertical-align: 2px;
  margin-left: 6px;
}
.req { background: var(--error); color: #fff; }
.opt { background: var(--gray); color: var(--text-light); }
.field input, .field textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  background: var(--gray-bg);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.field input.is-error, .field textarea.is-error { border-color: var(--error); background: #FDF6F4; }
.field-help { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.field-error { display: none; font-size: 13px; color: var(--error); font-weight: 700; margin-top: 5px; }
.field-error.is-visible { display: block; }

.privacy-agree { font-size: 13px; color: var(--text-light); margin: 16px 0; line-height: 1.7; }

.btn-next, .btn-submit {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 14px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(74, 143, 123, 0.35);
  transition: background 0.15s, transform 0.15s;
}
.btn-next:hover, .btn-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-submit { font-size: 18px; padding: 16px; }
.btn-submit:disabled { background: #9BB8AE; cursor: wait; transform: none; }
.btn-next:focus-visible, .btn-submit:focus-visible, .btn-back:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

.form-footer { margin-top: 16px; }
.btn-back {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 6px;
}
.btn-back.is-visible { display: inline-block; }
.btn-back:hover { color: var(--navy); text-decoration: underline; }
.form-micro {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  border-top: 1px dashed var(--gray);
  padding-top: 12px;
}

/* honeypot(スパム対策・視覚的に隠す) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 同意チェック */
.agree-field { margin: 16px 0 0; }
.choice-agree {
  justify-content: flex-start;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.6;
  min-height: 52px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.choice-agree a { color: var(--teal); }
.choice-agree .req { vertical-align: 1px; }

/* 電話注記 */
.tel-note { display: block; font-size: 12px; color: var(--text-light); margin-top: 4px; line-height: 1.7; }

/* 確認画面 */
.confirm-list {
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.confirm-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row:nth-child(odd) { background: var(--gray-bg); }
.confirm-row dt { grid-row: 1; grid-column: 1; font-weight: 700; color: var(--navy); font-size: 13px; }
.confirm-row dd { grid-row: 2; grid-column: 1 / -1; overflow-wrap: anywhere; line-height: 1.6; }
.confirm-row .confirm-edit { grid-row: 1; grid-column: 2; justify-self: end; }
.confirm-edit {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  background: none;
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 2px 10px;
  cursor: pointer;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.confirm-note { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* 完了画面 */
.form-complete { text-align: center; }
.complete-icon img { margin: 0 auto 10px; }
.complete-lead { margin-bottom: 18px; font-size: 15px; }
.complete-flow {
  background: var(--palegreen-light);
  border: 1.5px solid var(--palegreen);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  margin-bottom: 16px;
}
.complete-flow-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; text-align: center; }
.complete-flow ol { counter-reset: cf; }
.complete-flow li {
  counter-increment: cf;
  position: relative;
  padding-left: 34px;
  margin-bottom: 8px;
  font-size: 14px;
}
.complete-flow li::before {
  content: counter(cf);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complete-note { font-size: 14px; margin-bottom: 10px; }
.complete-small { font-size: 12px; color: var(--text-light); }

/* ---------- ④ お悩み ---------- */
.worries { padding: 52px 0; }
.worry-list { max-width: 640px; margin: 0 auto 24px; }
.worry-list li {
  position: relative;
  background: var(--gray-bg);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 14px 16px 14px 48px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.worry-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--palegreen);
  border-radius: 6px;
}
.worry-list li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: translateY(-75%) rotate(-45deg);
}
.worry-close { text-align: center; font-size: 15px; }

/* ---------- ⑤ 比較 ---------- */
.compare { background: var(--paleblue-light); padding: 52px 0; }
.compare-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 640px;
  margin: 24px auto;
}
.compare-arrow {
  text-align: center;
  color: var(--teal);
  font-size: 20px;
  transform: rotate(90deg);
  line-height: 1;
}
.compare-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  flex: 1;
}
.compare-card--before { border: 1.5px solid var(--gray); }
.compare-card--after { border: 2px solid var(--teal); position: relative; }
.compare-card-icon { margin: 0 auto 8px; }
.compare-card-label { font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 10px; font-size: 16px; }
.compare-card--after .compare-card-label { color: var(--teal); }
.compare-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
}
.compare-card--before li::before { content: "・"; position: absolute; left: 4px; color: var(--text-light); }
.compare-card--after li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}

/* ---------- ⑥ エリア ---------- */
.area { padding: 52px 0; }
.area-map { max-width: 460px; margin: 0 auto 16px; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.area-tags li {
  background: var(--paleblue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
}
.area-remote {
  background: var(--palegreen-light);
  border: 1.5px solid var(--palegreen);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
}
.area-remote-title { font-weight: 700; color: var(--teal-dark); font-size: 16px; margin-bottom: 8px; }

/* ---------- ⑦ サービス ---------- */
.services { background: var(--gray-bg); padding: 52px 0; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.service-card img { margin: 0 auto 10px; }
.service-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; text-align: left; }
.services-close {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--palegreen);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.services-close img { flex-shrink: 0; margin-top: 4px; }

/* ---------- ⑧ 料金相場 ---------- */
.price { padding: 52px 0; }
.price-table {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 12px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1.5px solid var(--paleblue);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.price-table th, .price-table td { padding: 13px 14px; text-align: left; }
.price-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}
.price-table tbody th {
  background: var(--paleblue-light);
  color: var(--navy);
  font-weight: 700;
  width: 44%;
  border-top: 1px solid var(--paleblue);
}
.price-table tbody td { border-top: 1px solid var(--paleblue); font-weight: 500; }
.price-table tbody tr:nth-child(even) td { background: var(--gray-bg); }
.price .small-note { max-width: 640px; margin-left: auto; margin-right: auto; }
.price-factors {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  max-width: 640px;
  margin: 0 auto 22px;
}
.price-factors-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-factors li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 5px;
}
.price-factors li::before { content: "●"; position: absolute; left: 0; font-size: 9px; top: 7px; color: var(--teal); }
.price-close { text-align: center; margin-bottom: 20px; }

/* ---------- ⑨ 理由 ---------- */
.reasons { background: var(--paleblue-light); padding: 52px 0; }
.reason-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  text-align: center;
}
.reason-card img { margin: 0 auto 10px; }
.reason-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.reason-card p { font-size: 14px; text-align: left; }
.reason-card small { color: var(--text-light); }

/* ---------- ⑩ 流れ ---------- */
.flow { padding: 52px 0; }
.flow-list { max-width: 640px; margin: 0 auto 28px; }
.flow-item {
  display: flex;
  gap: 14px;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 22px;
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 10px solid var(--palegreen);
}
.flow-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-item h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.flow-item p { font-size: 14px; }

/* ---------- ⑪ トラブル ---------- */
.trouble { background: var(--gray-bg); padding: 52px 0; }
.trouble-list { display: grid; gap: 14px; margin-bottom: 22px; }
.trouble-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
}
.trouble-card h3 {
  font-size: 16px;
  color: var(--navy);
  padding-left: 12px;
  border-left: 4px solid var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.trouble-card p { font-size: 14px; margin-bottom: 8px; }
.trouble-avoid {
  background: var(--palegreen-light);
  border-radius: 10px;
  padding: 12px 14px;
}
.trouble-avoid span {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 8px;
  margin-right: 8px;
}
.trouble-close { text-align: center; font-size: 15px; }

/* ---------- ⑫ FAQ ---------- */
.faq { padding: 52px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--paleblue); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px 15px 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
  min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-q, .faq-a {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
}
.faq-q { background: var(--navy); color: #fff; }
.faq-a { background: var(--teal); color: #fff; }
.faq-answer {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px 14px;
  align-items: flex-start;
}
.faq-answer p { font-size: 14px; flex: 1; }
.faq-answer .faq-a { margin-top: 2px; }

/* ---------- ⑬ 最終CTA ---------- */
.closing {
  background: linear-gradient(180deg, var(--navy) 0%, #3A5C84 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.closing-lead { font-size: 15px; margin-bottom: 16px; opacity: 0.95; }
.closing-badges { max-width: 480px; margin: 0 auto 24px; }
.closing-badges li { border-color: transparent; color: var(--navy); }
.closing .btn-cta { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }

/* ---------- フッター ---------- */
.site-footer { background: var(--gray-bg); padding: 44px 0 30px; }
.footer-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  border-bottom: 2px solid var(--paleblue);
  padding-bottom: 6px;
  margin-bottom: 14px;
}
.company, .privacy, .notes { margin-bottom: 32px; }
.company-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; border-radius: var(--radius); overflow: hidden; }
.company-table th, .company-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray); text-align: left; vertical-align: top; }
.company-table th { width: 96px; background: var(--paleblue-light); color: var(--navy); font-weight: 700; }
.company-note { font-size: 13px; color: var(--text-light); margin-top: 12px; line-height: 1.8; }
.privacy-details {
  background: #fff;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
}
.privacy-details summary {
  padding: 14px 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
}
.privacy-body { padding: 0 16px 16px; font-size: 13px; color: var(--text-light); }
.privacy-body h3 { font-size: 14px; color: var(--navy); margin: 14px 0 4px; }
.privacy-body p { margin-bottom: 8px; }
.notes-list li { font-size: 12.5px; color: var(--text-light); margin-bottom: 6px; line-height: 1.7; }
.copyright { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ---------- 固定CTA ---------- */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--gray);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.fixed-cta.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.fixed-cta-btn {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  background: var(--teal);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(74, 143, 123, 0.4);
  line-height: 1.3;
}
.fixed-cta-btn span { display: block; font-size: 11px; font-weight: 500; opacity: 0.9; }

/* =========================================================
   レスポンシブ(768px以上 = PC・タブレット)
   ========================================================= */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .sp-only { display: none; }
  .pc-only { display: inline; }
  .section-title { font-size: 30px; margin-bottom: 32px; }
  .title-break { display: inline; }
  .section-lead { max-width: 760px; margin-left: auto; margin-right: auto; }
  .small-note { max-width: 760px; margin-left: auto; margin-right: auto; }

  .header-inner { padding: 10px 20px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 11px; }
  .header-badge { display: inline-block; }
  .header-cta { font-size: 14px; padding: 10px 20px; }

  .fv { padding: 56px 0 64px; }
  .fv-inner { display: flex; align-items: center; gap: 40px; }
  .fv-text { flex: 1.1; }
  .fv-visual { flex: 1; margin-top: 0; }
  .fv-title { font-size: 42px; }
  .fv-sub { font-size: 16px; }
  .fv-badges li { font-size: 13px; }
  .btn-cta { margin-left: 0; }
  .fv .btn-cta { margin-left: 0; }
  .price .btn-cta, .flow .btn-cta, .closing .btn-cta { margin-left: auto; margin-right: auto; }

  .form-card { padding: 32px 40px 28px; }
  .choice { font-size: 16px; }

  .compare-cards { flex-direction: row; align-items: stretch; max-width: 800px; }
  .compare-arrow { transform: none; align-self: center; font-size: 26px; }

  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .trouble-list { grid-template-columns: repeat(3, 1fr); }
  .trouble-card h3 { min-height: 3em; }

  .closing-title { font-size: 32px; }

  .company-table th { width: 140px; }
  .confirm-row { grid-template-columns: 130px 1fr auto; }
  .confirm-row dt { grid-row: 1; grid-column: 1; }
  .confirm-row dd { grid-row: 1; grid-column: 2; }
  .confirm-row .confirm-edit { grid-row: 1; grid-column: 3; }
  .fv-area-label { font-size: 13.5px; }
  .choice-time { flex-direction: row; flex-wrap: wrap; }
  .choice-time .choice { width: calc(50% - 5px); }
  .fixed-cta-btn { font-size: 18px; }
}

/* 小さめスマホ(375px未満)微調整 */
@media (max-width: 374px) {
  .fv-title { font-size: 26px; }
  .fv-badges li { font-size: 11px; padding: 8px 4px; }
  .choice { font-size: 14px; padding-left: 32px; }
  .choice-3col .choice { font-size: 12.5px; }
  .step-title { font-size: 17px; }
}
