/* ========================================
   スッキリ解体 LP — Goodpatch LPスタイル v2
   右サイドバー固定フォーム対応
   ======================================== */

/* --- CSS変数 --- */
:root {
  /* プライマリ（信頼性） */
  --color-primary: #096fca;
  --color-primary-light: rgba(97, 179, 255, 0.4);
  --color-primary-bg: rgba(234, 248, 255, 0.8);
  --color-primary-dark: #055399;

  /* CTA用アクセント */
  --color-cta: #ff6372;
  --color-cta-hover: #e1515f;
  /* テキスト */
  --color-text: #333333;
  --color-text-sub: #444444; /* コントラスト比7.7:1（50-60代の可読性向上） */

  /* 背景（交互使い分け） */
  --color-bg-white: #ffffff;
  --color-bg-light: #f4f4f4;
  --color-bg-blue: #eef7ff;

  /* フッター */
  --color-footer: #1a3776;

  /* ボーダー・シャドウ */
  --color-border: #e9e9e9;
  --color-shadow: #e0e0e0;
  --color-shadow-hover: #dbdbdb;

  /* グラデーション */
  --gradient-hero: linear-gradient(335.63deg, rgba(97, 179, 255, 0.4) 0%, rgba(234, 248, 255, 0.8) 100%);

  /* フォント */
  --font-heading-en: "Montserrat", sans-serif;
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;

  /* コンテンツ幅 */
  --width-content: 960px;
  --width-narrow: 760px;

}

/* --- リセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .4s cubic-bezier(.4,.4,0,1);
}

/* フォーカス状態（アクセシビリティ） */
a:focus-visible,
button:focus-visible,
.btn-cta:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- ユーティリティ --- */
.sp-only { display: none; }
.pc-only { display: inline; }
.badge-required {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.badge-ok {
  display: inline-block;
  background: #28a745;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.badge-optional {
  display: inline-block;
  background: #aaa;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

@media (max-width: 599px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* --- コンテナ --- */
.container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--width-narrow);
}

/* --- セクション共通 --- */
.section {
  padding: 80px 0;
}

.section--white { background-color: var(--color-bg-white); }
.section--light { background-color: var(--color-bg-light); }
.section--blue { background-color: var(--color-bg-blue); }
.section--gradient { background: var(--gradient-hero); }

/* セクション間の隙間線を防止 */
.section + .section {
  margin-top: -1px;
}

/* 同じ背景色が連続する場合、余白を縮める */
.section--white + .section--white {
  padding-top: 0;
}

.section__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.4;
}

.section__subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-sub);
  margin-top: -40px;
  margin-bottom: 48px;
}

/* --- ボタン --- */
.btn-cta {
  display: inline-block;
  background-color: var(--color-cta);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 99, 114, 0.35);
  transition: .4s cubic-bezier(.4,.4,0,1);
  cursor: pointer;
  letter-spacing: 0.05em;
}

.btn-cta:hover {
  background-color: var(--color-cta-hover);
  box-shadow: 0 2px 12px rgba(255, 99, 114, 0.25);
}

.btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 32px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 24px 0 var(--color-shadow-hover);
  transition: .3s cubic-bezier(.4,.4,0,1);
  cursor: pointer;
  letter-spacing: 0.05em;
}

.btn-secondary:hover { opacity: 0.85; }

.btn-lg { padding: 20px 48px; font-size: 18px; }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-full { width: 100%; }

.btn-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.8;
}

/* ========================================
   装飾シェイプ（Goodpatchスタイル）
   ======================================== */
.deco-circle,
.deco-arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ヒーロー写真ショーケース（現在は未使用） */
.hero-showcase { display: none; }

/* ヒーロー背景写真（散りばめ配置：丸＋角丸ミックス） */
.hero-photos {
  display: none;
}

@media (min-width: 1025px) {
  .hero-photos {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hero-photo {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(9, 111, 202, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.6);
  }

  /* === 左側（3枚） === */

  /* === 左側 === */

  .hp--1 {
    width: 170px; height: 170px;
    border-radius: 50%;
    top: 8%; left: 3%;
    transform: rotate(-2deg);
  }

  .hp--5 {
    width: 180px; height: 120px;
    border-radius: 14px;
    top: 38%; left: 9%;
    transform: rotate(-3deg);
  }

  .hp--2 {
    width: 240px; height: 160px;
    border-radius: 16px;
    bottom: 12%; left: 1%;
    transform: rotate(2deg);
  }

  /* === 右側（左と対称） === */

  .hp--3 {
    width: 170px; height: 170px;
    border-radius: 50%;
    top: 8%; right: 3%;
    transform: rotate(2deg);
  }

  .hp--6 {
    width: 180px; height: 120px;
    border-radius: 14px;
    top: 38%; right: 9%;
    transform: rotate(3deg);
  }

  .hp--4 {
    width: 240px; height: 160px;
    border-radius: 16px;
    bottom: 12%; right: 1%;
    transform: rotate(-2deg);
  }
}

/* 大画面で少し大きく */
@media (min-width: 1400px) {
  .hp--1 { width: 200px; height: 200px; left: 5%; }
  .hp--5 { width: 200px; height: 135px; left: 12%; }
  .hp--2 { width: 280px; height: 180px; left: 3%; }
  .hp--3 { width: 200px; height: 200px; right: 5%; }
  .hp--6 { width: 200px; height: 135px; right: 12%; }
  .hp--4 { width: 280px; height: 180px; right: 3%; }
}

.has-deco { position: relative; overflow: hidden; }

.deco-circle--about-1 {
  width: 220px; height: 220px;
  background: rgba(9, 111, 202, 0.05);
  top: 100px; left: -80px;
  animation: floatSlow 9s ease-in-out infinite;
}

.deco-arc--about {
  width: 350px; height: 350px;
  border: 3px solid rgba(9, 111, 202, 0.06);
  background: transparent;
  bottom: 200px; right: -140px;
  animation: floatSlow 11s ease-in-out infinite reverse;
}

.deco-circle--voice-1 {
  width: 250px; height: 250px;
  background: rgba(245, 166, 35, 0.05);
  top: -60px; right: -80px;
  animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

/* ========================================
   Wave ディバイダー
   ======================================== */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -2px;
  margin-bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.wave-divider--to-blue {
  background: var(--color-bg-white);
}

/* ========================================
   fade-in-up アニメーション（個別要素用）
   ======================================== */
/* fade-in-upアニメーションは無効化（煩わしさ防止） */
.fade-in-up {
  opacity: 1;
}

.fade-in-up--visible {
  opacity: 1;
}

/* ========================================
   CTAボタン pulse アニメーション
   ======================================== */
.btn-cta--pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 99, 114, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(255, 99, 114, 0.55), 0 0 0 8px rgba(255, 99, 114, 0.1); }
}

/* ========================================
   ヒーロー写真エリア
   ======================================== */
.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: center;
}

/* ========================================
   課題アイコンボックス
   ======================================== */
.problems__icon-box {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problems__icon-box--danger { background: rgba(255, 99, 114, 0.1); color: #ff6372; }
.problems__icon-box--warning { background: rgba(245, 166, 35, 0.1); color: #f5a623; }
.problems__icon-box--cost { background: rgba(9, 111, 202, 0.1); color: var(--color-primary); }
.problems__icon-box--question { background: rgba(75, 204, 190, 0.1); color: #4bccbe; }

/* ========================================
   フローステップ アイコン
   ======================================== */
.flow__step-icon { margin-bottom: 12px; }

/* ========================================
   カード ホバーエフェクト強化
   ======================================== */
.benefit-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.flow__step { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.flow__step:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); }

.case-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.voice-card--featured { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.voice-card--featured:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.about-verify__card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-verify__card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.about-reason__card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-reason__card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }

.subsidy__card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.subsidy__card:hover { transform: translateY(-4px); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); }

.timeline__content { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.timeline__content:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08); }

/* ========================================
   FV Appear アニメーション
   ======================================== */
.appear-1 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 600ms ease-in-out 200ms forwards;
}
.appear-2 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 800ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 600ms forwards;
}
.appear-3 {
  opacity: 0;
  animation: fadeIn 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 1000ms forwards;
}
.appear-4 {
  opacity: 0;
  animation: fadeIn 800ms ease 1400ms forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========================================
   サイドフローティングボタン + ドロワーフォーム
   ======================================== */
.side-float {
  display: none;
}

@media (min-width: 960px) {
  .side-float {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 500;
    background: var(--color-cta);
    color: #fff;
    padding: 24px 12px;
    border: none;
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 2px 16px rgba(255, 99, 114, 0.35);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    writing-mode: vertical-rl;
    font-family: var(--font-body);
  }

  .side-float.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .side-float:hover {
    background: var(--color-cta-hover);
    padding-right: 16px;
  }

  .side-float__text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
  }

  .side-float__sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
  }
}

/* ドロワー オーバーレイ */
.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1200;
}

.drawer-overlay.is-open {
  display: block;
}

/* ドロワー本体 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 1300;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-bg-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  transition: .3s;
}

.drawer__close:hover {
  background: var(--color-border);
}

.drawer__inner {
  padding: 48px 24px 32px;
}

.drawer__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.drawer__sub {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}

.drawer__form-group {
  margin-bottom: 16px;
}

.drawer__form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.drawer__form-row {
  display: flex;
  gap: 8px;
}

.drawer__form-group input,
.drawer__form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: normal;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  appearance: none;
  background-color: #fff;
  transition: border-color .3s, box-shadow .3s;
}

.drawer__form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.drawer__form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: normal;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  appearance: none;
  background-color: #fff;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}

.drawer__form-group input:focus,
.drawer__form-group select:focus,
.drawer__form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(9, 111, 202, 0.3);
}

.drawer__micro {
  background: var(--color-bg-blue);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.drawer__micro p {
  font-size: 12px;
  color: var(--color-primary);
  line-height: 1.6;
}

.drawer__micro p::before {
  content: "\2713";
  margin-right: 4px;
  font-weight: 700;
}

.drawer__tel {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.drawer__tel p {
  font-size: 12px;
  color: var(--color-text-sub);
}

.drawer__tel-link {
  font-size: 20px;
  color: var(--color-primary);
  display: block;
  margin: 4px 0;
}

.drawer__tel-note {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* ========================================
   PR表記バー
   ======================================== */
.pr-bar {
  display: none; /* PR表記を非表示 */
  background: var(--color-bg-light);
  padding: 6px 16px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

@media (min-width: 1200px) {
  .pr-bar {
    right: 0;
  }
}

.pr-bar__text {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.4;
}

/* PR表記分のオフセットは、各セクション定義に直接統合 */

.pr-bar__short { display: none; }

@media (max-width: 599px) {
  .pr-bar { padding: 4px 12px; }
  .pr-bar__text { font-size: 11px; }
  .pr-bar__full { display: none; }
  .pr-bar__short { display: inline; }
}

/* ========================================
   1. ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}


.header--scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-sub);
}

.header__tel-icon {
  color: var(--color-primary);
}

.header__tel-label {
  display: none;
}

.header__tel-number {
  font-weight: 700;
}

.header__tel-hours {
  font-size: 11px;
  color: var(--color-text-sub);
}

/* ========================================
   2. ヒーロー
   ======================================== */
.hero {
  background: var(--gradient-hero);
  padding: 120px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__label {
  font-family: var(--font-heading-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__title strong {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 5px;
  padding: 2px 10px;
  display: inline;
}

.hero__sub {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__sub strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badges li {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-sub);
}

.hero__badges li::before {
  content: "\2713";
  margin-right: 4px;
  color: var(--color-primary);
  font-weight: 700;
}

/* モバイル信頼アバター */
.hero__avatars {
  display: none;
}

@media (max-width: 640px) {
  .hero__avatars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }

  .hero__avatars-photos {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .hero__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(9, 111, 202, 0.1);
  }

  .hero__avatars-text {
    font-size: 12px;
    color: var(--color-text-sub);
  }
}

/* ========================================
   3. 実績数値
   ======================================== */
.stats-section {
  padding: 56px 0 72px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.stats__item {
  flex: 0 1 calc(20% - 20px);
  min-width: 160px;
  padding: 16px;
}

.stats__number {
  font-family: var(--font-heading-en);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.stats__unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.stats__label {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 8px;
  font-weight: 400;
}

.stats__note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 24px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  background: var(--color-bg-light);
  padding-bottom: 8px;
}

/* ========================================
   4. 課題提起
   ======================================== */
.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.problems__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: 24px;
}

.problems__photo {
  flex-shrink: 0;
}

.problems__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--color-bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-sub);
}

.problems__photo img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.problems__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.problems__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-sub);
}

/* 法人利用企業 */
.corporate-clients {
  margin-top: 24px;
  text-align: center;
}

.corporate-clients__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.corporate-clients__list {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* 事例プレースホルダー（写真到着後に差し替え） */
.case-card__image-placeholder {
  height: 200px;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-sub);
}

.problems__lead-box {
  text-align: center;
  background: var(--color-bg-blue);
  border-radius: 20px;
  padding: 32px;
}

.problems__lead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.problems__lead strong {
  color: var(--color-primary);
}

.problems__lead-sub {
  font-size: 14px;
  color: var(--color-text-sub);
}

/* ========================================
   5. スッキリ解体とは
   ======================================== */
.about {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about__photo { flex-shrink: 0; }

.about__text p { margin-bottom: 16px; }

.about__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.about__badge {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 20px 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.about__badge strong {
  font-size: 16px;
}

.about__badge-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 8px;
}

/* About セクション拡張（導入・検証・理由） */
.about-intro {
  text-align: center;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 48px;
}

.about-intro strong {
  color: var(--color-cta);
}

.about__name {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.about__name strong {
  font-size: 20px;
  color: var(--color-text);
}

/* 検証ハイライト */
.about-verify {
  margin-top: 48px;
  margin-bottom: 48px;
}

.about-verify__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.about-verify__sub {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 32px;
}

.about-verify__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-verify__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.about-verify__question {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-cta);
  margin-bottom: 10px;
  line-height: 1.5;
}

.about-verify__card--wide {
  grid-column: 1 / -1;
}

.about-verify__label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--color-cta);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  margin-right: 8px;
  vertical-align: middle;
}

.about-verify__answer {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.about-verify__answer strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* スッキリ解体を通す理由 */
.about-reason {
  margin-bottom: 32px;
}

.about-reason__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.about-reason__sub {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}

.about-reason__list {
  list-style: none;
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.about-reason__list li {
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-reason__list li:last-child {
  border-bottom: none;
}

.about-reason__list strong {
  color: var(--color-primary);
}

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

.about-reason__card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
  text-align: center;
}

.about-reason__number {
  font-family: var(--font-heading-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.about-reason__heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.about-reason__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
  text-align: left;
}

/* ========================================
   中野理事セクション
   ======================================== */
.director {
  margin-top: 48px;
  margin-bottom: 48px;
}

.director__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.director__profile {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
  margin-bottom: 32px;
}

.director__photo {
  flex-shrink: 0;
}

.director__photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.director__photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.director__role {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 4px;
}

.director__name {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.director__bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.director__bio strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* メディア出演 */
.director__media {
  text-align: center;
}

.director__media-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.director__media-sub {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}

.director__media-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.director__media-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 16px 0 var(--color-shadow);
  position: relative;
}
.director__media-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--color-footer);
  padding: 4px 0;
}

.director__media-placeholder {
  height: 180px;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-sub);
}

.director__media-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.director__media-list {
  font-size: 14px;
  color: var(--color-text-sub);
}

.director__media-list strong {
  color: var(--color-primary);
}

/* ========================================
   6. 選ばれる3つの理由（Benefitカード）
   ======================================== */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.benefit-card__top {
  background-color: var(--benefit-color, var(--color-primary));
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-card__label {
  font-family: var(--font-heading-en);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.benefit-card__number {
  font-family: var(--font-heading-en);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  opacity: 0.9;
}

.benefit-card__body {
  background: #fff;
  padding: 32px 40px 40px;
}

.benefit-card__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}

.benefit-card__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.benefit-card__point {
  background: var(--color-bg-blue);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.benefit-card__point strong {
  color: var(--color-primary);
  font-weight: 700;
}

.benefit-card__point-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* ========================================
   6.5 強み — Goodpatch交互レイアウト
   ======================================== */
.strengths {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.strength {
  display: flex;
  align-items: center;
  gap: 48px;
}

.strength--reverse {
  flex-direction: row-reverse;
}

.strength__visual {
  flex: 0 0 48%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.strength__img {
  width: 100%;
  height: auto;
  display: block;
}

.strength__text {
  flex: 1;
}

.strength__label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.strength__number {
  font-family: var(--font-heading-en);
  font-size: 56px;
  font-weight: 700;
  color: var(--strength-color, var(--color-primary));
  line-height: 1;
  opacity: 0.85;
}

.strength__label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--strength-color, var(--color-primary));
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.strength__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.strength__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.strength__desc strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* タブレット */
@media (max-width: 959px) {
  .strengths { gap: 48px; }
  .strength { flex-direction: column; gap: 24px; }
  .strength--reverse { flex-direction: column; }
  .strength__visual { flex: none; width: 100%; }
  .strength__number { font-size: 44px; }
  .strength__heading { font-size: 20px; }
}

/* スマホ */
@media (max-width: 599px) {
  .strengths { gap: 40px; }
  .strength__number { font-size: 36px; }
  .strength__heading { font-size: 18px; }
  .strength__desc { font-size: 14px; }
}

.benefit-card__point-label::before {
  content: "\2713";
  margin-right: 4px;
}

/* ========================================
   7. ご利用の流れ
   ======================================== */
.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.flow__step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.flow__step-number {
  font-family: var(--font-heading-en);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.flow__step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow__step-desc {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.flow__arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
  align-self: center;
}

.flow__arrow::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent var(--color-primary);
  opacity: 0.3;
}

/* ========================================
   8. CTA（中間・サンドイッチ）
   ======================================== */
.cta-mid {
  text-align: center;
  padding: 64px 0;
}

.cta-mid__text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.5;
}

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

.cta-mid__note {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* ========================================
   9. 実績・事例
   ======================================== */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

/* PC: 追加事例は「もっと見る」で表示 */
.case-card--extra {
  display: none;
}

.case-card--extra.is-visible {
  display: block;
}

.cases__more-wrap {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 16px;
}

.cases__more-btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
}

.cases__more-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.cases__more-btn.is-hidden {
  display: none;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.case-card:hover {
  box-shadow: 0 4px 16px var(--color-shadow-hover);
}

.case-card__body { padding: 24px; }

.case-card__type {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-blue);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.case-card__location {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.case-card__prices { margin-bottom: 12px; }

.case-card__before {
  font-size: 13px;
  color: var(--color-text-sub);
}

.case-card__before span { text-decoration: line-through; }

.case-card__after {
  font-size: 14px;
  font-weight: 700;
}

.case-card__after span {
  font-size: 20px;
  color: var(--color-primary);
}

.case-card__saving {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cta);
  background: rgba(255, 99, 114, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 12px;
}

.case-card__comment {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.6;
  font-style: italic;
}

.cases__note {
  font-size: 13px;
  color: var(--color-text-sub);
  text-align: center;
}

/* ========================================
   10. お客様の声（強化版）
   ======================================== */
.voices {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.voice-card--featured {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}

.voice-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}


.voice-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.voice-card__text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.voice-card__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.voice-card__result {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cta);
  background: rgba(255, 99, 114, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
}

.voice-card__result strong {
  font-size: 16px;
}

.voice-card__author {
  font-size: 13px;
  color: var(--color-text-sub);
}

.voices__badge {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-sub);
}

.voices__note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 16px;
}

.voices__badge-star {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-right: 8px;
}

/* ========================================
   10. お客様の声
   ======================================== */
.reviews-section { overflow: hidden; }
.reviews-section .voices__badge { margin-bottom: 40px; }

/* メイン口コミカード */
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.voice-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 24px 0 var(--color-shadow);
}
.voice-card__body {
  padding: 24px;
}
.voice-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.voice-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}
.voice-card__author {
  font-size: 13px;
  color: var(--color-text-sub);
  background: var(--color-bg-blue);
  padding: 2px 12px;
  border-radius: 20px;
}
.voice-card__headline {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--color-text);
}
.voice-card__headline strong {
  color: var(--color-primary);
}
.voice-card__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 16px;
}
.voice-card__text strong {
  color: var(--color-primary);
  font-weight: 700;
}
/* スクショサムネイル（証拠リンク） */
.voice-card__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.voice-card__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.voice-card__proof-label {
  font-size: 12px;
  color: var(--color-text-sub);
}

/* タブレット: 2カラム */
@media (min-width: 641px) {
  .voice-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .voice-card {
    flex: 0 1 calc(50% - 12px);
  }
}
/* PC: 3カラム（上段3+下段2中央寄せ） */
@media (min-width: 1025px) {
  .voice-card {
    flex: 0 1 calc(33.333% - 16px);
  }
}

/* 口コミスクショ帯（ゆっくり自動マーキー） */
.review-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0 0 16px;
  margin-bottom: 24px;
}
.review-strip__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: strip-scroll 120s linear infinite;
  will-change: transform;
}
.review-strip:hover .review-strip__track {
  animation-play-state: paused;
}
@keyframes strip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-strip__card {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-strip__card:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
/* クリックヒント（ホバー時オーバーレイ） */
.review-strip__card::after {
  content: "\1F50D  タップで拡大";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.review-strip__card {
  position: relative;
}
.review-strip__card:hover::after {
  opacity: 1;
}
.review-strip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* PC: スクショカードを少し大きく */
@media (min-width: 1025px) {
  .review-strip__card {
    width: 220px;
    height: 280px;
  }
}

/* レビュー拡大モーダル */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.review-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.review-modal__body {
  position: relative;
  max-width: 480px;
  max-height: 90vh;
  z-index: 1;
}
.review-modal__img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}
.review-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   12. 補助金サポート
   ======================================== */
.subsidy__intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.subsidy__intro strong {
  color: var(--color-cta);
}

.subsidy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.subsidy__card {
  background: var(--color-bg-blue);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.subsidy__card-image {
  height: 200px;
  overflow: hidden;
}

.subsidy__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subsidy__card-title {
  padding: 20px 24px 0;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.subsidy__card-desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
  padding: 0 24px 24px;
}

.subsidy__card-desc strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* 補助金セクション: エビデンス写真 */
.subsidy__evidence {
  margin-top: 32px;
  margin-bottom: 24px;
}
.subsidy__evidence-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .subsidy__evidence-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.subsidy__evidence-item {
  margin: 0;
  text-align: center;
}
.subsidy__evidence-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.subsidy__evidence-item figcaption {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 8px;
  font-weight: 700;
}

.subsidy__note {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   13. FAQ
   ======================================== */
.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: block;
  padding: 24px 40px 24px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
}

details[open] .faq__question::after { content: "\2212"; }

.faq__answer {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ========================================
   14. 運営者メッセージ
   ======================================== */
.message {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.message__photo { flex-shrink: 0; }

.message__text p { margin-bottom: 16px; }

.message__text strong {
  color: var(--color-primary);
}

.message__sign {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-text-sub);
}

.message__sign strong {
  display: block;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 4px;
}

/* ========================================
   15. CTA③（最終）
   ======================================== */
.cta-final__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}

.cta-final__sub {
  font-size: 15px;
  text-align: center;
  color: var(--color-text-sub);
  margin-bottom: 32px;
}

.cta-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
  margin-bottom: 24px;
}

.cta-form__row {
  display: flex;
  gap: 12px;
}

.cta-form__group { margin-bottom: 20px; }

.cta-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-form__select,
.cta-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: normal; /* bodyのletter-spacing継承を解除 */
  border: 1px solid var(--color-border);
  border-radius: 12px;
  appearance: none;
  background-color: #fff;
  transition: border-color .3s, box-shadow .3s;
}

.cta-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.cta-form__input {
  resize: vertical;
}

.cta-form__select:focus,
.cta-form__input:focus,
textarea.cta-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(9, 111, 202, 0.3);
}

.cta-form__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 12px;
}

.cta-final__tel { text-align: center; }

.cta-final__tel p {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.cta-final__tel-link { font-size: 16px; color: var(--color-text); }

.cta-final__tel-link strong {
  font-size: 20px;
  color: var(--color-primary);
}

/* ========================================
   フッター
   ======================================== */
.footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
  text-align: center;
}

.footer__brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer__info {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links a:hover { color: #fff; }

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   フローティングCTA（モバイル専用）
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta__tel,
.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: .4s cubic-bezier(.4,.4,0,1);
  text-align: center;
}

.floating-cta__tel {
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  gap: 8px;
  transition: transform 0.1s, filter 0.1s;
}

.floating-cta__tel:active {
  transform: scale(0.96);
  filter: brightness(0.92);
}

.floating-cta__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(26, 59, 118, 0.3);
  color: #fff;
}

.floating-cta__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.floating-cta__tel-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text);
}

.floating-cta__tel-number {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--color-primary);
  margin-top: 1px;
}

.floating-cta__tel-hours {
  font-size: 8.5px;
  font-weight: 500;
  color: #777;
  margin-top: 1px;
}

.floating-cta__btn {
  background: linear-gradient(180deg, #ff7a87 0%, #ff6372 45%, #e1515f 100%);
  color: #fff;
  position: relative;
  box-shadow: 0 5px 0 #c4404d, 0 7px 18px rgba(255, 99, 114, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  flex-direction: column;
  gap: 1px;
  transform: translateY(0);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

/* 上部光沢 */
.floating-cta__btn::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 48%;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* タップ時3D押し込み */
.floating-cta__btn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #c4404d, 0 2px 6px rgba(255, 99, 114, 0.3);
  filter: brightness(0.95);
  animation: none;
}

.floating-cta__btn-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 0 9px;
  border-radius: 7px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.floating-cta__btn-main {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* glowアニメーション */
@keyframes floating-cta-glow {
  0%, 100% { box-shadow: 0 5px 0 #c4404d, 0 7px 18px rgba(255, 99, 114, 0.45); }
  50% { box-shadow: 0 5px 0 #c4404d, 0 7px 26px rgba(255, 99, 114, 0.65), 0 0 0 5px rgba(255, 122, 135, 0.15); }
}

.floating-cta__btn {
  animation: floating-cta-glow 2.6s ease-in-out infinite;
}

.floating-cta__tel:hover { opacity: 0.85; }

/* PC時: サイドバーがあるのでフローティングCTAは非表示 */
@media (min-width: 1200px) {
  .floating-cta { display: none; }
}

/* ========================================
   レスポンシブ（タブレット 959px以下）
   ======================================== */
@media (max-width: 959px) {
  .section__title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .hero__title { font-size: 28px; }

  .stats {
    gap: 16px;
  }

  .stats__item {
    flex: 0 1 calc(50% - 12px);
    min-width: 140px;
  }

  .stats__number { font-size: 40px; }

  .flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow__step { max-width: 100%; width: 100%; }

  .flow__arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

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

  .subsidy__cards {
    grid-template-columns: 1fr;
  }

  .subsidy__card-image {
    height: 200px;
  }

  .benefit-card__top { padding: 24px 28px; }
  .benefit-card__body { padding: 24px 28px 32px; }
  .benefit-card__number { font-size: 56px; }

  .about-verify__cards {
    grid-template-columns: 1fr;
  }

  .about-reason__cards {
    grid-template-columns: 1fr;
  }

  .about-intro { font-size: 15px; }

  .director__profile {
    flex-direction: column;
    text-align: center;
  }

  .director__media-photos {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   レスポンシブ（モバイル 599px以下）
   ======================================== */
@media (max-width: 599px) {
  .container { padding: 0 16px; }

  .section { padding: 56px 0; }

  .section__title {
    font-size: 22px; /* 50-60代の可読性向上 */
    margin-bottom: 32px;
  }

  .section__subtitle {
    margin-top: -24px;
    margin-bottom: 32px;
    font-size: 13px;
  }

  /* ヘッダー */
  .header { top: 0; }
  .header__inner { padding: 10px 16px; }
  .header__logo { font-size: 16px; }
  .header__tel {
    background: var(--color-primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
  }
  .header__tel-icon { color: #fff; width: 14px; height: 14px; }
  .header__tel-label { display: inline; }
  .header__tel-number { display: none; }
  .header__tel-hours { display: none; }
  .btn-sm { padding: 8px 16px; font-size: 12px; }

  /* ヒーロー */
  .hero { padding: 96px 16px 32px; }
  .hero__title { font-size: 21px; line-height: 1.7; margin-bottom: 12px; }
  .hero__sub { font-size: 13px; margin-bottom: 24px; }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .hero__cta .btn-lg,
  .hero__cta .btn-cta.btn-lg {
    width: 100%;
    max-width: 320px;
  }

  .hero__badges { gap: 12px; }
  .hero__badges li { font-size: 12px; }

  /* 実績数値 */
  .stats { gap: 12px; }
  .stats__number { font-size: 36px; }
  .stats__unit { font-size: 14px; }
  .stats__label { font-size: 12px; }

  /* 課題提起 */
  .problems { grid-template-columns: 1fr; gap: 16px; }

  .problems__item { padding: 20px; }

  .problems__lead-box { padding: 24px 16px; }
  .problems__lead { font-size: 17px; }

  /* スッキリ解体とは */
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }


  .about__badge { text-align: left; }

  /* About拡張 */
  .about-intro { font-size: 14px; margin-bottom: 32px; }
  .about-verify__title { font-size: 18px; }
  .about-reason__title { font-size: 18px; }
  .about-verify__card { padding: 20px; }
  .about-reason__card { padding: 20px; }

  /* 中野理事 */
  .director__title { font-size: 18px; }
  .director__profile { padding: 24px 20px; }
  .director__photo-placeholder,
  .director__photo img { width: 120px; height: 120px; }
  .director__name { font-size: 20px; }
  .director__media-placeholder,
  .director__media-item img { height: 140px; }
  .director__media-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .director__media-label {
    font-size: 10px;
  }

  /* Benefitカード */
  .benefit-card__top { padding: 20px 24px; }
  .benefit-card__number { font-size: 48px; }
  .benefit-card__body { padding: 20px 24px 28px; }
  .benefit-card__heading { font-size: 18px; }

  /* ご利用の流れ */
  .flow__step { padding: 24px 20px; }

  /* CTA中間 */
  .cta-mid { padding: 48px 0; }
  .cta-mid__text { font-size: 20px; }

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

  .cta-mid__buttons .btn-lg {
    width: 100%;
    max-width: 320px;
  }

  /* 実績・事例 */
  /* 事例カード: モバイルはスワイプ横スクロール */
  .cases {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .cases::-webkit-scrollbar { height: 4px; }
  .cases::-webkit-scrollbar-track { background: var(--color-bg-light); border-radius: 2px; }
  .cases::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 2px; }

  .cases .case-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* スマホ: 6件全てスワイプ表示、ボタン不要 */
  .case-card--extra {
    display: block;
  }

  .cases .case-card:last-child {
    margin-right: 16px;
  }

  .cases__more-wrap {
    display: none;
  }

  /* お客様の声: モバイルはスワイプ横スクロール */
  .voice-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .voice-cards::-webkit-scrollbar { height: 4px; }
  .voice-cards::-webkit-scrollbar-track { background: var(--color-bg-light); border-radius: 2px; }
  .voice-cards::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 2px; }

  .voice-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .voice-cards .voice-card:last-child {
    margin-right: 16px;
  }

  /* 運営者メッセージ */
  .message {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .message__sign { text-align: center; }

  /* CTA最終 */
  .cta-final__title { font-size: 22px; }
  .cta-form { padding: 24px 20px; }
  .cta-form__row { gap: 8px; }
  .btn-lg { padding: 16px 32px; font-size: 16px; }

  /* フローティングCTA — モバイル下部全幅 */
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #1e3050 0%, #1a2744 100%);
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.22);
    justify-content: center;
    gap: 7px;
  }

  .floating-cta__tel,
  .floating-cta__btn {
    border-radius: 12px;
    min-height: 56px;
    padding: 8px 10px;
  }

  .floating-cta__tel { flex: 0.92; }
  .floating-cta__btn { flex: 1.08; }

  .floating-cta__tel-label { font-size: 12px; }
  .floating-cta__tel-number { font-size: 11px; }
  .floating-cta__icon { width: 30px; height: 30px; }
  .floating-cta__icon svg { width: 15px; height: 15px; }
  .floating-cta__btn-main { font-size: 13px; }
  .floating-cta__btn-badge { font-size: 9px; padding: 0 7px; }

  /* テーブル横スクロールインジケーター */
  .compare-table-wrap::after,
  .price-table-wrap::after {
    content: "\2192 横にスクロールできます";
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--color-primary);
    margin-top: 4px;
    opacity: 0.7;
  }

  .footer { padding-bottom: 80px; }
}

/* ========================================
   画像スタイル（プレースホルダー置き換え）
   ======================================== */
.about__photo-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.message__photo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.case-card__image {
  height: 200px;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefitカードのアイコン画像 */
.benefit-card__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-left: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
}

/* ========================================
   メディア掲載・公的実績セクション
   ======================================== */
/* メディア掲載画像 */
.media-keisai {
  margin-bottom: 32px;
}

.media-keisai__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.media-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-badge--wide {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--color-bg-blue);
  border-radius: 16px;
  padding: 20px 28px;
}

.media-badge__logo-img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.media-badge__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.media-badge__desc {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* ========================================
   他社比較表
   ======================================== */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.6;
  min-width: 600px;
}

.compare-table__header {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: var(--color-bg-light);
  border-bottom: 2px solid var(--color-border);
}

.compare-table__header--highlight {
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px 12px 0 0;
  border-bottom: 2px solid var(--color-primary);
}

.compare-table__label {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 13px;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.compare-table__cell {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.compare-table__cell--highlight {
  background: var(--color-bg-blue);
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

.compare-table__cell--highlight strong {
  color: var(--color-primary);
}

.compare-table__note {
  font-size: 12px;
  color: var(--color-text-sub);
  text-align: right;
  margin-top: 8px;
}

.compare-table__who {
  display: block;
  font-size: 11px;
  color: var(--color-text-sub);
  font-weight: 400;
  margin-top: 2px;
}

.compare-table__header--highlight small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

/* 比較表の最後の行に下部ボーダー */
.compare-table tbody tr:last-child .compare-table__cell--highlight {
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0 0 12px 12px;
}

/* ========================================
   CTAフォーム周辺の協会ロゴ
   ======================================== */
.cta-final__partner {
  text-align: center;
  margin-bottom: 24px;
}

.cta-final__partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cta-final__partner-text {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* ========================================
   レスポンシブ追加（新セクション用）
   ======================================== */
@media (max-width: 959px) {
  .media-badge--wide {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

}

@media (max-width: 599px) {
  .about__photo-img {
    width: 150px;
    height: 150px;
  }

  .message__photo-img {
    width: 120px;
    height: 120px;
  }

  .case-card__image {
    height: 160px;
  }

  .benefit-card__icon {
    width: 60px;
    height: 60px;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-table__header {
    padding: 12px 12px;
    font-size: 13px;
  }

  .compare-table__label {
    padding: 10px 12px;
    font-size: 12px;
  }

  .compare-table__cell {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ========================================
   解体費用の相場目安テーブル
   ======================================== */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
  min-width: 500px;
}

.price-table__header {
  padding: 16px 20px;
  font-weight: 700;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  border-bottom: 2px solid var(--color-primary-dark);
}

.price-table__header:first-child {
  border-radius: 12px 0 0 0;
}

.price-table__header:last-child {
  border-radius: 0 12px 0 0;
}

.price-table__label {
  padding: 16px 20px;
  font-weight: 700;
  background: var(--color-bg-blue);
  border-bottom: 1px solid var(--color-border);
}

.price-table__cell {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.price-table__cell strong {
  color: var(--color-primary);
  font-size: 16px;
}

.price-table__note {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 32px;
}

.price-table__cta {
  text-align: center;
}

.price-table__cta-text {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========================================
   工事タイムライン
   ======================================== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  opacity: 0.2;
}

.timeline__item {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -48px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-en);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.timeline__content {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 0 24px 0 var(--color-shadow);
  flex: 1;
}

.timeline__period {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-blue);
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.timeline__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.timeline__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 24px;
}

/* ========================================
   フォームマイクロコピー
   ======================================== */
.cta-form__micro {
  background: var(--color-bg-blue);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.cta-form__micro p {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.8;
}

.cta-form__micro p::before {
  content: "\2713";
  margin-right: 4px;
  font-weight: 700;
}


/* ========================================
   レスポンシブ追加（Phase 2-3 新セクション用）
   ======================================== */
@media (max-width: 959px) {
  .timeline {
    padding-left: 40px;
  }

  .timeline__marker {
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .timeline::before {
    left: 15px;
  }
}

@media (max-width: 599px) {
  .price-table {
    font-size: 13px;
  }

  .price-table__header {
    padding: 12px 10px;
    font-size: 12px;
  }

  .price-table__label,
  .price-table__cell {
    padding: 12px 10px;
    font-size: 12px;
  }

  .price-table__cell strong {
    font-size: 13px;
  }

  .timeline {
    padding-left: 36px;
  }

  .timeline__marker {
    left: -36px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .timeline::before {
    left: 13px;
  }

  .timeline__content {
    padding: 16px 20px;
  }

  .timeline__title {
    font-size: 15px;
  }

  /* モバイルでは装飾シェイプを縮小 */
  .deco-circle,
  .deco-arc {
    opacity: 0.5;
    transform: scale(0.5);
  }

  .wave-divider svg {
    height: 40px;
  }
}

/* ========================================
   背景画像で温かみを追加
   ======================================== */

/* CTA中間セクション: 住宅街の背景 */
.cta-mid {
  position: relative;
  z-index: 0;
}

.cta-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: -1;
}

/* 運営者メッセージ: 温かみのある背景 */
.message {
  position: relative;
}

.section:has(.message)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,235,224,0.3) 0%, transparent 70%);
  z-index: 0;
}

.section:has(.message) {
  position: relative;
}

.section:has(.message) .container {
  position: relative;
  z-index: 1;
}

/* 最終CTAセクション: 信頼感のある背景 */
#cta-final {
  position: relative;
  z-index: 0;
}

#cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.08) 0%, transparent 70%);
  z-index: -1;
}

/* ========== 上へ戻るボタン ========== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: var(--color-text-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ========== 取材レポート誘導バナー ========== */
.investigation-banner {
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(9, 111, 202, 0.12);
  overflow: hidden;
}

.investigation-banner__inner {
  padding: 36px 32px;
  text-align: center;
}

.investigation-banner__label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.investigation-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.investigation-banner__desc {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}

.investigation-banner__link {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 8px;
  transition: background 0.2s;
}

.investigation-banner__link:hover {
  background: var(--color-primary-dark);
}

/* ========== 業界人からの注意喚起 ========== */
.industry-warning {
  background: #fffbf0;
  border: 1px solid #f0dca0;
  border-radius: 16px;
  padding: 32px;
}

.industry-warning__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff3d0;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: #c88a00;
}

.industry-warning__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-text);
}

.industry-warning__text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin-bottom: 12px;
}

.industry-warning__text:last-of-type {
  margin-bottom: 16px;
}

.industry-warning__source {
  font-size: 0.8rem;
  color: #888;
  text-align: right;
}

.industry-warning__source a {
  color: var(--color-primary);
}

/* ========== なぜ安くなるのか（縦フロー構成） ========== */
.price-flow {
  margin-top: 40px;
}

/* --- 上段: 注意喚起エリア --- */
.price-flow__caution {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #e0dbd4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.price-flow__caution-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price-flow__caution-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.price-flow__caution-item {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.price-flow__caution-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #aaa;
}

/* --- 転換部分 --- */
.price-flow__turn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0;
}

.price-flow__arrow {
  width: 2px;
  height: 32px;
  background: var(--color-primary);
  position: relative;
  margin-bottom: 4px;
}

.price-flow__arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-primary);
}

.price-flow__turn-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 12px;
}

/* --- 下段: 解決策エリア --- */
.price-flow__solutions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-flow__solution {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}

.price-flow__solution:last-child {
  border-bottom: none;
}

.price-flow__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(9, 111, 202, 0.08);
  border-radius: 50%;
}

.price-flow__solution-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.price-flow__solution-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}


@media (max-width: 768px) {
  .price-flow__caution {
    padding: 24px 20px;
  }

  .price-flow__caution-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-flow__solution {
    gap: 16px;
    padding: 20px 0;
  }

  .price-flow__number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ========================================
   フォームバリデーション・送信完了
   ======================================== */

/* エラー状態 */
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 4px;
}

.is-error {
  border-color: #e53e3e !important;
  background-color: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2) !important;
}

.field-error {
  display: block;
  color: #e53e3e;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 4px;
}

/* 横並びinputのラッパー（エラーを各inputの下に表示するため） */
.form-field {
  flex: 1;
  min-width: 0;
}

/* フォーム全体のメッセージ（通信エラー等） */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.form-message--error {
  background: #fff5f5;
  color: #e53e3e;
  border: 1px solid #feb2b2;
}

/* 送信完了メッセージ */
.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

/* reCAPTCHA v3バッジ非表示（Googleガイドライン準拠：フォーム内にクレジット表記で代替） */
.grecaptcha-badge {
  visibility: hidden !important;
}

.form-recaptcha-credit {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  margin-top: 8px;
}

.form-recaptcha-credit a {
  color: #aaa;
  text-decoration: underline;
}

