/**
 * トップページ専用スタイル
 *
 * @format
 */

/* 固定背景（動画＋ディム＋スクロール連動ぼかし） */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* contain 時のレターボックスをページ背景と馴染ませる */
  background: var(--bg-base);
}

.site-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* background-size: cover 相当（全面を動画で覆う） */
  object-fit: cover;
  object-position: center center;
}

/* 固定ヘッダー直下から動画を表示（ヘッダーと被せない） */
body.page-home .site-bg__video {
  top: var(--header-height);
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
}

/*
 * スマホ縦：切り取り基準は object-position（＝ background-position と同様の指定）
 * 第1値＝横、第2値＝縦（ロゴがやや上なら 45%〜48% など微調整）
 */
@media (max-width: 768px) {
  body.page-home .site-bg__video {
    object-position: 50% 46%;
    height: calc(65% - var(--header-height));
  }
}

.site-bg__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}

.site-bg__blur-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

/* 動画終了時：ぼかしが段階的に晴れる（JS が一時的に付与） */
.site-bg__blur-layer.is-blur-transition {
  transition:
    backdrop-filter 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-backdrop-filter 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.page-home main {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ヘッダー：トップでも不透明の濃色に統一（スクロール後と同トーン） */
body.page-home .header {
  background: #080808;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
  border-bottom-color: rgba(6, 199, 85, 0.15);
}

/* トップ：ガラス帯を不透過の白背景に（動画は見えない） */
body.page-home .section--glass {
  background: #f1f1ed;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

body.page-home .section--glass .section-title {
  color: #111;
}

body.page-home .section--glass .section-subtitle {
  color: #3d3d3d;
}

body.page-home .section--glass .results-note {
  color: #5a5a5a;
}

body.page-home .section--glass .btn-primary {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.18);
}

body.page-home .section--glass .btn-primary:hover {
  border-color: var(--color-accent);
  color: #1a1a1a;
}

body.page-home .section--glass .chosen-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8f8f6 42%, #f0efec 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

body.page-home .section--glass .chosen-card:hover {
  box-shadow: none;
}

body.page-home .section--glass .chosen-title {
  color: #111;
}

body.page-home .section--glass .chosen-note {
  color: #666;
}

body.page-home .section--glass .chosen-text {
  color: #444;
}

body.page-home .section--glass .chosen-media--illustration,
body.page-home .section--glass .chosen-media--photo {
  background: #f3f3f1;
}

body.page-home .section--glass .chosen-card::after {
  box-shadow: none;
}

body.page-home .section--glass .chosen-card-body {
  background: linear-gradient(180deg, #f3f3f1 0%, #ebeae6 100%);
}

body.page-home .section--glass .chosen-card-body::before {
  color: rgba(10, 154, 74, 0.24);
}

body.page-home .section--glass .worries-list li {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #222;
}

body.page-home .section--glass .worries-note {
  color: #5a5a5a;
}

body.page-home .footer {
  position: relative;
  z-index: 1;
  /* margin だと main 外で透過になり動画が見えるため、余白は padding でフッター色を敷く */
  margin-top: 0;
  padding-top: calc(48px + 80px);
}

/* 最終CTA：FAB用の下余白をセクション内（ガラス帯）に含める */
body.page-home .cta-section {
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  body.page-home .footer {
    padding-top: calc(40px + 60px);
  }

  body.page-home .cta-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  body.page-home .footer {
    padding-top: calc(32px + 48px);
  }

  body.page-home .cta-section {
    padding-bottom: 80px;
  }
}

/* PC：トップのセクション見出しをやや大きく */
@media (min-width: 769px) {
  body.page-home .section-title {
    font-size: 2.125rem;
    margin-bottom: 52px;
    letter-spacing: 0.06em;
  }

  body.page-home .section-subtitle {
    font-size: 1.05rem;
    margin-top: -36px;
    margin-bottom: 8px;
  }
}

/* ========================================
   1. ファーストビュー
   ======================================== */
/* main の padding-top でヘッダー分は確保済み → 残りをちょうど1画面に */
.fv {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.fv-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.fv-content {
  max-width: 560px;
}

.fv-nowrap {
  white-space: nowrap;
}

.fv-main-copy {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.fv-sub-copy {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.85;
  opacity: 0.95;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
  font-weight: 400;
}

/* PC：FVの見出し/サブコピーを大きく */
@media (min-width: 769px) {
  .fv-main-copy {
    font-size: clamp(2.25rem, 4.4vw, 3.25rem);
    line-height: 1.48;
  }

  .fv-main-copy__break {
    display: none;
  }

  .fv-sub-copy {
    font-size: 1.05rem;
  }
}

.fv-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 28px 0 0;
  padding: 0;
}

.fv-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
}

.fv-badge-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.1;
}

.fv-cta {
  margin-top: 32px;
}

/* ========================================
   2. キャッチコピー
   ======================================== */
.catch-section .catch-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-secondary);
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.9;
}

.catch-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.catch-body p {
  margin-bottom: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

/* ========================================
   3. 最新買取実績の抜粋
   ======================================== */
.results-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s;
}

.result-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: rgba(6, 199, 85, 0.2);
}

.result-placeholder {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-surface) 100%
  );
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.result-placeholder::after {
  content: "No Image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  opacity: 0.5;
  text-transform: uppercase;
  pointer-events: none;
}

.result-placeholder img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--bg-elevated);
  box-shadow: none;
  filter: none;
}

.result-item:hover .result-placeholder img {
  transform: scale(1.04);
}

.result-info {
  padding: 18px 20px 20px;
}

.result-brand {
  font-family: var(--font-main);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.result-model {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--color-text);
}

.result-state {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  padding: 2px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 10px;
}

.result-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
}

.results-note {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.7;
}

/* ========================================
   4. 高価買取できる理由
   ======================================== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.reason-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reason-media {
  margin: 0;
  padding: 0;
  line-height: 0;
  background: var(--bg-elevated);
  overflow: hidden;
}

.reason-media img {
  width: 100%;
  height: auto;
  display: block;
}

.reason-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  padding: 20px 22px 24px;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(6, 199, 85, 0.2);
}

.reasons-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.reasons-body p {
  margin-bottom: 12px;
  line-height: 1.9;
  font-size: 0.95rem;
}

.reasons-body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   5. 選ばれる理由
   ======================================== */
.chosen-list {
  list-style: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  counter-reset: chosen-idx;
}

.chosen-card {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 0;
  counter-increment: chosen-idx;
  border-radius: 0;
  border: 1px solid var(--border-strong);
  background: linear-gradient(168deg, #505055 0%, #3f3f43 48%, #353539 100%);
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.chosen-card::after {
  content: none;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .chosen-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chosen-card {
    transition: none;
  }

  .chosen-card:hover {
    transform: none;
  }
}

.chosen-media {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--bg-surface);
  display: block;
  overflow: hidden;
  z-index: 0;
  line-height: 0;
}

.chosen-media--illustration {
  min-height: 0;
  aspect-ratio: unset;
  display: block;
}

.chosen-media--illustration img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.chosen-media--photo {
  min-height: 0;
  aspect-ratio: unset;
  display: block;
  line-height: 0;
}

.chosen-media--photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.chosen-media--illustration img,
.chosen-media--photo img {
  position: relative;
  z-index: 0;
  box-shadow: none;
  filter: none;
}

.chosen-card-body {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  background: linear-gradient(180deg, #49494d 0%, #3e3e42 100%);
}

.chosen-card-body::before {
  content: counter(chosen-idx, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.11);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.chosen-title {
  position: relative;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 3.25rem 14px 0;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.chosen-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    rgba(95, 191, 134, 0.45),
    transparent
  );
}

.chosen-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-left: 8px;
}

.chosen-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 1024px) {
  .chosen-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .chosen-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chosen-card-body {
    padding: 20px 20px 22px;
  }

  .chosen-card-body::before {
    top: 16px;
    right: 18px;
    font-size: 1.85rem;
  }
}

/* ========================================
   6. お客様の安心材料
   ======================================== */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.assurance-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 28px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.assurance-q {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--color-secondary);
  line-height: 0;
}

.assurance-q__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(6, 199, 85, 0.12);
  border: 1px solid rgba(6, 199, 85, 0.22);
  flex-shrink: 0;
}

.assurance-q__text {
  display: block;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--color-secondary);
}

.assurance-icon {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  color: var(--color-accent);
}

.assurance-body {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assurance-a {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.95;
  margin: 0;
}

.assurance-a:last-child {
  margin-bottom: 0;
}

.assurance-closing {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.9;
}

/* ========================================
   LINEフロート（トップ専用・FV外で表示）
   ======================================== */
.line-float-btn {
  --line-float-accent: var(--color-accent);
  position: fixed;
  z-index: 900;
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s;
}

.line-float-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.line-float-btn__halo {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: conic-gradient(
    from 210deg,
    rgba(255, 255, 255, 0.45),
    rgba(6, 199, 85, 0.35),
    rgba(5, 154, 70, 0.5),
    rgba(255, 255, 255, 0.25),
    rgba(6, 199, 85, 0.4)
  );
  opacity: 0.85;
  filter: blur(0.5px);
  z-index: 0;
}

.line-float-btn__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(
    168deg,
    #12e877 0%,
    var(--line-float-accent) 42%,
    #048c45 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 2px 8px rgba(0, 0, 0, 0.18) inset,
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 0 48px rgba(6, 199, 85, 0.38);
}

.line-float-btn:hover .line-float-btn__inner {
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 2px 8px rgba(0, 0, 0, 0.15) inset,
    0 16px 40px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 0 56px rgba(6, 199, 85, 0.48);
}

.line-float-btn:active .line-float-btn__inner {
  transform: scale(0.98);
  transition: transform 0.12s ease;
}

.line-float-btn__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.line-float-btn__icon,
.line-float-btn__icon svg,
.line-float-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  stroke-width: 2.25px;
}

.line-float-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  line-height: 1.25;
}

.line-float-btn__label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.line-float-btn__sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.94;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .line-float-btn {
    transition-duration: 0.15s;
  }
}

/* ========================================
   7. よくある不安への一言
   ======================================== */
.worries-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.worries-list li {
  padding: 16px 24px 16px 50px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  position: relative;
  font-size: 0.95rem;
}

.worry-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.worries-list li::before {
  content: none;
}

.worries-solution {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.worries-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   ユーティリティ
   ======================================== */
.mt-32 {
  margin-top: 32px;
}

/* ========================================
   レスポンシブ - タブレット (1024px以下)
   ======================================== */
@media (max-width: 1024px) {
  .results-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reason-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reasons-body {
    padding: 24px 24px;
  }
}

/* ========================================
   レスポンシブ - タブレット縦・スマホ (768px以下)
   ======================================== */
@media (max-width: 768px) {
  /* トップ：見出し・本文・CTA を左寄せ（スマホ／タブレット縦） */
  body.page-home .section-title,
  body.page-home .section-subtitle {
    text-align: left;
  }

  body.page-home .text-center {
    text-align: left;
  }

  .fv {
    align-items: flex-end;
    justify-content: center;
  }

  .fv-inner {
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    align-items: stretch;
    padding: 20px max(20px, env(safe-area-inset-right, 0px))
      max(56px, calc(env(safe-area-inset-bottom, 0px) + 40px))
      max(20px, env(safe-area-inset-left, 0px));
  }

  .fv-content {
    max-width: 100%;
  }

  .fv-badges {
    justify-content: flex-start;
  }

  .fv-main-copy__break {
    display: none;
  }

  .fv-main-copy {
    font-size: clamp(0.82rem, 2.6vw + 0.55rem, 1.65rem);
    white-space: nowrap;
    letter-spacing: 0.03em;
  }

  .fv-sub-copy {
    font-size: 0.9rem;
  }

  .catch-section .catch-lead {
    font-size: 0.95rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .catch-body {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .catch-body p {
    line-height: 2;
  }

  .results-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .result-info {
    padding: 20px 22px 22px;
  }

  .result-brand {
    font-size: 0.9375rem;
  }

  .result-model {
    font-size: 1rem;
    line-height: 1.65;
  }

  .result-state {
    font-size: 0.8125rem;
  }

  .result-price {
    font-size: 1.0625rem;
  }

  .results-note {
    font-size: 0.875rem;
    line-height: 1.75;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .result-item:hover {
    transform: none;
    box-shadow: none;
  }

  .result-item:hover .result-placeholder img {
    transform: none;
  }

  .reason-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reason-card {
    padding: 0;
    text-align: center;
  }

  .reasons-body {
    padding: 20px;
  }

  .line-float-btn {
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
  }

  .line-float-btn__halo {
    inset: -4px;
  }

  .line-float-btn__inner {
    gap: 11px;
    padding: 13px 18px;
  }

  .line-float-btn__icon-wrap {
    width: 38px;
    height: 38px;
  }

  .line-float-btn__icon,
  .line-float-btn__icon svg,
  .line-float-btn svg {
    width: 22px;
    height: 22px;
  }

  .line-float-btn__label {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }

  .line-float-btn__sub {
    font-size: 0.7rem;
  }

  .assurance-closing {
    text-align: left;
  }

  .worries-list {
    margin-left: 0;
    margin-right: 0;
  }

  .worries-solution,
  .worries-note {
    text-align: left;
  }

  .worries-list li {
    font-size: 0.9rem;
    padding: 14px 20px 14px 44px;
  }

  .mt-32 {
    margin-top: 24px;
  }
}

/* ========================================
   レスポンシブ - スマホ (480px以下)
   ======================================== */
@media (max-width: 480px) {
  .fv-inner {
    padding: 16px max(18px, env(safe-area-inset-right, 0px))
      max(48px, calc(env(safe-area-inset-bottom, 0px) + 36px))
      max(18px, env(safe-area-inset-left, 0px));
  }

  .fv-sub-copy {
    font-size: 0.9375rem;
    line-height: 1.85;
  }

  .fv-main-copy {
    font-size: clamp(0.78rem, 2.35vw + 0.52rem, 1.45rem);
  }

  .fv-badges li {
    font-size: 0.75rem;
    padding: 5px 10px;
  }


  .catch-body p {
    line-height: 2;
    font-size: 0.9375rem;
  }

  .result-model {
    font-size: 1.02rem;
  }

  .result-price {
    font-size: 1.08rem;
  }

  .results-note {
    font-size: 0.9rem;
    padding: 0 4px;
  }

  .reason-card {
    padding: 0;
  }

  .reason-text {
    padding: 18px 16px 20px;
    line-height: 1.85;
  }

  .chosen-text {
    line-height: 1.85;
  }

  .assurance-card {
    padding: 24px 18px;
  }

  .assurance-a {
    line-height: 1.9;
    font-size: 0.9375rem;
  }

  .assurance-q__text {
    font-size: 0.9rem;
  }

  .worries-list li {
    padding: 14px 18px 14px 42px;
    line-height: 1.75;
  }

  .worries-solution {
    font-size: 1.05rem;
  }

  body.page-home .cta-section {
    padding-bottom: calc(40px + 100px + env(safe-area-inset-bottom, 0px));
  }
}
