/* =========================================================
   アンテナ工事LP  /  Style
   color: orange #FF6B1A × navy #1A2E5C × white
   ========================================================= */

:root {
  --c-orange: #FF6B1A;
  --c-orange-dark: #E55600;
  --c-orange-light: #FFE9DA;
  --c-navy: #1A2E5C;
  --c-navy-dark: #0F1E40;
  --c-navy-light: #E8ECF6;
  --c-yellow: #FFD440;
  --c-bg: #ffffff;
  --c-bg-soft: #F6F8FB;
  --c-text: #1F2937;
  --c-text-light: #5B6677;
  --c-border: #E2E7EE;
  --c-success: #2BA84A;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 46, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 46, 92, 0.10);
  --shadow-lg: 0 16px 40px rgba(26, 46, 92, 0.16);

  --container: 1080px;
  --container-narrow: 720px;

  --ff: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* -------- Base -------- */
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px; /* 追尾CTAぶん（スマホ） */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-underline-offset: 2px; }
h1, h2, h3 { line-height: 1.4; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
table { border-collapse: collapse; width: 100%; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding: 0 16px;
}
.container--narrow { max-width: calc(var(--container-narrow) + 32px); }

/* -------- Common section -------- */
section { padding: 16px 0; }
@media (min-width: 768px) { section { padding: 20px 0; } }

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-orange);
  font-weight: 700;
  margin: 0 0 8px;
}
.sec-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--c-navy);
  letter-spacing: 0.02em;
}
.sec-title--white { color: #fff; }
.sec-lead {
  font-size: clamp(14px, 2.4vw, 16px);
  color: var(--c-text-light);
  margin: 0 0 32px;
}

.hl-y { color: var(--c-yellow); }

/* =========================================================
   Header（アンテナパートナー）
   PC: 横長バナー画像 / SP: 電話番号＋営業時間のみ
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--c-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 0;
}
.site-header__bar {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.site-header__tel-overlay { display: none; }

/* SP: 専用ヘッダーバー画像 */
.site-header__sp-link {
  display: block;
  text-decoration: none;
  line-height: 0;
}
.site-header__sp-bar {
  display: block;
  width: 100%;
  height: auto;
}

/* PC: 画像ヘッダーを表示、SP用ヘッダーは非表示 */
@media (min-width: 768px) {
  .site-header__bar { display: block; }
  .site-header__tel-overlay {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 28%; right: 22%;
  }
  .site-header__sp-link { display: none; }
}

/* =========================================================
   FV
   ========================================================= */
.fv {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 28px 0 36px;
  overflow: hidden;
  min-height: 560px;
}
/* 画像を全面に敷く（作業員＋壁面アンテナ＋ディッシュアンテナ＋青空を全部入れる） */
.fv__hero {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* SP: 右寄りで壁面アンテナを大きく見せる＋下寄りでディッシュ部分も入れる */
  object-position: 72% 75%;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  -webkit-mask-image: none;
          mask-image: none;
}
/* オーバーレイは控えめに：青空を活かす（テキスト可読性は text-shadow で確保） */
.fv__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(15,30,64,0.35) 0%, rgba(15,30,64,0.12) 35%, rgba(15,30,64,0.0) 70%),
    linear-gradient(180deg, rgba(15,30,64,0.10) 0%, rgba(15,30,64,0) 22%, rgba(15,30,64,0) 80%, rgba(15,30,64,0.30) 100%);
}
.fv__bg::after { display: none; }

@media (min-width: 768px) {
  .fv { padding: 48px 0 64px; min-height: 620px; }
  .fv__hero {
    object-position: 52% 60%;
  }
  .fv__bg {
    background:
      radial-gradient(ellipse at 0% 50%, rgba(15,30,64,0.30) 0%, rgba(15,30,64,0.08) 40%, rgba(15,30,64,0.0) 75%),
      linear-gradient(180deg, rgba(15,30,64,0.10) 0%, rgba(15,30,64,0) 25%);
  }
}
@media (min-width: 1024px) {
  .fv__hero { object-position: 55% 60%; }
}

/* FV左上のロゴ（アンテナパートナー） */
.fv__logo {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  width: 50%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
@media (min-width: 768px) {
  .fv__logo { top: 20px; left: 24px; max-width: 260px; }
}
@media (min-width: 1024px) {
  .fv__logo { max-width: 300px; }
}

.fv__inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 16px;
}
.fv__copy {
  /* テキストは左寄せ。職人画像は右側に出す */
  text-align: left;
  max-width: 100%;
  padding-top: 70px; /* 左上ロゴと重ならないように */
}
@media (min-width: 768px) {
  .fv__copy { max-width: 56%; padding-top: 100px; }
}
@media (min-width: 1024px) {
  .fv__copy { max-width: 52%; padding-top: 110px; }
}

/* 地域最安値挑戦！バナー（添付画像・白背景を透明化済み） */
.fv__badge {
  display: block;
  width: 90%;
  max-width: 320px;
  height: auto;
  margin: 0 0 4px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
@media (min-width: 768px) {
  .fv__badge { max-width: 380px; margin-bottom: 6px; }
}
@media (min-width: 1024px) {
  .fv__badge { max-width: 440px; }
}

/* 即日対応バナー */
.fv__banner {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 4px 0 6px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
@media (min-width: 768px) {
  .fv__banner { max-width: 600px; margin: 6px 0 8px; }
}
@media (min-width: 1024px) {
  .fv__banner { max-width: 680px; }
}
/* お支払い方法バナー（白背景込みでカード状に） */
.fv__banner--payment {
  border-radius: 12px;
  overflow: hidden;
  margin: 8px 0 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  filter: none;
}

/* タイトル：3D感のあるアウトライン＋シャドウ */
.fv__title {
  margin: 0 0 4px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.fv__title-main {
  display: block;
  font-size: clamp(38px, 8vw, 64px);
  color: #fff;
  /* 重ね合わせの黒シャドウで立体感を演出 */
  text-shadow:
    0 0 1px rgba(0,0,0,0.7),
    -2px 0 0 rgba(15,30,64,0.95),
    2px 0 0 rgba(15,30,64,0.95),
    0 -2px 0 rgba(15,30,64,0.95),
    0 2px 0 rgba(15,30,64,0.95),
    0 6px 0 rgba(15,30,64,0.85),
    0 10px 20px rgba(0,0,0,0.45);
  margin-bottom: 4px;
}
.fv__price {
  display: inline-flex; align-items: baseline; flex-wrap: wrap;
  gap: 0 6px;
  line-height: 1;
  margin-top: 0;
}
.fv__price-num {
  color: var(--c-yellow);
  font-size: clamp(58px, 13vw, 108px);
  font-weight: 900;
  text-shadow:
    -2px 0 0 rgba(15,30,64,0.95),
    2px 0 0 rgba(15,30,64,0.95),
    0 -2px 0 rgba(15,30,64,0.95),
    0 2px 0 rgba(15,30,64,0.95),
    0 8px 0 rgba(15,30,64,0.85),
    0 14px 24px rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}
.fv__price-unit {
  color: var(--c-yellow);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  text-shadow:
    -2px 0 0 rgba(15,30,64,0.95),
    2px 0 0 rgba(15,30,64,0.95),
    0 -2px 0 rgba(15,30,64,0.95),
    0 2px 0 rgba(15,30,64,0.95),
    0 6px 0 rgba(15,30,64,0.85),
    0 10px 18px rgba(0,0,0,0.4);
}
.fv__price-tax {
  font-style: normal;
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-navy);
  font-size: clamp(13px, 2.8vw, 22px);
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 999px;
  margin-left: 4px;
  align-self: center;
  box-shadow: 0 3px 0 rgba(15,30,64,0.4);
  transform: translateY(-6px);
}

/* 3つのメダル画像 */
.fv__medals {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 6px 0 4px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
@media (min-width: 768px) {
  .fv__medals { max-width: 560px; margin: 8px 0 6px; }
}
@media (min-width: 1024px) {
  .fv__medals { max-width: 600px; }
}

.fv__note {
  font-size: 11px; opacity: 0.85; margin-top: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* SP: 全要素をぎゅっとコンパクトに配置 */
@media (max-width: 767px) {
  .fv { min-height: auto; padding: 16px 0 24px; }
  .fv__inner { padding: 0 14px; }
  /* SP: 縦長SP専用ヒーロー画像を上方向にシフトして作業員の顔を
     メダル群と即日対応バナーの間に表示する
     横は image を右側に寄せ気味にして、顔=左 / アンテナ=右 全体が
     ビューポートに収まるようにする */
  .fv__hero {
    height: 120%;
    top: -280px;
    bottom: auto;
    object-fit: cover;
    object-position: 100% 0%;
    transform: none;
    background: linear-gradient(180deg, #cfe7ff 0%, #e8f4ff 60%, #f2f6fb 100%);
  }
  .fv__copy {
    max-width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 86px;
  }
  /* ロゴ：SPでも大きく */
  .fv__logo { max-width: 230px; width: 62%; top: 16px; left: 14px; }
  /* バナー：minantena感ある大きめのサイズ */
  .fv__badge {
    width: 94%;
    max-width: 360px;
    margin-bottom: 6px;
  }
  /* タイトル・価格は全幅、迫力ある大きめサイズ */
  .fv__title { margin-bottom: 4px; padding-right: 0; }
  .fv__title-main {
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .fv__price {
    gap: 0 4px;
    align-items: baseline;
    margin-top: 4px;
  }
  .fv__price-num { font-size: clamp(64px, 19vw, 96px); }
  .fv__price-unit { font-size: clamp(30px, 9vw, 46px); }
  .fv__medals {
    width: 100%;
    max-width: none;
    margin: 10px 0 10px;
  }
  .fv__banner {
    width: 100%;
    max-width: none;
    /* SP: 即日対応バナーの上余白を広げて作業員の顔が見える位置まで下げる */
    margin: 110px 0 10px;
  }
  /* お支払いカード(--payment)の上余白は通常通り */
  .fv__banner--payment { margin: 10px 0 10px; }
  /* CTAペアはモバイルでフル幅に戻す */
  .fv__cta { max-width: none; margin-top: 6px; }
  .btn { padding: 14px 16px; }
  .btn__pre { font-size: 12px; }
  .btn__main { font-size: clamp(20px, 5.6vw, 24px); }
  .btn__sub { font-size: 12px; }
  /* SP: 注釈テキストを1行に収める（折り返さないよう自動縮小） */
  .fv__note {
    font-size: clamp(8px, 2.45vw, 11px);
    margin-top: 10px;
    white-space: nowrap;
    text-align: center;
    letter-spacing: -0.01em;
  }
}

/* FV直下のCTAバンド（画像バナー＋クリック領域） */
.fv-cta-band {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--c-border);
}
@media (min-width: 768px) {
  .fv-cta-band { padding: 28px 0 32px; }
}
.fv-cta-band__banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.fv-cta-band__img {
  display: block;
  width: 100%;
  height: auto;
}
/* クリック領域（透明オーバーレイ）：画像内の電話番号エリアとメールエリアの相対位置 */
/* 画像の縦半分の左側＝電話、右側＝メール（横並び）。SPは縦並びになるので調整 */
.fv-cta-band__tel-area,
.fv-cta-band__form-area {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
/* PC レイアウト：左下に電話、右下にメール */
.fv-cta-band__tel-area {
  /* 画像内：電話番号と受付時間の領域 */
  left: 3%;
  top: 47%;
  width: 64%;
  height: 50%;
  border-radius: 14px;
}
.fv-cta-band__form-area {
  /* 画像内：メール・Webで相談ボタン領域 */
  left: 69%;
  top: 47%;
  width: 28%;
  height: 50%;
  border-radius: 14px;
}
.fv-cta-band__tel-area:hover,
.fv-cta-band__form-area:hover {
  background: rgba(255,255,255,0.08);
}

/* CTA pair（残存用） */
.cta-pair {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  margin: 16px auto 0;
  max-width: 720px;
}
.cta-pair--center { margin-top: 28px; }

/* 共通CTAバナー（FV以外の各セクション用） */
.cta-banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 20px auto 0;
  line-height: 0;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}
.cta-banner__img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-banner__tel,
.cta-banner__form {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
}
.cta-banner__tel {
  left: 3%;
  top: 47%;
  width: 64%;
  height: 50%;
}
.cta-banner__form {
  left: 69%;
  top: 47%;
  width: 28%;
  height: 50%;
}
.cta-banner--on-orange { filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); margin-top: 28px; }

@media (min-width: 768px) {
  .cta-pair { grid-template-columns: 1fr 1fr; }
}

/* Button base */
.btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn__pre { font-size: 12px; font-weight: 700; opacity: 0.9; }
.btn__main { font-size: clamp(20px, 5vw, 26px); font-weight: 900; letter-spacing: 0.02em; }
.btn__sub { font-size: 12px; opacity: 0.9; }

.btn--tel {
  background: var(--c-orange);
  color: #fff;
}
.btn--tel:hover { background: var(--c-orange-dark); }
.btn--tel::before {
  content: "📞";
  font-size: 22px;
  display: inline-block;
  margin-bottom: 2px;
}
.btn--form {
  background: #fff;
  color: var(--c-navy);
  border: 2px solid var(--c-navy);
}
.btn--form:hover { background: var(--c-navy); color: #fff; }
.btn--form::before {
  content: "✉";
  font-size: 18px; line-height: 1;
  margin-bottom: 2px;
}

/* Closing巨大ボタン */
.btn--lg { padding: 22px 24px; }
.btn--lg .btn__main { font-size: clamp(24px, 6vw, 32px); }

/* Insurance dark セクション用 */
.btn--tel-on-dark { background: var(--c-yellow); color: var(--c-navy); }
.btn--tel-on-dark:hover { background: #ffdd66; }
.btn--form-on-dark { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--form-on-dark:hover { background: #fff; color: var(--c-navy); }

/* Mini CTA */
.btn-mini {
  display: inline-block; margin-top: 12px;
  background: var(--c-navy); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 13px;
  transition: background 0.15s ease;
}
.btn-mini:hover { background: var(--c-navy-dark); }
.btn-mini--accent { background: var(--c-orange); }
.btn-mini--accent:hover { background: var(--c-orange-dark); }

/* =========================================================
   SECTION 2 お悩み共感（バナー画像＋クリック領域）
   ========================================================= */
.trouble {
  background: #fff;
  position: relative;
  padding: 4px 0 4px;
}
@media (min-width: 768px) { .trouble { padding: 6px 0 6px; } }
/* PCは他セクションと同じ container 制約に揃える。
   SP のみ余白を極小化したいので下の @media でだけ広げる */
.trouble__banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
/* SP: コンテナ制約を解除して左右ギリギリまで表示 */
@media (max-width: 767px) {
  .trouble > .container {
    max-width: 100%;
    padding: 0 4px;
  }
  .trouble__banner { max-width: 100%; }
}
.trouble__img {
  display: block;
  width: 100%;
  height: auto;
}
/* バナー画像内の2つのCTAボタン領域に重ねる透明アンカー */
.trouble__cta {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
}
/* 新築・新規設置：画像内 左下のボタン位置 */
.trouble__cta--install {
  left: 5%;
  top: 78%;
  width: 36%;
  height: 14%;
}
/* 修理：画像内 右下のボタン位置 */
.trouble__cta--repair {
  left: 59%;
  top: 78%;
  width: 36%;
  height: 14%;
}
.trouble__cta:hover { background: rgba(255,255,255,0.12); }

/* =========================================================
   SECTION 3 料金表（バナー画像）
   ========================================================= */
.price__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.price__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
/* 旧テーブルは非表示 */
.price-table[hidden] { display: none !important; }

/* =========================================================
   SECTION 4 選ばれる理由（バナー画像）
   ========================================================= */
.reasons__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.reasons__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
/* 旧リストは非表示 */
.reasons__list[hidden] { display: none !important; }
/* sec-eyebrow / sec-title / sec-lead は画像内に含まれるので非表示 */
.reasons .sec-eyebrow,
.reasons > .container > .sec-title,
.reasons > .container > .sec-lead { display: none; }

/* =========================================================
   SECTION 5 工事メニュー（バナー画像）
   ========================================================= */
.menu__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.menu__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
/* 旧コンテンツは非表示 */
.menu__grid[hidden] { display: none !important; }
.menu > .container > .sec-title[hidden],
.menu > .container > .sec-lead[hidden] { display: none !important; }

/* =========================================================
   SECTION 12 最終クロージングCTA（バナー画像）
   ========================================================= */
.closing { background: var(--c-orange); padding: 16px 0 20px; }
@media (min-width: 768px) { .closing { padding: 20px 0 24px; } }
.closing__banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}
.closing__img {
  display: block;
  width: 100%;
  height: auto;
}
.closing__tel,
.closing__form {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
}
/* 画像内：左下の青い電話エリア（365日対応〜お電話受付時間） */
.closing__tel {
  left: 6%;
  top: 64%;
  width: 60%;
  height: 33%;
}
/* 画像内：右下のメール・Webエリア */
.closing__form {
  left: 68%;
  top: 64%;
  width: 27%;
  height: 33%;
}
.closing__title[hidden],
.closing__badges[hidden] { display: none !important; }

/* =========================================================
   SECTION 10 安心の取り組み（バナー画像）
   ========================================================= */
.safety { background: #fff; }
.safety__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.safety__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
.safety__grid[hidden],
.safety > .container > .sec-title[hidden] { display: none !important; }

/* =========================================================
   SECTION 9 ご利用の流れ（バナー画像）
   ========================================================= */
.flow__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.flow__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
.flow__list[hidden],
.flow > .container > .sec-title[hidden],
.flow > .container > .sec-lead[hidden] { display: none !important; }

/* =========================================================
   SECTION 8 対応エリア（バナー画像）
   ========================================================= */
.area__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.area__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
/* 旧コンテンツ非表示 */
.area__grid[hidden],
.area > .container > .sec-title[hidden],
.area > .container > .sec-lead[hidden],
.area__note[hidden] { display: none !important; }

/* =========================================================
   SECTION 7 火災保険サポート（バナー画像）
   ========================================================= */
.insurance { background: #fff; }
.insurance::before { display: none !important; }
.insurance__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 0;
}
.insurance__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
/* 旧コンテンツ非表示 */
.insurance__wrap { display: none; }

/* =========================================================
   SECTION 6 期間限定 特典・キャンペーン（バナー画像）
   ========================================================= */
.campaign__banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto 16px;
  line-height: 0;
}
.campaign__banner:last-of-type { margin-bottom: 0; }
.campaign__banner--menu { margin-top: 8px; }
.campaign__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}
@media (min-width: 768px) {
  .campaign__banner { margin-bottom: 20px; }
  .campaign__banner--menu { margin-top: 12px; }
}

/* 旧スタイル（無効化）はそのまま下に残してOK */
.price-table {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.price-table table { font-size: 15px; }
.price-table th, .price-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: middle;
}
.price-table thead th {
  background: var(--c-navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-align: left;
}
.price-table tbody th {
  font-weight: 700;
  color: var(--c-navy);
  background: var(--c-bg-soft);
  width: 38%;
}
.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: none; }
.price-table .is-featured th { background: linear-gradient(135deg, #fff5ee 0%, var(--c-orange-light) 100%); position: relative; }
.price-table .is-featured th::before {
  content: "おすすめ";
  position: absolute; top: 6px; right: 6px;
  background: var(--c-orange); color: #fff;
  font-size: 10px; padding: 2px 8px; border-radius: 999px;
}
.amount {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  color: var(--c-orange-dark);
  letter-spacing: 0.02em;
}
.unit { font-size: 14px; color: var(--c-text); font-weight: 700; margin-left: 2px; }
.amount-text { font-weight: 700; color: var(--c-navy); }

@media (max-width: 640px) {
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 8px; }
  .price-table tbody th { width: 44%; }
  /* 特徴列をモバイルでは非表示 */
  .price-table thead th:nth-child(3),
  .price-table tbody td:nth-child(3) { display: none; }
}

.price__note {
  font-size: 12px; color: var(--c-text-light); margin-bottom: 16px;
}

/* =========================================================
   SECTION 4 選ばれる理由
   ========================================================= */
.reasons { background: #fff; }
.reasons__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .reasons__list { grid-template-columns: repeat(2, 1fr); }
  .reasons__item--01 { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .reasons__list { grid-template-columns: repeat(3, 1fr); }
  .reasons__item--01 { grid-column: 1 / -1; }
}
.reasons__item {
  position: relative;
  background: var(--c-navy-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  border: 1px solid var(--c-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reasons__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.reasons__item--01 {
  background: linear-gradient(135deg, var(--c-orange) 0%, #FF8B47 100%);
  color: #fff;
  border-color: transparent;
}
.reasons__item--01 .reasons__num { background: rgba(255,255,255,0.25); color: #fff; }
.reasons__item--01 h3 { color: #fff; }

.reasons__num {
  position: absolute; top: -14px; left: 22px;
  background: var(--c-orange);
  color: #fff;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.reasons__item h3 {
  margin: 4px 0 10px;
  font-size: 18px;
  color: var(--c-navy);
}
.reasons__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   SECTION 5 工事メニュー
   ========================================================= */
.menu { background: var(--c-bg-soft); }
.menu__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(3, 1fr); }
  .menu__card--wide { grid-column: 1 / -1; }
}
.menu__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
}
.menu__card h3 { margin: 8px 0 6px; color: var(--c-navy); font-size: 18px; }
.menu__price {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--c-orange-dark);
  font-size: 18px;
}
.menu__tag {
  margin-top: auto; padding-top: 12px;
  font-size: 12px; color: var(--c-text-light);
  border-top: 1px dashed var(--c-border);
}
.menu__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-navy-light);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.menu__icon::before {
  font-size: 28px;
}
.menu__icon--yagi::before     { content: "📡"; }
.menu__icon--design::before   { content: "▭"; font-weight: 900; color: var(--c-navy); }
.menu__icon--unicorn::before  { content: "🦄"; }
.menu__icon--bs::before       { content: "🛰️"; }
.menu__icon--repair::before   { content: "🛠️"; }

.menu__card--wide { background: linear-gradient(135deg, #fff 0%, var(--c-orange-light) 100%); }

/* =========================================================
   SECTION 6 キャンペーン
   ========================================================= */
.campaign { background: #fff; }
.campaign__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .campaign__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.campaign__card {
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.campaign__card--limited { background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-dark) 100%); color: #fff; }
.campaign__card--hikari { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%); color: #fff; }

.campaign__tag {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-navy);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 12px;
}
.campaign__card h3 {
  margin: 0 0 12px; font-size: clamp(18px, 4vw, 22px);
  font-weight: 900; line-height: 1.5;
}
.campaign__hl {
  color: var(--c-yellow);
  font-size: 1.2em;
}
.campaign__note {
  font-size: 11px; opacity: 0.85; margin-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.3);
  padding-top: 10px;
}

/* =========================================================
   SECTION 7 火災保険
   ========================================================= */
.insurance {
  background: #fff;
  color: var(--c-text);
  position: relative;
  overflow: hidden;
  padding: 16px 0 20px;
}
@media (min-width: 768px) { .insurance { padding: 20px 0 24px; } }
.insurance::before { display: none; }
.insurance__wrap { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.insurance__body { max-width: 720px; }
.insurance .sec-eyebrow { color: var(--c-yellow); }
.insurance__note {
  font-size: 12px; opacity: 0.8; border-top: 1px dashed rgba(255,255,255,0.3);
  padding-top: 12px; margin-top: 16px;
}

/* =========================================================
   SECTION 8 エリア
   ========================================================= */
.area { background: var(--c-bg-soft); }
.area__grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
}
@media (min-width: 768px) { .area__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.area__block {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border-left: 4px solid var(--c-orange);
  box-shadow: var(--shadow-sm);
}
.area__block h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--c-navy);
}
.area__block p {
  margin: 0; font-size: 13px; line-height: 1.6;
}
.area__note { font-size: 12px; color: var(--c-text-light); }

/* =========================================================
   SECTION 9 流れ
   ========================================================= */
.flow { background: #fff; }
.flow__list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .flow__list { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .flow__list { grid-template-columns: repeat(6, 1fr); gap: 12px; } }

.flow__step {
  background: var(--c-navy-light);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  border: 1px solid var(--c-border);
}
.flow__num {
  display: inline-block;
  background: var(--c-orange);
  color: #fff;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.flow__step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--c-navy);
}
.flow__step p { margin: 0; font-size: 13px; line-height: 1.6; }

/* =========================================================
   SECTION 10 安心
   ========================================================= */
.safety { background: var(--c-bg-soft); }
.safety__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .safety__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.safety__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-orange);
}
.safety__card h3 {
  margin: 0 0 10px; font-size: 16px; color: var(--c-navy);
}
.safety__card p { font-size: 14px; margin: 0; }
.pay-list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pay-list li {
  background: var(--c-navy-light);
  color: var(--c-navy);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* =========================================================
   SECTION 11 FAQ
   ========================================================= */
.faq { background: #fff; }
.faq__list {
  max-width: 800px; margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--c-orange); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 16px 50px 16px 56px;
  font-weight: 700; color: var(--c-navy);
  position: relative;
  user-select: none;
  line-height: 1.5;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "Q";
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--c-orange); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.faq__item summary::after {
  content: "＋";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-weight: 900; color: var(--c-orange);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 24px 16px 56px;
  position: relative;
}
.faq__body::before {
  content: "A";
  position: absolute; left: 16px; top: 0;
  width: 28px; height: 28px;
  background: var(--c-navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.faq__body p { margin: 0; font-size: 14px; }

/* =========================================================
   SECTION 12 Closing
   ========================================================= */
.closing {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-dark) 100%);
  color: #fff;
  text-align: center;
}
.closing__title {
  margin: 0 0 20px;
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 900;
  line-height: 1.5;
}
.closing__title span { font-size: 0.7em; opacity: 0.95; }
.closing__badges {
  list-style: none; padding: 0; margin: 0 auto 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 520px;
}
.closing__badges li {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius);
  padding: 10px 4px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.closing__badges .badge-num { color: #fff; }
.closing__badges .badge-label { color: rgba(255,255,255,0.95); }

.closing__cta {
  display: grid; gap: 12px;
  max-width: 720px; margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .closing__cta { grid-template-columns: 1fr 1fr; } }

.closing .btn--tel { background: #fff; color: var(--c-orange-dark); }
.closing .btn--tel:hover { background: var(--c-navy); color: #fff; }
.closing .btn--tel::before { content: "📞"; }
.closing .btn--form { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.closing .btn--form:hover { background: var(--c-navy-dark); color: #fff; }
.closing .btn--form::before { content: "✉"; }

/* =========================================================
   フォーム
   ========================================================= */
.form { background: var(--c-bg-soft); }
.form__body {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.form__row { margin-bottom: 18px; }
.form__row label, .form__row legend {
  display: block; font-weight: 700; color: var(--c-navy);
  font-size: 14px; margin-bottom: 6px;
}
.req {
  background: var(--c-orange); color: #fff;
  font-size: 10px; padding: 2px 8px;
  border-radius: 999px; font-weight: 700;
  margin-left: 6px;
}
.opt {
  background: var(--c-text-light); color: #fff;
  font-size: 10px; padding: 2px 8px;
  border-radius: 999px; font-weight: 700;
  margin-left: 6px;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px; /* iOS拡大防止 */
  font-family: inherit;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
  color: var(--c-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,0.15);
}
.form__row--radio {
  border: none; padding: 0;
}
.form__row--radio label {
  display: inline-flex; align-items: center;
  gap: 6px; margin: 0 12px 6px 0;
  font-weight: 500; color: var(--c-text);
  cursor: pointer;
  padding: 6px 12px;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
}
.form__row--radio label:hover { border-color: var(--c-orange); }
.form__row--radio input[type="radio"] {
  width: auto; margin: 0;
}

.form__priv { font-size: 12px; color: var(--c-text-light); }
.form__priv a { color: var(--c-navy); }

.btn--submit {
  width: 100%;
  background: var(--c-orange);
  color: #fff;
  padding: 18px 20px;
  font-size: 18px;
  border-radius: var(--radius-lg);
  font-weight: 900;
  display: block;
}
.btn--submit:hover { background: var(--c-orange-dark); }
.btn--submit::before { display: none; }

.form__after {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--c-text-light);
}
.form__after a { color: var(--c-orange-dark); font-weight: 700; text-decoration: none; }
.form__after a:hover { text-decoration: underline; }

/* =========================================================
   Footer
   ========================================================= */
.foot {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 32px;
}
.foot__title {
  margin: 0 0 16px;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}
.foot__list {
  display: grid; gap: 8px; margin: 0 0 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .foot__list { grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
}
.foot__list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot__list dt {
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 13px;
}
.foot__list dd {
  margin: 0;
  font-size: 14px;
}
.foot__list a { color: #fff; }

.foot__notes h3 {
  color: #fff; margin: 24px 0 8px; font-size: 14px;
  border-left: 3px solid var(--c-orange); padding-left: 10px;
}
.foot__notes ul {
  font-size: 12px; color: rgba(255,255,255,0.75);
  padding-left: 1.2em;
}
.foot__notes ul li { margin-bottom: 4px; }
.foot__notes p { font-size: 12px; color: rgba(255,255,255,0.75); }

.foot__copy {
  text-align: center;
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
/* シンプルフッターのナビゲーション */
.foot { background: var(--c-navy-dark); padding: 28px 16px; }
.foot__nav {
  text-align: center;
  font-size: 14px;
  margin: 0;
}
.foot__nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 12px;
}
.foot__nav a:hover { text-decoration: underline; }
.foot__sep { color: rgba(255,255,255,0.45); }

/* =========================================================
   追尾CTA（バナー画像＋クリック領域）
   ========================================================= */
.floating-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  pointer-events: none; /* 子要素のみクリック可能に */
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta__banner {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 8px;
  pointer-events: auto;
  filter: drop-shadow(0 -6px 18px rgba(0,0,0,0.25));
}
.floating-cta__img {
  display: block;
  width: 100%;
  height: auto;
}
/* クリック領域：画像内の電話ボタン／Webボタン */
.floating-cta__area {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
}
.floating-cta__area--tel {
  /* 画像下部 左側のオレンジボタン */
  left: 4%;
  top: 41%;
  width: 44%;
  height: 50%;
}
.floating-cta__area--form {
  /* 画像下部 右側の白ボタン */
  left: 52%;
  top: 41%;
  width: 44%;
  height: 50%;
}

@media (min-width: 1024px) {
  /* デスクトップでは追尾CTAは画面右下に小さくまとめる */
  body { padding-bottom: 0; }
  .floating-cta__banner {
    margin: 0 16px 16px auto;
    max-width: 380px;
  }
}

/* =========================================================
   Motion / Accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* タップ余白の確保 */
a, button, summary {
  min-height: 44px;
}
.btn { min-height: 56px; }
.btn--lg { min-height: 88px; }

/* =========================================================
   SP専用 追加調整
   - .closing バナーをセクションいっぱいに拡大
   - フッターナビの見切れを回避（折り返し許可・padding/font微調整）
   - .price セクションを非表示にし、工事メニュー(.menu)を料金表位置へ移動
   ========================================================= */
@media (max-width: 767px) {
  /* 追尾CTAが大きく成長してフッターを隠していたので余白を拡張 */
  body { padding-bottom: 180px; }

  /* セクション間の余白を一括圧縮（既定 56px → 8px） */
  section { padding: 8px 0; }
  /* 個別指定があるセクションも上書き */
  .insurance { padding: 8px 0 !important; }
  .trouble { padding: 4px 0 !important; }

  /* SP用 trouble バナー画像のCTAタップ領域 (縦並びレイアウトに合わせて再配置)
     install=無料相談(メールフォーム), repair=最短即日(電話)
     ボタン位置は画像から実測: navy 52.4-56.7%, orange 77.5-81.8% */
  .trouble__cta--install {
    left: 6%;
    top: 51%;
    width: 88%;
    height: 7%;
  }
  .trouble__cta--repair {
    left: 6%;
    top: 76%;
    width: 88%;
    height: 7%;
  }

  /* closing バナー: コンテナ余白も解除して横幅いっぱいに */
  .closing { padding: 8px 0 12px; }
  .closing > .container { max-width: 100%; padding: 0; }
  .closing__banner { max-width: 100%; padding: 0; }

  /* フッターナビ: 折り返しを許可してすべて表示 */
  .foot { padding: 20px 8px 24px; }
  .foot__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 8px;
    font-size: 13px;
    line-height: 1.6;
  }
  .foot__nav a { padding: 0 4px; min-height: auto; }
  .foot__sep { display: inline-block; }

  /* 料金表セクションを非表示、メニューを料金表の位置(順序)へ */
  #main { display: flex; flex-direction: column; }
  .price { display: none !important; }
  .fv          { order: 1; }
  .fv-cta-band { order: 2; }
  .trouble     { order: 3; }
  .menu        { order: 4; }
  .reasons     { order: 5; }
  .campaign    { order: 6; }
  .insurance   { order: 7; }
  .area        { order: 8; }
  .flow        { order: 9; }
  .safety      { order: 10; }
  .faq         { order: 11; }
  .closing     { order: 12; }
}
