/* ============================================================
   area2-scoped.css  v5.0 — カンプ完全再現版
   スコープ: .area2-content.area2--{service}
   ============================================================ */

/* ── CSS変数（サービス別カラー） ── */
.area2-content {
  --accent:   #0693E3;
  --accent-d: #0a6fb0;
  --ink:      #16314b;
  --soft:     #eaf5fc;
  --soft2:    #f3f9fd;
  --line:     #d7e6f2;
  --orange:   #f47b20;
  --green:    #1f9d4d;
  --red:      #e23b2e;
  --gold:     #f2b300;
  --muted:    #5d6b78;
  --hero-bg:  linear-gradient(135deg,#0a7fc6,#0693E3 60%,#3fb0ef);
}
.area2-content.area2--glass {
  --accent:   #006B7C;
  --accent-d: #055867;
  --soft:     #e3f0f2;
  --soft2:    #f1f8f9;
  --line:     #cfe3e6;
  --hero-bg:  linear-gradient(135deg,#004d5c,#006B7C 60%,#1a8fa0);
}
.area2-content.area2--key {
  --accent:   #c87000;
  --accent-d: #9a5500;
  --soft:     #fff6e0;
  --soft2:    #fffaf0;
  --line:     #ecdcb4;
  --hero-bg:  linear-gradient(135deg,#1a1a2e,#16213e 60%,#0f3460);
}

/* ── ベース ── */
.area2-content * { box-sizing: border-box; }
.area2-content img { max-width: 100%; display: block; }
.area2-content a { color: var(--accent-d); }
.area2-content .telno { color: inherit; text-decoration: none; }

/* ── ヒーロー ── */
.area2-content .hero {
  position: relative;
  background: var(--hero-bg);
  color: #fff;
  overflow: hidden;
  padding: 0;
}
/* ヒーロー 内部：左テキスト + 右画像 */
.area2-content .hero-inner {
  display: flex;
  align-items: stretch;
  min-height: 220px;
}
.area2-content .hero-text {
  flex: 1 1 0;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}
.area2-content .hero-img-wrap {
  flex: 0 0 auto;
  width: 38%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.area2-content .hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(2px 4px 20px rgba(0,0,0,.3));
}
/* バッジ */
.area2-content .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
/* H1 */
.area2-content .hero h1 {
  font-size: 26px;
  margin: 0;
  line-height: 1.35;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
/* リードテキスト */
.area2-content .hero-lead {
  margin: 0;
  font-size: 13px;
  opacity: .9;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 電話CTAバナー */
.area2-content .hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
}
.area2-content .hero-cta::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -40%;
  width: 30%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  animation: kira 4s ease-in-out infinite;
}
.area2-content .hero-cta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.area2-content .hero-cta-title {
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}
.area2-content .hero-cta-sub {
  font-size: 12px;
  opacity: .9;
  white-space: nowrap;
}
.area2-content .hero-cta-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.area2-content .hero-cta-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
}
.area2-content .hero-cta-fdlogo {
  height: 28px;
  width: auto;
  display: block;
}
.area2-content .hero-cta-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}
.area2-content .hero-cta-badge {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  flex: 0 0 auto;
}
/* 旧wave画像（非表示） */
.area2-content .hero .wave { display: none; }

/* ── 監修者ブロック（上部コンパクト）＋「この記事でわかること」横並び ── */
.area2-content .sup-wrap {
  display: flex;
  gap: 14px;
  margin: 20px 16px 0;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
.area2-content .sup {
  flex: 0 0 auto;
  width: 48%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(10,60,110,.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.area2-content .sup .ph {
  width: 72px;
  height: 80px;
  border-radius: 8px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--soft);
  border: 1px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent-d);
  text-align: center;
}
.area2-content .sup .ph img { width: 100%; height: 100%; object-fit: cover; }
.area2-content .sup .nm { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.area2-content .sup .nm b { font-size: 18px; color: var(--ink); display: block; }
.area2-content .sup .role { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.area2-content .sup a { font-size: 12px; font-weight: 700; text-decoration: none; color: var(--accent-d); }
.area2-content .sup .bio { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* この記事でわかること */
.area2-content .aio {
  flex: 1;
  background: var(--soft2);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 14px 16px;
}
.area2-content .aio h2 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--accent-d);
  font-weight: 800;
}
.area2-content .aio ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.area2-content .aio li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
}
.area2-content .aio li:before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--accent);
}
.area2-content .aio li:after {
  content: "✓";
  position: absolute;
  left: 2px; top: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

/* ── セクションタイトル ── */
.area2-content .sec-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 38px 0 18px;
  position: relative;
}
.area2-content .sec-title:before,
.area2-content .sec-title:after {
  content: "──";
  color: var(--accent);
  margin: 0 10px;
  opacity: .5;
}

/* ── 電話CTA（オレンジ帯） ── */
.area2-content .octa {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  margin: 20px 0;
  padding: 14px 20px;
  position: relative;
  overflow: hidden;
}
.area2-content .octa > * { position: relative; z-index: 1; }
.area2-content .octa::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -40%;
  width: 30%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-18deg);
  z-index: 0;
  animation: kira 4s ease-in-out infinite;
}
@keyframes kira { 0%{left:-40%} 18%{left:130%} 100%{left:130%} }
@media (prefers-reduced-motion: reduce) {
  .area2-content .octa::after { animation: none; opacity: 0; }
}
.area2-content .octa svg { width: 44px !important; height: 44px !important; flex: 0 0 auto; }
.area2-content .octa .t { font-size: 18px; font-weight: 800; white-space: nowrap; }
/* octa 左右分割 */
.area2-content .octa__left {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.area2-content .octa__right {
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.area2-content .octa__tel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.area2-content .octa__freedial-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}
.area2-content .octa__telno {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}
.area2-content .octa__badge {
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
/* 旧デザイン互換 */
.area2-content .octa .num { margin-left: auto; text-align: right; }
.area2-content .octa .num .fd {
  background: var(--green);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 11px;
  display: inline-block;
  margin-bottom: 2px;
}
.area2-content .octa .num b {
  font-size: 28px;
  display: block;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ── 症状（2列グリッド） ── */
.area2-content .sym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
}
.area2-content .sym {
  display: flex;
  gap: 10px;
  background: var(--soft);
  border-radius: 12px;
  padding: 12px;
  align-items: flex-start;
  position: relative;
}
.area2-content .sym .no {
  position: absolute;
  top: -8px; left: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.area2-content .sym .ill {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.area2-content .sym .tx h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}
.area2-content .sym .tx p,
.area2-content .sym .tx .detail {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.area2-content .sym .tx .detail p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── 料金テーブル（カンプ準拠：左ラベル＋2列） ── */
.area2-content .price-wrap {
  margin: 8px 16px;
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.area2-content .price-label {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 44px;
}
.area2-content .price-table {
  flex: 1;
  width: 100%;
  border-collapse: collapse;
}
.area2-content .price-table tr {
  border-bottom: 1px solid var(--line);
}
.area2-content .price-table tr:last-child {
  border-bottom: none;
}
.area2-content .price-table tr:nth-child(even) td {
  background: var(--soft2);
}
.area2-content .price-table td {
  padding: 12px 14px;
  font-size: 14px;
  vertical-align: middle;
}
.area2-content .price-table td.p {
  color: var(--red);
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  text-align: right;
  padding-right: 18px;
}
.area2-content .area2--key .price-table td.p {
  color: var(--accent);
}
.area2-content .price-note {
  font-size: 11px;
  color: var(--muted);
  margin: 6px 16px 0;
}

/* ── 選ばれる理由 ── */
.area2-content .reasons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 0 16px;
}
.area2-content .reason {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 6px;
  text-align: center;
  color: var(--accent);
}
.area2-content .reason svg { width: 34px !important; height: 34px !important; }
.area2-content .reason span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

/* ── フロー ── */
.area2-content .flow {
  display: flex;
  gap: 6px;
  padding: 0 12px;
  align-items: stretch;
}
.area2-content .step {
  flex: 1;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 8px;
  background: #fff;
}
.area2-content .step .h {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 14px;
}
.area2-content .step .h .n {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex: 0 0 auto;
}
.area2-content .step img {
  height: 80px;
  margin: 0 auto 8px;
  object-fit: contain;
}
.area2-content .step p,
.area2-content .step .desc {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.area2-content .step .desc p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.area2-content .flow .arw {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

/* ── FAQ ── */
.area2-content .faq { margin: 8px 16px; }
.area2-content .faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: visible !important;
  margin-bottom: 8px;
}
.area2-content .faq summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 44px 13px 14px;
  font-weight: 700;
  position: relative;
  background: #fff;
  font-size: 14px;
}
.area2-content .faq summary::-webkit-details-marker { display: none; }
.area2-content .faq summary:after {
  content: "+";
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  line-height: 22px;
  font-weight: 800;
}
.area2-content .faq details[open] summary:after { content: "–"; }
.area2-content .faq .faq-ans {
  padding: 0 14px 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── 最終CTA（フッター前の大型ブロック） ── */
.area2-content .fcta {
  background: linear-gradient(135deg, #0a7fc6, #0693E3);
  color: #fff;
  margin-top: 34px;
  padding: 28px 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
}
.area2-content.area2--glass .fcta { background: linear-gradient(135deg, #004d5c, #006B7C); }
.area2-content.area2--key .fcta { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.area2-content .fcta .heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.4;
}
.area2-content .fcta .big .fd {
  background: var(--green);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 4px;
}
.area2-content .fcta .big b {
  font-size: 32px;
  display: block;
  letter-spacing: 1px;
  margin: 4px 0;
  white-space: nowrap;
}
.area2-content .fcta .ico {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  margin-bottom: 8px;
}
.area2-content .fcta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
}
.area2-content .fcta .btn svg { width: 18px !important; height: 18px !important; }
.area2-content .fcta .cards { margin-top: 10px; font-size: 11px; opacity: .95; }
.area2-content .fcta .cards span {
  display: inline-block;
  background: #fff;
  color: #333;
  border-radius: 4px;
  padding: 2px 7px;
  margin: 3px 4px 0 0;
  font-weight: 700;
  font-size: 11px;
}
/* 安心納得サービス内容 */
.area2-content .assure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area2-content .assure div {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.area2-content .assure svg { width: 28px !important; height: 28px !important; color: #fff; }
.area2-content .assure b { display: block; margin-top: 4px; }

/* ── アイコン肥大化対策 ── */
.area2-content svg {
  width: 32px !important;
  height: 32px !important;
  max-width: none !important;
}

/* ── レスポンシブ ── */
@media (max-width: 680px) {
  /* HERO モバイル */
  .area2-content .hero-inner { min-height: 160px; }
  .area2-content .hero-text { padding: 18px 14px 14px; gap: 7px; }
  .area2-content .hero h1 { font-size: 20px; }
  .area2-content .hero-badge { font-size: 10px; padding: 3px 10px; }
  .area2-content .hero-lead { -webkit-line-clamp: 3; font-size: 12px; }
  .area2-content .hero-img-wrap { width: 34%; max-width: 140px; }
  /* 電話CTA モバイル */
  .area2-content .hero-cta { flex-wrap: wrap; gap: 6px; padding: 10px 14px; }
  .area2-content .hero-cta-left { width: 100%; }
  .area2-content .hero-cta-title { font-size: 14px; }
  .area2-content .hero-cta-sub { font-size: 11px; }
  .area2-content .hero-cta-right { width: 100%; justify-content: flex-start; }
  .area2-content .hero-cta-num { font-size: 22px; }
  .area2-content .hero-cta-fdlogo { height: 22px; }
  .area2-content .sup-wrap { flex-direction: column; margin: 16px 12px 0; }
  .area2-content .sup { width: 100%; }
  .area2-content .aio { width: 100%; }
  .area2-content .sym-grid { grid-template-columns: 1fr; }
  .area2-content .reasons { grid-template-columns: repeat(3, 1fr); }
  .area2-content .flow { flex-wrap: wrap; }
  .area2-content .flow .arw { display: none; }
  .area2-content .step { flex: 1 1 45%; }
  .area2-content .fcta { grid-template-columns: 1fr; }
  .area2-content .octa .num b { font-size: 22px; }
  .area2-content .fcta .big b { font-size: 26px; }
  .area2-content .price-wrap { flex-direction: column; }
  .area2-content .price-label {
    writing-mode: horizontal-tb;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* ── お問合せバナー（contact_water_banner.php） ── */
.cta-contact-wrap {
  margin: 24px 0 0;
  font-family: inherit;
}

/* 上部バナー */
.cta-top-banner {
  background: linear-gradient(135deg, #fff9e8 0%, #fef3c7 50%, #fff9e8 100%);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.cta-top-staff {
  flex: 0 0 auto;
  width: 140px;
  align-self: flex-end;
}
.cta-top-staff img {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}
.cta-top-center {
  flex: 1;
  text-align: center;
  padding: 20px 10px 16px;
}
.cta-top-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.cta-top-arrow {
  color: #f47b20;
  font-size: 18px;
  font-weight: 900;
}
.cta-top-sub-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a3a5c;
}
.cta-top-main-title {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #1a3a5c;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-top-main-title:hover { text-decoration: underline; }
.cta-top-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.cta-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.cta-badge-icon {
  font-size: 22px;
  line-height: 1;
}
.cta-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1.4;
}
.cta-top-woman {
  flex: 0 0 auto;
  width: 100px;
  align-self: flex-end;
}
.cta-top-woman img {
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 中部：フォームボタン */
.cta-form-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 16px;
  background: #f5f9ff;
}
.cta-form-btn {
  display: block;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: opacity .2s;
}
.cta-form-btn:hover { opacity: .85; }
.cta-form-btn--orange {
  border: 2px solid #f47b20;
  background: #fff;
}
.cta-form-btn--blue {
  border: 2px solid #0693E3;
  background: #fff;
}
.cta-form-btn__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: middle;
}
.cta-form-btn--orange .cta-form-btn__num { background: #f47b20; color: #fff; }
.cta-form-btn--blue   .cta-form-btn__num { background: #0693E3; color: #fff; }
.cta-form-btn__title {
  font-size: 15px;
  font-weight: 800;
  vertical-align: middle;
}
.cta-form-btn--orange .cta-form-btn__title { color: #f47b20; }
.cta-form-btn--blue   .cta-form-btn__title { color: #0693E3; }
.cta-form-btn__body {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}
.cta-form-btn__icon { font-size: 24px; flex: 0 0 auto; }
.cta-form-btn__desc {
  flex: 1;
  font-size: 13px;
  color: #444;
  font-weight: 600;
}
.cta-form-btn__arrow {
  font-size: 20px;
  font-weight: 900;
  color: #999;
}

/* 下部：クレジットカード */
.cta-payment {
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 0;
  padding: 16px 20px;
  text-align: center;
}
.cta-payment__text {
  font-size: 14px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 12px;
}
.cta-payment__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-payment__cards img {
  height: 40px;
  width: auto;
  display: block;
}
.cta-payment__divider {
  width: 1px;
  height: 50px;
  background: #ccc;
}
.cta-payment__point {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-payment__point img {
  height: 50px;
  width: auto;
  display: block;
}
.cta-payment__point-text {
  font-size: 13px;
  color: #1a3a5c;
  line-height: 1.5;
}
.cta-payment__point-text strong { font-size: 15px; }

/* 安心サービスお約束バー */
.cta-assurance {
  background: #1a3a5c;
  color: #fff;
  border-radius: 0 0 16px 16px;
  padding: 18px 20px;
  text-align: center;
}
.cta-assurance__heading {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-assurance__em {
  color: #f2b300;
}
.cta-assurance__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cta-assurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cta-assurance__icon {
  font-size: 28px;
  line-height: 1;
}
.cta-assurance__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/* レスポンシブ */
@media (max-width: 680px) {
  .cta-top-banner { min-height: 140px; padding: 0 10px; }
  .cta-top-staff { width: 90px; }
  .cta-top-staff img { width: 90px; }
  .cta-top-woman { width: 70px; }
  .cta-top-woman img { width: 70px; }
  .cta-top-main-title { font-size: 20px; }
  .cta-top-sub-title { font-size: 12px; }
  .cta-top-badges { gap: 6px; }
  .cta-badge-item { padding: 6px 8px; }
  .cta-badge-text { font-size: 10px; }
  .cta-form-buttons { grid-template-columns: 1fr; }
  .cta-assurance__items { grid-template-columns: repeat(2, 1fr); }
  .cta-payment__divider { display: none; }
  .cta-payment__logos { flex-direction: column; gap: 10px; }
}

/* === 地域・補足コンテンツ（ACF復活分） === */
.area2-content .area-info{margin:8px 16px 22px;padding:0 2px}
.area2-content .area-info p{margin:0 0 12px;font-size:15px;line-height:1.85}
.area2-content .area-points{margin:8px 0 0;padding-left:1.1em}
.area2-content .area-points li{margin:4px 0;font-size:14px}
.area2-content .sym-trend,.area2-content .price-lead{margin:0 16px 12px;font-size:14px;color:var(--muted)}
.area2-content .sup-comment{margin:10px 0 0;padding:8px 12px;border-left:3px solid var(--accent);background:var(--soft2);font-size:13px;color:var(--ink);border-radius:0 8px 8px 0}
.area2-content .callout{margin:18px 16px;padding:14px 16px;border:1px dashed var(--accent);border-radius:12px;background:var(--soft2);font-size:14px}
/* === 公開・更新日 === */
.area2-content .post-date{font-size:12px;color:var(--muted);margin:6px 16px 0}
