﻿/* =================================================================
   トップページ専用スタイル
   ================================================================= */

/* SWELL デフォルト（游ゴシック）を Noto Sans JP へ上書き */
:root {
  --swl-font_family: 'Noto Sans JP', system-ui, sans-serif;
}

/* ── Campaign Section ───────────────────────────────────────────── */
.pl-campaign {
  background: linear-gradient(135deg, #071b38 0%, #0d2a50 55%, #0e3010 100%);
  padding: clamp(56px, 9vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.pl-campaign::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(240,165,0,.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(24,120,194,.1) 0%, transparent 60%);
  pointer-events: none;
}
.pl-campaign__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 820px) {
  .pl-campaign__inner { grid-template-columns: 1fr; }
}

/* Left – Copy */
.pl-campaign__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(240,165,0,.18);
  border: 1px solid rgba(240,165,0,.35);
  color: #ffd166;
  font-size: .72rem; font-weight: 900;
  padding: 5px 15px; border-radius: 99px;
  letter-spacing: .08em; margin-bottom: 18px;
}
.pl-campaign__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900; color: #fff;
  line-height: 1.25; letter-spacing: -.04em;
  margin-bottom: 14px;
}
.pl-campaign__title em {
  color: #ffd166; font-style: normal;
  display: block;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: -.05em; line-height: 1;
  margin: 4px 0 6px;
}
.pl-campaign__sub {
  font-size: clamp(.84rem, 1.8vw, .96rem);
  color: rgba(255,255,255,.65);
  line-height: 1.8; margin-bottom: 22px;
}
.pl-campaign__points {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.pl-campaign__points li {
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  display: flex; align-items: center; gap: 8px;
}
.pl-campaign__points li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(74,222,128,.2);
  color: #4ade80;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; flex-shrink: 0;
}
.pl-campaign__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #f0a500 0%, #e07000 100%);
  color: #fff; font-weight: 900;
  font-size: clamp(.9rem, 2vw, 1.05rem);
  padding: 17px 32px; border-radius: var(--pl-radius-lg);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(240,165,0,.4), 0 2px 8px rgba(0,0,0,.3);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.pl-campaign__btn:hover { opacity: .92; transform: translateY(-2px); }
.pl-campaign__btn-arrow { transition: transform .2s; }
.pl-campaign__btn:hover .pl-campaign__btn-arrow { transform: translateX(4px); }

/* Notes accordion */
.pl-campaign__notes {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
}
.pl-campaign__notes summary {
  font-size: .74rem; color: rgba(255,255,255,.4);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s;
  user-select: none;
}
.pl-campaign__notes summary::-webkit-details-marker { display: none; }
.pl-campaign__notes summary:hover { color: rgba(255,255,255,.7); }
.pl-campaign__notes summary::after { content: ' ▾'; }
.pl-campaign__notes[open] summary::after { content: ' ▴'; }
.pl-campaign__notes-list {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.pl-campaign__notes-list li {
  font-size: .72rem; color: rgba(255,255,255,.38);
  font-weight: 500; line-height: 1.65;
  display: flex; gap: 6px; align-items: flex-start;
}
.pl-campaign__notes-list li::before {
  content: '※'; flex-shrink: 0;
  color: rgba(255,255,255,.25); font-size: .7rem;
}

/* Right – Gift Card */
.pl-campaign__card-wrap {
  position: relative; flex-shrink: 0;
}
.pl-campaign__card-float {
  position: absolute; top: -18px; right: -12px;
  background: var(--pl-primary);
  color: #fff; font-size: .64rem; font-weight: 900;
  padding: 6px 12px; border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(24,120,194,.5);
  border: 2px solid rgba(255,255,255,.2);
  animation: pl-pulse 2.5s ease infinite;
  z-index: 2;
}
.pl-campaign__giftcard {
  width: clamp(220px, 28vw, 300px);
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #f5a623 0%, #f07010 45%, #d45500 100%);
  border-radius: 16px; padding: 20px 22px;
  position: relative; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 20px 56px rgba(240,110,10,.5),
    0 6px 20px rgba(0,0,0,.45);
  transform: rotate(-2.5deg);
  transition: transform .35s;
}
.pl-campaign__giftcard:hover { transform: rotate(0deg) scale(1.04); }
.pl-campaign__giftcard::before {
  content: ''; position: absolute;
  top: -55%; right: -12%;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.pl-campaign__giftcard::after {
  content: ''; position: absolute;
  bottom: -35%; left: -8%;
  width: 160px; height: 160px;
  background: rgba(0,0,0,.08); border-radius: 50%;
}
.pl-campaign__gc-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.pl-campaign__gc-brand {
  font-size: .62rem; font-weight: 900;
  color: rgba(255,255,255,.65); letter-spacing: .12em; text-transform: uppercase;
}
.pl-campaign__gc-icon { font-size: 1.2rem; }
.pl-campaign__gc-amount {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1;
  text-shadow: 0 3px 10px rgba(0,0,0,.3);
  position: relative; z-index: 1; margin-bottom: 3px;
}
.pl-campaign__gc-label {
  font-size: .64rem; color: rgba(255,255,255,.6);
  font-weight: 700; position: relative; z-index: 1;
}
.pl-campaign__gc-dots {
  position: absolute; bottom: 16px; right: 18px;
  display: flex; gap: 5px; z-index: 1;
}
.pl-campaign__gc-dots span {
  width: 7px; height: 7px;
  background: rgba(255,255,255,.28); border-radius: 50%;
}

@media (max-width: 820px) {
  .pl-campaign__card-wrap { margin: 0 auto 8px; }
  .pl-campaign__inner { text-align: center; }
  .pl-campaign__points { align-items: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  .pl-campaign__giftcard { width: min(260px, 88vw); }
}

/* ── Campaign Nudge（診断フォーム直下）───────────────────────── */
.pl-campaign-nudge {
  background: var(--pl-primary-pale);
  border-top: 3px solid rgba(200, 168, 75, .5);
  padding: 18px 0;
}
.pl-campaign-nudge__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pl-campaign-nudge__gift {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pl-campaign-nudge__body {
  flex: 1;
  min-width: 200px;
}
.pl-campaign-nudge__main {
  font-size: .94rem;
  color: var(--pl-gray-900);
  line-height: 1.65;
}
.pl-campaign-nudge__main strong {
  color: var(--pl-primary-dark);
}
.pl-campaign-nudge__sub {
  font-size: .84rem;
  color: var(--pl-gray-600);
  margin-top: 4px;
  line-height: 1.7;
}
.pl-campaign-nudge__note {
  display: block;
  font-size: .74rem;
  color: var(--pl-gray-400);
  margin-top: 4px;
  line-height: 1.6;
}
.pl-campaign-nudge__link {
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pl-primary);
  border-bottom: 1px solid var(--pl-primary-mid);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity .2s;
}
.pl-campaign-nudge__link:hover { opacity: .75; }

/* ── Campaign Bridge（お客様の声セクション下）──────────────────── */
.pl-campaign-bridge {
  background: linear-gradient(135deg, var(--pl-primary-pale) 0%, #fff 100%);
  border-top: 1px solid var(--pl-gray-100);
  border-bottom: 1px solid var(--pl-gray-100);
  padding: clamp(40px, 6vw, 64px) 0;
}
.pl-campaign-bridge__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 700px) {
  .pl-campaign-bridge__inner {
    grid-template-columns: 1fr;
  }
  .pl-campaign-bridge__card-wrap {
    display: flex;
    justify-content: center;
  }
}

/* ミニギフトカード */
.pl-campaign-bridge__giftcard {
  width: clamp(160px, 20vw, 210px);
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #f5a623 0%, #e06010 50%, #d04800 100%);
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15),
    0 12px 32px rgba(224, 96, 16, .38),
    0 4px 12px rgba(0,0,0,.3);
  transform: rotate(-2deg);
  flex-shrink: 0;
}
.pl-campaign-bridge__giftcard::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.pl-campaign-bridge__gc-label {
  font-size: .55rem;
  font-weight: 900;
  color: rgba(255,255,255,.65);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.pl-campaign-bridge__gc-amount {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  position: relative; z-index: 1;
  margin-bottom: 3px;
}
.pl-campaign-bridge__gc-sub {
  font-size: .55rem;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  position: relative; z-index: 1;
}

/* テキストエリア */
.pl-campaign-bridge__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200, 168, 75, .12);
  border: 1px solid rgba(200, 168, 75, .4);
  color: #a07820;
  font-size: .7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.pl-campaign-bridge__title {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 900;
  color: var(--pl-gray-900);
  line-height: 1.4;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.pl-campaign-bridge__title em {
  font-style: normal;
  color: #c05000;
}
.pl-campaign-bridge__desc {
  font-size: .9rem;
  color: var(--pl-gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}
.pl-campaign-bridge__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pl-campaign-bridge__detail-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--pl-primary);
  border-bottom: 1px solid var(--pl-primary-mid);
  padding-bottom: 1px;
  transition: opacity .2s;
}
.pl-campaign-bridge__detail-link:hover { opacity: .75; }
.pl-campaign-bridge__note {
  font-size: .72rem;
  color: var(--pl-gray-400);
  line-height: 1.6;
}

/* ── Campaign CTA Badge（最終CTA内）─────────────────────────────── */
.pl-campaign-cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(240, 165, 0, .15);
  border: 1px solid rgba(240, 165, 0, .4);
  border-radius: var(--pl-radius);
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  box-sizing: border-box;
  width: 100%;
}
.pl-campaign-cta-badge strong {
  color: #ffd166;
}
.pl-campaign-cta-badge__icon {
  flex-shrink: 0;
}
.pl-campaign-cta-badge__note {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  width: 100%;
  text-align: center;
}

/* ── Hero ──────────────────────────────────────────────────── */

@keyframes pl-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}

/* ─ 背景：白 ＋ 右側にごく薄いブルー面で自然なコントラスト ─ */
.pl-hero {
  position: relative;
  min-height: 700px;
  padding: clamp(72px, 9vw, 120px) 0;
  background-color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--pl-gray-100);
}
/* 固定ヘッダー分のオフセットは 青い案内バー（.pl-promo-bar、全ページ共通でヘッダー直後に
   配置）側の margin-top が担うため、.pl-hero 自身には付与しない（二重余白防止）。
   旧: 「上部バー（ヘッダー直下の告知バー）」がPC/SPとも常時非表示だった頃は
   .pl-hero 側で固定ヘッダー分の margin-top を肩代わりしていたが、
   案内バーの全ページ共通化に伴い不要になった。 */
@media (min-width: 901px) {
  .pl-hero {
    background-image: var(--pl-hero-img);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 700px;
    padding-bottom: 0;
  }
  .pl-hero::before    { display: none; }
  .pl-hero__diag-card { display: none; }
  .pl-hero__cta-link  { margin-bottom: 32px; }
}
/* 右側にほんのり色が乗る薄い面（左側の白をより清潔に見せる） */
.pl-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: linear-gradient(to right, transparent, #eef5fb 40%, #e6f0f8 100%);
  pointer-events: none;
}
.pl-hero__overlay { display: none; }

/* ── 2カラムグリッド ──────────────────────────────────────── */
.pl-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) {
  .pl-hero__inner {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
  .pl-hero__diag-card { display: none; }
}

/* ── 左カラム ──────────────────────────────────────────────── */
.pl-hero__content { max-width: 640px; }

/* ── Hero かんたん診断カード ──────────────────────────────── */
.pl-hero__diag-card {
  background: #fff;
  border-radius: var(--pl-radius-lg);
  box-shadow: var(--pl-shadow-xl), 0 0 0 1px rgba(24,120,194,.06);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--pl-gray-100);
}

.pl-hero__diag-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pl-gray-100);
}
.pl-hero__diag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--pl-primary-light);
  color: var(--pl-primary-dark);
  font-size: .7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.pl-hero__diag-sub {
  font-size: .85rem;
  color: var(--pl-gray-600);
  line-height: 1.75;
}

.pl-hero__diag-field { margin-bottom: 14px; }
.pl-hero__diag-label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--pl-gray-800);
  margin-bottom: 6px;
}
.pl-hero__diag-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-sm);
  font-size: .95rem;
  font-family: var(--pl-font);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.pl-hero__diag-input:focus {
  outline: none;
  border-color: var(--pl-primary);
  box-shadow: 0 0 0 3px rgba(24,120,194,.12);
}
.pl-hero__diag-input-row { display: flex; align-items: center; gap: 8px; }
.pl-hero__diag-input--num {
  flex: 1;
  -moz-appearance: textfield;
}
.pl-hero__diag-input--num::-webkit-outer-spin-button,
.pl-hero__diag-input--num::-webkit-inner-spin-button { -webkit-appearance: none; }
.pl-hero__diag-unit {
  font-size: .8rem;
  color: var(--pl-gray-600);
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-hero__diag-geo {
  font-size: .72rem;
  margin-top: 4px;
  min-height: 16px;
  color: var(--pl-gray-400);
}
.pl-hero__diag-geo--ok  { color: var(--pl-success); }
.pl-hero__diag-geo--err { color: var(--pl-danger); }

.pl-hero__diag-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--pl-radius-sm);
  padding: 7px 11px;
  font-size: .76rem;
  color: var(--pl-danger);
  margin-bottom: 10px;
}
.pl-hero__diag-error:empty { display: none; }

.pl-hero__diag-submit {
  display: block;
  width: 100%;
  padding: 16px;
  min-height: 56px;
  background: linear-gradient(135deg, var(--pl-primary) 0%, var(--pl-primary-dark) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--pl-font);
  border: none;
  border-radius: var(--pl-radius);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(24,120,194,.35);
  transition: opacity .2s, transform .2s;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.pl-hero__diag-submit:hover { opacity: .9; transform: translateY(-1px); }
.pl-hero__diag-submit:active { transform: translateY(0); opacity: 1; }

.pl-hero__diag-privacy {
  font-size: .68rem;
  color: var(--pl-gray-400);
  text-align: center;
  line-height: 1.5;
}

/* ── 結果エリア ── */
.pl-hero__diag-rank-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.pl-hero__diag-rank-badge {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--rank-color, #dc2626);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-hero__diag-rank-letter {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.pl-hero__diag-rank-sub {
  font-size: .46rem;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: .75;
}
.pl-hero__diag-rank-area {
  font-size: .66rem;
  color: var(--pl-gray-400);
  margin-bottom: 3px;
}
.pl-hero__diag-rank-title {
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.3;
}

.pl-hero__diag-saving {
  background: var(--pl-primary-pale);
  border-radius: var(--pl-radius-sm);
  padding: 11px 13px;
  font-size: .82rem;
  color: var(--pl-gray-800);
  line-height: 1.7;
  margin-bottom: 14px;
}
.pl-hero__diag-saving strong {
  font-size: 1.15em;
  color: var(--pl-primary-dark);
}

.pl-hero__diag-cta-main {
  display: block;
  padding: 15px;
  min-height: 52px;
  background: linear-gradient(135deg, var(--pl-primary) 0%, var(--pl-primary-dark) 100%);
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
  border-radius: var(--pl-radius);
  box-shadow: 0 4px 16px rgba(24,120,194,.35);
  transition: opacity .2s, transform .2s;
  margin-bottom: 8px;
}
.pl-hero__diag-cta-main:hover { opacity: .9; transform: translateY(-1px); }

.pl-hero__diag-retry {
  display: block;
  width: 100%;
  padding: 9px;
  background: none;
  border: 1.5px solid var(--pl-gray-200);
  border-radius: var(--pl-radius);
  color: var(--pl-gray-600);
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--pl-font);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  margin-bottom: 10px;
}
.pl-hero__diag-retry:hover { border-color: var(--pl-primary-mid); color: var(--pl-primary); }

.pl-hero__diag-disclaimer {
  font-size: .63rem;
  color: var(--pl-gray-400);
  text-align: center;
  line-height: 1.5;
}

/* サービスラベル：テキストアンダーライン型（pill より洗練） */
.pl-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--pl-primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--pl-gold);
}
.pl-hero__label-dot {
  width: 6px; height: 6px;
  background: var(--pl-primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pl-pulse 2s infinite;
}

/* H1：大きく、深い紺 */
.pl-hero__title {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.05em;
  color: var(--pl-gray-900);
  margin-bottom: 20px;
}
.pl-hero__title em {
  font-style: normal;
  color: var(--pl-primary);
  display: block;
}

/* サブコピー */
.pl-hero__sub {
  font-size: clamp(.875rem, 1.6vw, .96rem);
  color: var(--pl-gray-600);
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 24px;
}
.pl-hero__sub strong {
  color: var(--pl-gray-900);
  font-weight: 900;
}

/* 実績数値（H1直下） */
.pl-hero__record {
  font-size: .9rem;
  font-weight: 700;
  color: var(--pl-primary);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.pl-hero__record strong {
  font-size: 1.04rem;
}

/* CTA直上タグライン */
.pl-hero__diag-tagline {
  font-size: .8rem;
  color: var(--pl-gray-500);
  font-style: italic;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

/* CTAリンク */
.pl-hero__cta-link {
  display: inline-block;
  padding: 17px 36px;
  background: var(--pl-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0,82,212,.45), 0 2px 6px rgba(0,82,212,.22);
  letter-spacing: .01em;
  transition: opacity .2s;
}
.pl-hero__cta-link:hover { opacity: .88; }

/* CTAグループ */
.pl-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* メインCTA：信頼感のある深いブルー */
.pl-hero__cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pl-brand-dark) 0%, var(--pl-primary) 100%);
  color: var(--pl-white);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 900;
  padding: 18px 36px;
  border-radius: var(--pl-radius-lg);
  text-decoration: none;
  letter-spacing: -.01em;
  box-shadow: 0 6px 24px rgba(24,120,194,.28);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.pl-hero__cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(24,120,194,.40);
}
.pl-hero__cta-arrow { transition: transform .2s; }
.pl-hero__cta-main:hover .pl-hero__cta-arrow { transform: translateX(4px); }

/* 電話CTA */
.pl-hero__cta-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--pl-gray-900);
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.25;
  transition: color .2s;
}
.pl-hero__cta-tel:hover { color: var(--pl-primary); }
.pl-hero__cta-tel > span { display: flex; flex-direction: column; }
.pl-hero__cta-tel small {
  font-size: .62rem;
  font-weight: 500;
  color: var(--pl-gray-600);
}
.pl-hero__cta-tel-icon { font-size: 1rem; flex-shrink: 0; }

/* 実績ストリップ */
.pl-hero__achievements {
  display: flex;
  background: var(--pl-gray-50);
  border: 1px solid var(--pl-gray-100);
  border-radius: var(--pl-radius);
  overflow: hidden;
  max-width: 480px;
}
.pl-hero__achievement {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid var(--pl-gray-100);
}
.pl-hero__achievement:last-child { border-right: none; }
.pl-hero__achievement-val {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  color: var(--pl-primary);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.pl-hero__achievement-val span { font-size: .7em; margin-left: 1px; }
.pl-hero__achievement-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--pl-gray-600);
  letter-spacing: .03em;
}

/* ── 右カラム ─────────────────────────────────────────────── */
.pl-hero__visual { position: relative; }

/* 右パネル：白い右面の上に濃紺カードを浮かせてコントラスト */
.pl-hero__visual .pl-hero__panel {
  background: linear-gradient(160deg, #0a1f3d 0%, #0e2a50 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 4px 24px rgba(14,42,80,.18),
    0 24px 64px rgba(14,42,80,.22);
}

/* macOS 3 dots */
.pl-hero__panel-dot--red    { background: #f87171; box-shadow: 0 0 5px #f87171;           animation: none; }
.pl-hero__panel-dot--yellow { background: var(--pl-gold); box-shadow: 0 0 5px var(--pl-gold); animation: none; }
.pl-hero__panel-dot--green  { background: #4ade80; box-shadow: 0 0 6px #4ade80; }

/* ── SP（〜768px）Hero — CVR最優先レイアウト ────────────────── */
@media (max-width: 768px) {

  /* ─ 背景 ─ */
  .pl-hero {
    min-height: 0;
    padding: 24px 0 28px;
    background: linear-gradient(158deg, #eef5ff 0%, #ffffff 50%, #f0f6ff 100%);
  }
  .pl-hero::before { display: none; }

  /* ─ レイアウト：全要素を縦1列 ─ */
  .pl-hero__inner  { grid-template-columns: 1fr; gap: 14px; }
  .pl-hero__visual { display: none; }

  /* ─ ラベル：小さく控えめに ─ */
  .pl-hero__label {
    font-size: .65rem;
    margin-bottom: 4px;
    gap: 5px;
  }
  .pl-hero__label-dot { width: 5px; height: 5px; }

  /* ─ H1：上下に十分な余白 ─ */
  .pl-hero__title {
    font-size: clamp(1.75rem, 6.8vw, 1.95rem);
    line-height: 1.32;
    margin-top: 10px;
    margin-bottom: 16px;
  }

  /* ─ サブコピー：2行で完結 ─ */
  .pl-hero__sub {
    font-size: .84rem;
    line-height: 1.68;
    color: #4a4a4a;
    margin-bottom: 0;
  }

  /* ─ 診断カード（CTA）：content直下に表示 ─ */
  .pl-hero__diag-card {
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,82,212,.13), 0 1px 4px rgba(0,0,0,.06);
    border: none;
    overflow: hidden;
    padding: 0;
  }

  /* 淡ブルーヘッダー：CTAと色の競合を排除 */
  .pl-hero__diag-head {
    background: #ebf3ff;
    padding: 12px 16px 10px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0,82,212,.1);
  }
  .pl-hero__diag-head .pl-hero__diag-badge {
    background: rgba(0,82,212,.07);
    color: #0052D4;
    border: 1px solid rgba(0,82,212,.18);
  }
  .pl-hero__diag-head .pl-hero__diag-sub {
    color: #374151;
    font-size: .76rem;
    line-height: 1.55;
    margin-top: 5px;
  }

  /* 診断プレビューメーター */
  .pl-hero__diag-visual {
    display: block;
    background: #ebf3ff;
    padding: 10px 16px 9px;
    border-bottom: 1px solid rgba(0,82,212,.08);
  }
  .pl-hero__diag-meter     { display: flex; flex-direction: column; gap: 6px; }
  .pl-hero__diag-meter-row { display: flex; align-items: center; gap: 8px; }
  .pl-hero__diag-meter-lbl {
    font-size: .64rem;
    font-weight: 700;
    color: #0052D4;
    width: 68px;
    flex-shrink: 0;
  }
  .pl-hero__diag-meter-track {
    flex: 1;
    height: 7px;
    background: #c8dcf8;
    border-radius: 99px;
    overflow: hidden;
  }
  .pl-hero__diag-meter-fill         { height: 100%; border-radius: 99px; }
  .pl-hero__diag-meter-fill--now    { width: 88%; background: rgba(0,82,212,.28); }
  .pl-hero__diag-meter-fill--avg    { width: 65%; background: rgba(0,82,212,.48); }
  .pl-hero__diag-meter-fill--low    { width: 42%; background: #0052D4; }
  .pl-hero__diag-meter-tag          { font-size: .6rem; font-weight: 700; color: #0052D4; white-space: nowrap; }

  /* フォーム・結果エリア */
  .pl-hero__diag-card > #hero-diag-form   { padding: 14px 16px 16px; background: #fff; }
  .pl-hero__diag-card > #hero-diag-result { padding: 14px 16px 16px; background: #fff; }

  /* ─ 安心訴求3点（CTAの下） ─ */
  .pl-hero__sp-trust {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .pl-hero__sp-trust li {
    font-size: .73rem;
    font-weight: 700;
    color: #0052D4;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
  }
  .pl-hero__sp-trust li::before { content: '✓'; position: absolute; left: 0; }

  /* ─ CTA直上タグライン（SP差分） ─ */
  .pl-hero__diag-tagline {
    font-size: .7rem;
    text-align: center;
    margin-bottom: 8px;
  }

  /* ─ 実績数値（SP差分） ─ */
  .pl-hero__record       { font-size: .78rem; }
  .pl-hero__record strong { font-size: .92rem; }

  /* ─ CTAリンク（SP差分：全幅・中央揃え） ─ */
  .pl-hero__cta-link {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    margin-top: 14px;
  }

  /* ─ ヒーロー直下 口コミカード（ACF実データ） ─ */
  .pl-hero-voice { margin-top: 10px; }
  .pl-hero-voice__item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    background: #f0f6ff;
    border-left: 3px solid #0052D4;
    border-radius: 8px;
  }
  .pl-hero-voice__item[hidden] { display: none !important; }
  .pl-hero-voice__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dbeafe;
    border: 2px solid #bfdbfe;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #0052D4;
    line-height: 1;
  }
  .pl-hero-voice__body { flex: 1; min-width: 0; }
  .pl-hero-voice__save {
    font-size: .64rem;
    font-weight: 700;
    color: #0052D4;
    margin-bottom: 3px;
  }
  .pl-hero-voice__comment {
    font-size: .7rem;
    line-height: 1.55;
    color: #374151;
    margin-bottom: 3px;
    overflow-wrap: break-word;
  }
  .pl-hero-voice__meta {
    font-size: .62rem;
    color: #9ca3af;
  }
}

/* ─ PC / タブレット：SP専用要素を非表示 ─ */
@media (min-width: 769px) {
  .pl-hero__sp-trust       { display: none; }
  .pl-hero__diag-visual    { display: none; }
  .pl-hero-voice           { display: none; }
}


/* ── Result Cards ──────────────────────────────────────────── */
.pl-result-card {
  background: var(--pl-white);
  padding: var(--pl-section) 0;
}
.pl-result-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.pl-result-card__item {
  border: 2px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-lg);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 20px;
}
.pl-result-card__item--highlight { border-color: var(--pl-primary); background: var(--pl-primary-light); }
.pl-result-card__item--best { border-color: var(--pl-accent); background: var(--pl-primary-light); }
.pl-result-card__icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--pl-gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem;
}
.pl-result-card__body { flex: 1; }
.pl-result-card__label {
  font-size: var(--pl-text-xs); font-weight: 700; color: var(--pl-gray-600);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px;
}
.pl-result-card__price { font-size: var(--pl-text-3xl); font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.pl-result-card__price span { font-size: var(--pl-text-sm); font-weight: 700; margin-left: 2px; }
.pl-result-card__diff { font-size: var(--pl-text-sm); font-weight: 700; margin-top: 4px; }
.pl-result-card__diff--save { color: var(--pl-success); }
.pl-result-card__diff--over { color: var(--pl-danger); }
.pl-result-card__savings {
  background: linear-gradient(135deg, var(--pl-brand-dark), var(--pl-brand-mid));
  border: 1px solid rgba(24,120,194,.2);
  border-radius: var(--pl-radius-lg); padding: 28px;
  color: var(--pl-white); text-align: center; margin-top: 4px;
}
.pl-result-card__savings-label { font-size: var(--pl-text-sm); font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.pl-result-card__savings-amount {
  font-size: clamp(2.5rem,8vw,4rem); font-weight: 900; color: var(--pl-gold);
  letter-spacing: -.03em; line-height: 1;
}
.pl-result-card__savings-monthly { font-size: var(--pl-text-base); color: rgba(255,255,255,.7); font-weight: 700; margin-top: 8px; }
.pl-result-card__disclaimer { font-size: var(--pl-text-xs); color: rgba(255,255,255,.35); margin-top: 8px; font-weight: 500; }
@media (min-width: 768px) {
  .pl-result-card__grid { grid-template-columns: repeat(2, 1fr); }
  .pl-result-card__savings { grid-column: 1 / -1; }
  .pl-result-card__grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── How It Works（30秒診断でわかること）────────────────── */
.pl-result-card--how { background: #f0f7ff; }
.pl-how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pl-how-step {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  padding: clamp(24px,4vw,32px);
  box-shadow: var(--pl-shadow-sm);
  border: 1px solid var(--pl-gray-200);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pl-how-step__num {
  font-size: 2.5rem; font-weight: 900; color: var(--pl-gray-200);
  line-height: 1; letter-spacing: -.03em; margin-bottom: 12px;
}
.pl-how-step__icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--pl-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 14px;
}
.pl-how-step__title {
  font-size: var(--pl-text-lg); font-weight: 900;
  color: var(--pl-gray-900); margin-bottom: 8px; line-height: 1.35;
}
.pl-how-step__desc {
  font-size: var(--pl-text-sm); color: var(--pl-gray-600);
  line-height: 1.75; font-weight: 500; margin: 0;
}
.pl-how-step__arrow {
  display: none;
  color: var(--pl-primary); font-size: 1.5rem; font-weight: 700; text-align: center;
}
.pl-how-reassurance {
  margin-top: 12px; font-size: .78rem; color: var(--pl-gray-600);
}
@media (min-width: 768px) {
  .pl-how-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 8px; align-items: center;
  }
  .pl-how-step__arrow { display: block; }
}

/* ── Strengths ─────────────────────────────────────────────── */
.pl-strengths {
  background: var(--pl-primary-light); color: var(--pl-gray-900); padding: var(--pl-section) 0;
}
.pl-strengths .pl-section-title { color: var(--pl-gray-900); }
.pl-strengths .pl-section-desc { color: var(--pl-gray-600); }
.pl-strengths__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(14px,2.5vw,20px);
}
.pl-strengths__item {
  background: var(--pl-white); border: 1px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-lg); padding: clamp(24px,4vw,36px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--pl-shadow-sm); transition: box-shadow .2s, transform .2s;
}
.pl-strengths__item:hover { box-shadow: var(--pl-shadow); transform: translateY(-3px); }
.pl-strengths__num {
  font-size: 2.5rem; font-weight: 900; color: var(--pl-gray-200); line-height: 1; letter-spacing: -.03em;
}
.pl-strengths__icon {
  width: 60px; height: 60px; border-radius: var(--pl-radius); overflow: hidden;
  background: var(--pl-primary-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.pl-strengths__icon img { width: 100%; height: 100%; object-fit: cover; }
.pl-strengths__title { font-size: var(--pl-text-xl); font-weight: 900; line-height: 1.35; color: var(--pl-gray-900); }
.pl-strengths__desc { font-size: var(--pl-text-sm); color: var(--pl-gray-600); font-weight: 500; line-height: 1.75; }
@media (min-width: 640px) { .pl-strengths__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pl-strengths__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Subsidy ───────────────────────────────────────────────── */
.pl-subsidy { padding: var(--pl-section) 0; background: var(--pl-gray-50); }
.pl-subsidy__grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px,3vw,24px); }
.pl-subsidy__card { background: var(--pl-white); border-radius: var(--pl-radius-lg); overflow: hidden; box-shadow: var(--pl-shadow); }
.pl-subsidy__card img { width: 100%; height: auto; }
.pl-subsidy__body { padding: 24px; }
.pl-subsidy__badge {
  display: inline-block; background: var(--pl-primary-light); color: var(--pl-primary);
  font-size: var(--pl-text-xs); font-weight: 700; padding: 4px 10px; border-radius: 99px; margin-bottom: 10px;
}
.pl-subsidy__title { font-size: var(--pl-text-xl); font-weight: 900; margin-bottom: 8px; line-height: 1.35; }
.pl-subsidy__desc { font-size: var(--pl-text-sm); color: var(--pl-gray-600); font-weight: 500; line-height: 1.75; }
.pl-subsidy__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: var(--pl-text-sm); font-weight: 700; letter-spacing: .04em;
  color: var(--pl-white);
  background: var(--pl-primary);
  border: 2px solid var(--pl-primary);
  border-radius: var(--pl-radius);
  padding: 10px 22px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(24,120,194,.25);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.pl-subsidy__link::after { content: " →"; font-size: .95em; }
.pl-subsidy__link:hover {
  background: var(--pl-white);
  color: var(--pl-primary);
  box-shadow: 0 4px 14px rgba(24,120,194,.3);
  transform: translateY(-1px);
}
@media (min-width: 768px) { .pl-subsidy__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Flow ──────────────────────────────────────────────────── */
.pl-flow { padding: var(--pl-section) 0; background: var(--pl-white); }
.pl-flow__steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 640px; margin: 0 auto;
}
.pl-flow__step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 36px; position: relative;
}
.pl-flow__step:last-child { padding-bottom: 0; }
.pl-flow__step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.pl-flow__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pl-black); color: var(--pl-white); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; z-index: 1; position: relative;
}
.pl-flow__line { width: 2px; flex: 1; background: var(--pl-gray-200); margin: 8px 0; min-height: 40px; }
.pl-flow__step:last-child .pl-flow__line { display: none; }
/* .pl-flow__icon is defined in the CSS-only placeholders block above */
.pl-flow__body { padding-top: 8px; flex: 1; }
.pl-flow__title { font-size: var(--pl-text-lg); font-weight: 900; margin-bottom: 6px; line-height: 1.35; }
.pl-flow__desc { font-size: var(--pl-text-sm); color: var(--pl-gray-600); font-weight: 500; line-height: 1.7; }
.pl-flow__cta { margin-top: clamp(32px,5vw,48px); text-align: center; }

/* ── Voices ────────────────────────────────────────────────── */
.pl-voices {
  background: linear-gradient(180deg, var(--pl-primary-pale) 0%, var(--pl-white) 100%);
  padding: var(--pl-section) 0;
}

/* Grid: SP=1列 / タブレット=2列 / PC=3列 */
.pl-voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 24px);
}
@media (min-width: 640px)  { .pl-voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pl-voices__grid { grid-template-columns: repeat(3, 1fr); } }

/* スクロールリビール（common.js の pl-reveal/is-visible と連携） */
@keyframes voiceCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.pl-voices__card {
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--pl-shadow);
  border: 1px solid rgba(24,120,194,.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* ホバー用 transition のみ（delay なし） */
  transition: box-shadow .2s ease, transform .2s ease;
  /* 初期状態：非表示 */
  opacity: 0;
  transform: translateY(20px);
}
/* is-visible 付与後：stagger animation でフェードイン */
.pl-voices__grid.is-visible .pl-voices__card {
  animation: voiceCardIn .5s ease both;
  animation-delay: var(--card-delay, 0ms);
}
/* ホバーリフト（CSS transition が animation より優先される） */
.pl-voices__card:hover {
  box-shadow: var(--pl-shadow-lg);
  transform: translateY(-4px);
}
/* アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .pl-voices__card { opacity: 1; transform: none; animation: none; transition: box-shadow .2s ease; }
  .pl-voices__card:hover { transform: none; }
}

/* カードヘッダー（アバター＋プロフィール） */
.pl-voices__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pl-voices__avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pl-primary) 0%, var(--pl-primary-dark) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(24,120,194,.3);
}
.pl-voices__profile   { flex: 1; min-width: 0; }
.pl-voices__name      { font-weight: 700; font-size: .9rem; color: var(--pl-gray-900); line-height: 1.2; margin-bottom: 4px; }
.pl-voices__stars     { color: var(--pl-gold); font-size: .9rem; letter-spacing: 3px; line-height: 1; }

/* タグ（都道府県・市区町村・家族構成） */
.pl-voices__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pl-voices__tag {
  display: inline-block;
  background: var(--pl-primary-pale);
  color: var(--pl-primary-dark);
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--pl-primary-light);
  letter-spacing: .04em;
  white-space: nowrap;
}

/* 引用コメント */
.pl-voices__quote {
  margin: 0;
  font-size: var(--pl-text-sm);
  font-weight: 500;
  line-height: 1.85;
  color: var(--pl-gray-800);
  flex: 1;
}

/* 料金比較（切替前→切替後） */
.pl-voices__compare {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pl-gray-50);
  border-radius: var(--pl-radius-sm);
  padding: 12px 14px;
  border: 1px solid var(--pl-gray-100);
}
.pl-voices__compare-item         { flex: 1; text-align: center; }
.pl-voices__compare-label        { display: block; font-size: .65rem; font-weight: 700; color: var(--pl-gray-600); margin-bottom: 3px; letter-spacing: .06em; }
.pl-voices__compare-price        { font-size: 1.05rem; font-weight: 700; color: var(--pl-gray-800); line-height: 1.1; }
.pl-voices__compare-price small  { font-size: .68rem; font-weight: 500; margin-left: 1px; }
.pl-voices__compare-item--after .pl-voices__compare-price { color: var(--pl-primary); }
.pl-voices__compare-usage        { display: block; font-size: .62rem; color: var(--pl-gray-400); margin-top: 2px; }
.pl-voices__compare-arrow        { color: var(--pl-gray-400); font-size: .9rem; flex-shrink: 0; }

/* 節約バッジ */
.pl-voices__saving-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  background: linear-gradient(135deg, #0d2a50 0%, var(--pl-primary-dark) 100%);
  color: #fff;
  border-radius: var(--pl-radius-sm);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}
.pl-voices__saving-badge strong {
  color: var(--pl-gold);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 1px;
}
.pl-voices__saving-year {
  width: 100%;
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* ── 料金見直し事例カルーセル（市区町村と同一クラス・デザイン） */

@keyframes neonGlow {
  0%   { text-shadow: 0 0 4px rgba(255,255,255,.4), 0 0 10px rgba(255,215,0,.4); }
  50%  { text-shadow: 0 0 6px rgba(255,255,255,.8), 0 0 16px rgba(255,215,0,.8); }
  100% { text-shadow: 0 0 4px rgba(255,255,255,.4), 0 0 10px rgba(255,215,0,.4); }
}
.pl-top-cases .glow-text { animation: neonGlow 2.2s ease-in-out infinite; }

/* カルーセルコンテナ
   ※ 都道府県・市区町村ページ（[prolabo_voice]）と同じ見た目にするため、
   ブラウザ標準の横スクロールバーを非表示にしない（PCでもスクロール操作の
   手がかりが見えるようにする） */
.pl-top-cases .prolabo-voices-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* カード幅: SP=1.1枚 / タブレット=2枚 / PC=3枚 */
.pl-top-cases .prolabo-voice-card {
  flex: 0 0 85%;
  max-width: none;
  min-width: 260px;
  scroll-snap-align: start;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
@media (min-width: 640px)  { .pl-top-cases .prolabo-voice-card { flex: 0 0 calc(50% - 8px); } }
@media (min-width: 1024px) { .pl-top-cases .prolabo-voice-card { flex: 0 0 calc(33.333% - 11px); } }

/* カード内スタイル（市区町村の inline CSS と同内容） */
.pl-top-cases .prolabo-voice-header { font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.pl-top-cases .circle-icon {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #00b7c2 0%, #0090a0 100%);
  margin-right: 6px; vertical-align: middle;
}
.pl-top-cases .prolabo-voice-compare ul { list-style: none; padding-left: 0; margin: 0 0 14px 0; }
.pl-top-cases .prolabo-voice-compare li { margin: 6px 0; font-size: 15px; }
.pl-top-cases .after-price { font-weight: 700; }
.pl-top-cases .prolabo-voice-monthsave { font-size: 20px; font-weight: 700; color: #d40000; margin-bottom: 6px; }
.pl-top-cases .prolabo-voice-yearsave  { font-size: 20px; font-weight: 700; color: #C9A400; margin-bottom: 12px; }
.pl-top-cases .prolabo-voice-comment {
  font-size: 14px; line-height: 1.5; background: #fafafa;
  border-radius: 8px; padding: 12px; border-left: 4px solid #00b7c2;
}
@media (prefers-reduced-motion: reduce) {
  .pl-top-cases .glow-text { animation: none; }
}

/* 注意書き */
.pl-cases__note {
  text-align: right;
  font-size: .72rem;
  color: var(--pl-gray-400);
  margin-top: 10px;
}

/* ── Area ──────────────────────────────────────────────────── */
.pl-area { padding: var(--pl-section) 0 clamp(40px, 6vw, 72px); background: var(--pl-primary-pale); }
.pl-area__inner {
  display: block;
  margin-top: clamp(36px, 5vw, 52px);
}

/* CSS Japan Map */
.pl-area-map {
  display: grid;
  grid-template-areas:
    ". hokkaido"
    "tohoku ."
    "kanto chubu"
    ". kinki"
    "chugoku shikoku"
    "kyushu ."
    "okinawa okinawa";
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(46px, auto);
  gap: 5px;
  padding: 18px;
  background: var(--pl-white);
  border-radius: var(--pl-radius-lg);
  border: 1.5px solid var(--pl-gray-200);
  box-shadow: var(--pl-shadow-sm);
  position: relative;
}
.pl-area-map__region {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  border-radius: var(--pl-radius-sm); border: 1.5px solid var(--pl-gray-200);
  background: var(--pl-gray-50);
  font-size: .75rem; font-weight: 700; color: var(--pl-gray-700);
  padding: 8px 6px; text-align: center; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  min-height: 46px; line-height: 1.3; user-select: none; position: relative; z-index: 1;
}
.pl-area-map__region:hover,
.pl-area-map__region.is-active {
  background: var(--pl-primary-light); border-color: var(--pl-primary); color: var(--pl-primary);
  box-shadow: 0 0 0 3px rgba(24,120,194,.14), 0 4px 16px rgba(24,120,194,.22);
  transform: scale(1.05); z-index: 2;
}
@keyframes pl-region-glow {
  0%,100% { box-shadow: 0 0 0 3px rgba(24,120,194,.14), 0 4px 16px rgba(24,120,194,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(24,120,194,.2), 0 6px 28px rgba(24,120,194,.32); }
}
.pl-area-map__region.is-active { animation: pl-region-glow 2.2s ease infinite; }
.pl-area-map__region--hokkaido { grid-area: hokkaido; }
.pl-area-map__region--tohoku   { grid-area: tohoku; }
.pl-area-map__region--kanto    { grid-area: kanto; }
.pl-area-map__region--chubu    { grid-area: chubu; }
.pl-area-map__region--kinki    { grid-area: kinki; }
.pl-area-map__region--chugoku  { grid-area: chugoku; }
.pl-area-map__region--shikoku  { grid-area: shikoku; }
.pl-area-map__region--kyushu   { grid-area: kyushu; }
.pl-area-map__region--okinawa  {
  grid-area: okinawa;
  background: var(--pl-gray-100); border-color: var(--pl-gray-200);
  color: var(--pl-gray-400); cursor: not-allowed; opacity: .65; font-size: .6875rem;
}
.pl-area-map__region--okinawa:hover { background: var(--pl-gray-100); border-color: var(--pl-gray-200); color: var(--pl-gray-400); box-shadow: none; transform: none; animation: none; }
.pl-area-map__region small { font-size: .6rem; font-weight: 500; color: var(--pl-gray-400); display: block; margin-top: 2px; }
.pl-area-note { font-size: var(--pl-text-xs); color: var(--pl-gray-500); font-weight: 500; margin-top: 10px; line-height: 1.65; }

/* Area Group Cards */
.pl-area-group { display: grid; grid-template-columns: 1fr; gap: 8px; max-width: 960px; margin: 0 auto; }
@media (min-width: 640px) { .pl-area-group { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pl-area-group { grid-template-columns: repeat(4, 1fr); } }
.pl-area-group__card {
  background: var(--pl-white); border: 1.5px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-lg); overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.pl-area-group__card.is-active,
.pl-area-group__card:hover { border-color: var(--pl-primary); box-shadow: 0 4px 20px rgba(24,120,194,.12); }
.pl-area-group__header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; background: var(--pl-primary-pale); border-bottom: 1px solid var(--pl-gray-200);
}
.pl-area-group__card.is-active .pl-area-group__header { background: var(--pl-primary-light); }
.pl-area-group__name { font-size: var(--pl-text-sm); font-weight: 900; color: var(--pl-gray-900); }
.pl-area-group__btn {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: var(--pl-text-xs); font-weight: 700; color: var(--pl-primary);
  white-space: nowrap; text-decoration: none; flex-shrink: 0; transition: opacity .2s;
}
.pl-area-group__btn:hover { opacity: .72; }
.pl-area-group__pref-list { padding: 10px 14px; display: flex; flex-wrap: wrap; gap: 5px; }
.pl-area-group__card[data-region="hokkaido"] .pl-area-group__pref-list { padding: 20px 14px; }
.pl-area-group__link {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: var(--pl-text-xs); font-weight: 700; color: var(--pl-gray-700);
  text-decoration: none; padding: 4px 10px;
  background: var(--pl-gray-50); border: 1px solid var(--pl-gray-200); border-radius: 99px;
  transition: all .2s;
}
.pl-area-group__link:hover { background: var(--pl-primary-light); border-color: var(--pl-primary); color: var(--pl-primary); }
.pl-area-group__link::before { content: '›'; opacity: .55; }

/* City Hero intro (キーワードタグ置き換え) */
.pl-city-hero__intro { margin-bottom: 20px; }
.pl-city-hero__intro-lead { font-size: var(--pl-text-sm); font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.pl-city-hero__intro-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pl-city-hero__intro-list li { font-size: var(--pl-text-xs); color: rgba(255,255,255,.65); font-weight: 500; padding-left: 14px; position: relative; line-height: 1.6; }
.pl-city-hero__intro-list li::before { content: '›'; position: absolute; left: 0; color: var(--pl-primary-mid); font-weight: 900; }

/* City Search (prefecture page) */
.pl-city-search { margin-bottom: clamp(20px,4vw,32px); }
.pl-city-search__input-wrap { position: relative; max-width: 440px; margin: 0 auto; }
.pl-city-search__input {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 2px solid var(--pl-gray-200); border-radius: var(--pl-radius);
  font-size: var(--pl-text-sm); font-family: var(--pl-font);
  background: var(--pl-white); color: var(--pl-gray-900);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.pl-city-search__input:focus { outline: none; border-color: var(--pl-primary); box-shadow: 0 0 0 4px var(--pl-primary-light); }
.pl-city-search__icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; }

/* ── FAQ ───────────────────────────────────────────────────── */
.pl-faq { background: var(--pl-gray-50); padding: var(--pl-section) 0; }
.pl-faq__list { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.pl-faq__item { background: var(--pl-white); border-radius: var(--pl-radius-lg); border: 1px solid var(--pl-gray-200); overflow: hidden; }
.pl-faq__q {
  display: flex; align-items: center; gap: 14px; padding: 20px 24px;
  cursor: pointer; font-weight: 700; font-size: var(--pl-text-base);
  list-style: none; line-height: 1.5; user-select: none; transition: background .2s;
}
.pl-faq__q:hover { background: var(--pl-gray-50); }
.pl-faq__q::before {
  content: 'Q'; width: 30px; height: 30px; background: var(--pl-black); color: var(--pl-white);
  font-weight: 900; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .8rem;
}
.pl-faq__icon { margin-left: auto; font-size: 1.4rem; color: var(--pl-gray-400); transition: transform .3s; flex-shrink: 0; }
.pl-faq__item.is-open .pl-faq__icon { transform: rotate(45deg); }
.pl-faq__a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px 0 68px;
  font-size: var(--pl-text-sm); color: var(--pl-gray-600); font-weight: 500; line-height: 1.8;
}
.pl-faq__item.is-open .pl-faq__a { max-height: 500px; padding: 0 24px 20px 68px; }
@media (max-width: 480px) {
  .pl-faq__a { padding-left: 24px; }
  .pl-faq__item.is-open .pl-faq__a { padding-left: 24px; }
}
.pl-faq__note {
  display: inline-block; margin-top: 8px;
  font-size: var(--pl-text-xs); font-weight: 700; color: var(--pl-gray-500);
  background: var(--pl-gray-100); border: 1px solid var(--pl-gray-200);
  border-radius: 4px; padding: 2px 8px;
}

/* ── CTA Section ───────────────────────────────────────────── */
.pl-cta {
  background: linear-gradient(160deg, var(--pl-brand-dark) 0%, var(--pl-brand-mid) 100%);
  color: var(--pl-white); padding: var(--pl-section) 0;
  text-align: center; position: relative; overflow: hidden;
}
.pl-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(45,143,212,.15) 0%, transparent 65%);
  pointer-events: none;
}
.pl-cta__inner { position: relative; z-index: 1; }
.pl-cta__eyebrow { font-size: var(--pl-text-xs); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--pl-gold); margin-bottom: 16px; }
.pl-cta__title { font-size: var(--pl-text-4xl); font-weight: 900; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 16px; }
.pl-cta__desc { font-size: var(--pl-text-base); color: rgba(255,255,255,.65); font-weight: 500; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.pl-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pl-cta__disclaimer { font-size: var(--pl-text-xs); color: rgba(255,255,255,.35); margin-top: 12px; }
@media (min-width: 640px) { .pl-cta__actions { flex-direction: row; justify-content: center; } }


/* ── Header mark ────────────────────────────────────────────── */
.pl-header__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── ヘッダーロゴ（prolavo_logo4 対応）────────────────────── */
.pl-header__icon {
  height: 38px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .pl-header__icon { height: 32px; }
}

/* ── Hero panel (画像なし CSS 価格比較) ────────────────────── */
.pl-hero__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--pl-radius-lg);
  padding: clamp(20px,4vw,32px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.pl-hero__panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--pl-text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pl-hero__panel-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pl-pulse 2s infinite;
  flex-shrink: 0;
}
.pl-hero__compare { display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.pl-hero__compare-row { display: grid; gap: 5px; }
.pl-hero__compare-label {
  font-size: var(--pl-text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.48);
  letter-spacing: .04em;
}
.pl-hero__compare-val {
  font-size: clamp(1.4rem,4vw,1.75rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: rgba(255,255,255,.82);
}
.pl-hero__compare-val span { font-size: .75rem; font-weight: 700; margin-left: 2px; color: inherit; opacity: .7; }
.pl-hero__compare-val--high { color: #f87171; }
.pl-hero__compare-val--best { color: var(--pl-gold); }
.pl-hero__bar-track {
  height: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  overflow: hidden;
  margin: 2px 0;
}
.pl-hero__bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.pl-hero__bar--high    { background: linear-gradient(90deg, #f87171, #ef4444); }
.pl-hero__bar--avg     { background: var(--pl-primary); }
.pl-hero__bar--best    { background: linear-gradient(90deg, var(--pl-gold), #e5b84a); }
.pl-hero__bar-note {
  font-size: .675rem;
  font-weight: 700;
  color: rgba(255,255,255,.38);
}
.pl-hero__divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 4px 0 16px;
}
.pl-hero__saving {
  background: linear-gradient(135deg, rgba(200,168,75,.1), rgba(200,168,75,.05));
  border: 1px solid rgba(200,168,75,.25);
  border-radius: var(--pl-radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 10px;
}
.pl-hero__saving-label {
  font-size: var(--pl-text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pl-hero__saving-amount {
  font-size: clamp(1.75rem,5vw,2.5rem);
  font-weight: 900;
  color: var(--pl-gold);
  letter-spacing: -.03em;
  line-height: 1;
}
.pl-hero__saving-note {
  font-size: var(--pl-text-xs);
  color: rgba(255,255,255,.42);
  font-weight: 500;
  margin-top: 4px;
}
.pl-hero__panel-disclaimer {
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}

/* Feature badges */
.pl-hero__badges {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 12px;
}
.pl-hero__badge-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pl-radius);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.pl-hero__badge-item:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); }
.pl-hero__badge-icon { font-size: 1.35rem; line-height: 1; }
.pl-hero__badge-text { font-size: var(--pl-text-xs); font-weight: 900; color: rgba(255,255,255,.82); letter-spacing: -.01em; }

/* Urgency strip */
.pl-hero__urgency {
  background: rgba(45,143,212,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--pl-radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--pl-text-xs);
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.pl-hero__urgency-dot {
  width: 6px;
  height: 6px;
  background: var(--pl-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pl-pulse 1.5s infinite;
}

/* Stats strip */
.pl-hero__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--pl-radius);
  overflow: hidden;
  margin-top: 24px;
}
.pl-hero__stat {
  background: rgba(255,255,255,.03);
  padding: 14px 12px;
  text-align: center;
}
.pl-hero__stat-val {
  font-size: var(--pl-text-lg);
  font-weight: 900;
  color: var(--pl-white);
  letter-spacing: -.02em;
  line-height: 1;
}
.pl-hero__stat-label {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ================================================================
   ハンバーガーメニュー & モバイルナビ
   ================================================================ */

/* ── ハンバーガーボタン（デフォルトは非表示／SP で表示） ─── */
.pl-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.pl-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pl-gray-800);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.pl-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pl-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.pl-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── モバイルナビ本体（デフォルトは不活性／SP でのみ使用） ─── */
.pl-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.pl-mobile-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #fff;
  z-index: 1200;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 32px rgba(0, 0, 0, .14);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}
.pl-mobile-nav.is-open .pl-mobile-nav__overlay {
  opacity: 1;
  pointer-events: auto;
}
.pl-mobile-nav.is-open .pl-mobile-nav__drawer {
  transform: translateX(0);
}

/* ドロワー内レイアウト */
.pl-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--pl-gray-200);
  flex-shrink: 0;
}
.pl-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pl-gray-100);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--pl-gray-700);
  flex-shrink: 0;
  transition: background .2s;
}
.pl-mobile-nav__close:hover { background: var(--pl-gray-200); }

.pl-mobile-nav__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.pl-mobile-nav__nav a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--pl-gray-800);
  text-decoration: none;
  border-bottom: 1px solid var(--pl-gray-100);
  transition: background .15s, color .15s;
}
.pl-mobile-nav__nav a::after {
  content: '›';
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--pl-gray-400);
}
.pl-mobile-nav__nav a:hover {
  background: var(--pl-primary-pale);
  color: var(--pl-primary);
}

.pl-mobile-nav__cta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--pl-gray-100);
  flex-shrink: 0;
}
.pl-mobile-nav__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 16px;
  background: var(--pl-gray-50);
  border: 1px solid var(--pl-gray-200);
  border-radius: var(--pl-radius);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--pl-gray-900);
}
.pl-mobile-nav__tel small {
  font-size: .65rem;
  font-weight: 500;
  color: var(--pl-gray-600);
}

/* body スクロールロック（モバイルナビ開放時） */
body.pl-nav-open {
  overflow: hidden;
}

/* ================================================================
   SP（〜768px）レスポンシブ
   ================================================================ */
@media (max-width: 768px) {

  /* ヘッダー全体 */
  .pl-header__top-inner {
    height: 60px;
    padding: 10px 16px;
  }
  .pl-header__tagline { display: none; }
  .pl-header__contact  { display: none; }
  .pl-header__nav      { display: none; }
  .pl-header__hamburger { display: flex; }

  /* エリアページのトップ余白（非ヒーローページ） */
  main#main-content[style] {
    margin-top: 60px !important;
  }
}

/* ── SP ローカルSEOキャッチコピー（ヘッダー内・ロゴ〜ハンバーガー間） */
@media (max-width: 768px) {
  .pl-sp-local-catch {
    display: block;
    flex: 1;
    text-align: left;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 0 6px 0 0;
  }
  .pl-sp-local-catch__area,
  .pl-sp-local-catch__main { display: block; }
  .pl-sp-local-catch__area {
    color: #1677c8;
    font-size: 13px;
  }
  .pl-sp-local-catch__main {
    color: #10213f;
    font-size: 14px;
  }
  /* flex:1 の catch が中間スペースを担うため auto margin を解除 */
  .pl-header__hamburger { margin-left: 0; }
}

/* ================================================================
   新コンポーネント：Stats Bar / Why / Network / Diagnosis UI
   ================================================================ */

/* ── Stats Bar（ヒーロー直下の実績ストリップ） ──────────────── */
.pl-stats-bar {
  background: var(--pl-gray-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.pl-stats-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.pl-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  text-align: center;
  flex: 1;
}
.pl-stats-bar__val {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  color: var(--pl-gold);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.pl-stats-bar__val small {
  font-size: .65em;
  font-weight: 700;
  margin-left: 2px;
}
.pl-stats-bar__label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  white-space: nowrap;
}
.pl-stats-bar__divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 10px 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pl-stats-bar__inner { flex-wrap: wrap; }
  .pl-stats-bar__item  { flex: 1 1 40%; padding: 14px 10px; }
  .pl-stats-bar__divider { display: none; }
  .pl-stats-bar__label { font-size: .7rem; }
}

/* ── なぜ高いのか (pl-why) ──────────────────────────────────── */
.pl-why { padding: var(--pl-section) 0; background: var(--pl-white); }
.pl-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: clamp(32px, 5vw, 48px);
}
.pl-why__item {
  background: var(--pl-gray-50);
  border: 1px solid var(--pl-gray-100);
  border-radius: var(--pl-radius-lg);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.pl-why__item:hover {
  box-shadow: var(--pl-shadow);
  transform: translateY(-2px);
}
.pl-why__num {
  font-size: .7rem;
  font-weight: 900;
  color: var(--pl-primary);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.pl-why__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}
.pl-why__title {
  font-size: clamp(.95rem, 2vw, 1rem);
  font-weight: 900;
  color: var(--pl-gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}
.pl-why__desc {
  font-size: .9rem;
  color: var(--pl-gray-600);
  line-height: 1.8;
}
.pl-why__cta {
  text-align: center;
  padding: clamp(24px,4vw,40px) clamp(16px,4vw,32px);
  background: var(--pl-primary-pale);
  border: 1px solid var(--pl-primary-light);
  border-radius: var(--pl-radius-lg);
}
.pl-why__cta-text {
  font-size: clamp(.9rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--pl-gray-900);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .pl-why__grid { grid-template-columns: 1fr; }
}

/* ── 提携ネットワーク (pl-network) ──────────────────────────── */
.pl-network {
  padding: var(--pl-section) 0;
  background: var(--pl-gray-50);
}
.pl-network__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: 24px;
}
.pl-network__card {
  background: var(--pl-white);
  border: 1px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: box-shadow .2s;
}
.pl-network__card:hover { box-shadow: var(--pl-shadow); }
.pl-network__card--primary {
  border-color: var(--pl-primary);
  background: var(--pl-primary-pale);
}
.pl-network__card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.pl-network__card-title {
  font-size: clamp(.95rem, 2vw, 1rem);
  font-weight: 900;
  color: var(--pl-gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pl-network__card-desc {
  font-size: .9rem;
  color: var(--pl-gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}
.pl-network__card-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pl-network__card-list li {
  font-size: .84rem;
  color: var(--pl-gray-800);
  font-weight: 600;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}
.pl-network__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pl-primary);
  font-weight: 900;
}
.pl-network__note {
  font-size: .82rem;
  color: var(--pl-gray-600);
  background: var(--pl-white);
  border: 1px solid var(--pl-gray-200);
  border-radius: var(--pl-radius);
  padding: 14px 18px;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .pl-network__grid { grid-template-columns: 1fr; }
}

/* ── 診断フォーム新UI ──────────────────────────────────────── */
.pl-diag-step-intro {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--pl-primary-light);
}
.pl-diag-step-intro__num {
  font-size: .72rem;
  font-weight: 900;
  color: var(--pl-primary);
  letter-spacing: .14em;
  margin-bottom: 6px;
}
.pl-diag-step-intro__title {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 900;
  color: var(--pl-gray-900);
  margin-bottom: 6px;
  line-height: 1.35;
}
.pl-diag-step-intro__desc {
  font-size: .9rem;
  color: var(--pl-gray-600);
  font-weight: 500;
}

/* 大きなテキスト入力 */
.pl-diag-input--lg {
  font-size: 1.1rem;
  padding: 14px 16px;
  height: auto;
  min-height: 52px;
}

/* 数値入力ラッパー */
.pl-diag-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--pl-gray-200);
  border-radius: var(--pl-radius);
  overflow: hidden;
  transition: border-color .2s;
  background: var(--pl-white);
}
.pl-diag-input-wrap:focus-within { border-color: var(--pl-primary); }
.pl-diag-input-wrap .pl-diag-input--num {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}
.pl-diag-input-wrap .pl-diag-input--num:focus { box-shadow: none; outline: none; }
.pl-diag-input-unit {
  padding: 0 14px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--pl-gray-600);
  background: var(--pl-gray-50);
  border-left: 1px solid var(--pl-gray-200);
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* 地域バッジ（Step 2 に地域名を表示） */
.pl-diag-area-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--pl-primary);
  background: var(--pl-primary-pale);
  border: 1px solid var(--pl-primary-light);
  border-radius: var(--pl-radius);
  padding: 10px 14px;
  margin-bottom: 20px;
}

/* Step 4 の lead 注釈 */
.pl-diag-lead__note {
  font-size: .85rem;
  color: var(--pl-gray-600);
  display: block;
  margin-top: 8px;
  line-height: 1.7;
  font-weight: 500;
}

/* 完了したステップラベル */
.pl-diag-step-label.is-done {
  background: var(--pl-primary-light);
  color: var(--pl-primary);
  opacity: .8;
}

/* ── インラインバリデーションエラー ──────────────────────────── */
@keyframes pl-error-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pl-diag-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-left: 4px solid var(--pl-danger);
  border-radius: var(--pl-radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: #b91c1c;
  line-height: 1.55;
  animation: pl-error-in .2s ease;
}

.pl-diag-error__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--pl-danger);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  margin-top: 1px;
}

/* エラー状態の入力フィールド */
.pl-diag-input--error {
  border-color: var(--pl-danger) !important;
  background: #fff5f5;
}
.pl-diag-input--error:focus {
  box-shadow: 0 0 0 3px rgba(224, 58, 58, .12);
  outline: none;
}

/* エラー状態のチェックボックスグループ */
.pl-diag-checks--error .pl-diag-check {
  border-color: #fca5a5;
  background: #fff5f5;
}

/* プロラボ価格カード（結果表示） */
.pl-diag-dash-card--prolabo {
  background: var(--pl-primary-pale);
  border: 1.5px solid var(--pl-primary-light);
  position: relative;
}
.pl-diag-dash-card--prolabo::before {
  content: 'プロラボ';
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--pl-primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .06em;
}

/* ── ヒーローフォーム trust badges ──────────────────────────── */
.pl-hero__diag-trust-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 4px;
}
.pl-hero__diag-trust-badges span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--pl-gray-600);
  background: var(--pl-gray-50);
  border: 1px solid var(--pl-gray-200);
  border-radius: 99px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ── 主要ページ内部リンクセクション ─────────────────────────── */
.pl-sitenav { background: var(--pl-gray-50); padding: var(--pl-section) 0; }
.pl-sitenav__title {
  font-size: var(--pl-text-2xl);
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.pl-sitenav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pl-sitenav__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pl-white);
  border: 1px solid var(--pl-gray-200);
  border-radius: var(--pl-radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--pl-text);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.pl-sitenav__card:hover {
  border-color: var(--pl-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pl-sitenav__card--primary {
  border-color: var(--pl-primary);
  background: var(--pl-primary-pale);
}
.pl-sitenav__card-icon { font-size: 1.8rem; flex-shrink: 0; }
.pl-sitenav__card-body { flex: 1; min-width: 0; }
.pl-sitenav__card-title { font-size: var(--pl-text-sm); font-weight: 700; margin-bottom: 2px; }
.pl-sitenav__card--primary .pl-sitenav__card-title { color: var(--pl-primary); }
.pl-sitenav__card-desc { font-size: var(--pl-text-xs); color: var(--pl-gray-500); }
.pl-sitenav__card-arrow { font-size: 1.3rem; color: var(--pl-primary); font-weight: 900; flex-shrink: 0; }
@media (max-width: 640px) {
  .pl-sitenav__grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .pl-sitenav__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 年間節約額 強調スタイル ─────────────────────────────────── */
.pl-diag-dash-savings {
  padding: 22px 20px;
}
.pl-diag-dash-savings__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  color: var(--pl-gray-500);
  margin-bottom: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pl-diag-dash-savings__big {
  font-size: clamp(2.4rem, 9vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.pl-diag-dash-savings__caption {
  font-size: .82rem;
  color: var(--pl-gray-500);
  font-weight: 400;
  margin: 8px 0 12px;
}
.pl-diag-dash-savings__sub {
  margin-bottom: 2px;
}
.pl-diag-dash-savings__monthly {
  color: var(--pl-success);
  font-size: 1.1em;
  font-weight: 900;
}

/* ── 診断結果ミニCTA（KPI直下）────────────────────────────────── */
.pl-diag-mini-cta {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 12px;
  background: #fff8f0;
  border: 1.5px solid #fbd5b0;
  text-align: center;
}
.pl-diag-mini-cta__note {
  font-size: .9rem;
  font-weight: 700;
  color: #c2410c;
  margin: 0 0 14px;
  line-height: 1.75;
}
.pl-diag-mini-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--pl-radius);
  font-family: var(--pl-font);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  background: var(--pl-accent);
  box-shadow: 0 6px 20px rgba(21, 103, 178, .22);
  transition: opacity .2s, transform .2s;
  min-height: 54px;
}
.pl-diag-mini-cta__btn:hover,
.pl-diag-mini-cta__btn:focus {
  opacity: .92;
  transform: translateY(-2px);
}

/* ── 信頼バッジリスト ──────────────────────────────────────── */
.pl-diag-trust-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  text-align: left;
  display: grid;
  gap: 5px;
}
.pl-diag-trust-list li {
  font-size: .78rem;
  color: var(--pl-gray-600);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pl-diag-trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--pl-success);
}

/* ── 診断結果 スマホ余白調整 ────────────────────────────────── */
@media (max-width: 480px) {
  .pl-diag-dashboard { gap: 10px; }
  .pl-diag-dash-savings { padding: 16px; }
  .pl-diag-mini-cta { padding: 14px 12px; }
  .pl-diag-dash-header { padding: 14px; }
}

/* ── 進行インジケーター 背景線を非表示 ──────────────────────── */
.pl-diag-progress__track { display: none; }

/* ── 電話番号入力 補足テキスト ──────────────────────────────── */
.pl-diag-input-hint {
  font-size: .78rem;
  color: var(--pl-gray-500);
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.5;
}

/* ── Step4 送信前 安心文言 ──────────────────────────────────── */
.pl-diag-step4-note {
  font-size: .8rem;
  color: var(--pl-gray-600);
  font-weight: 500;
  background: var(--pl-primary-pale);
  border: 1px solid var(--pl-primary-light);
  border-radius: var(--pl-radius);
  padding: 10px 14px;
  margin: 0 0 12px;
  line-height: 1.75;
  text-align: center;
}

/* ================================================================
   ガス料金見直しガイド（TOPページ：FAQ下・下部CTA直前）
   ================================================================ */
.pl-knowledge {
  padding: var(--pl-section) 0;
  background: linear-gradient(180deg, var(--pl-primary-pale) 0%, var(--pl-white) 60%);
}

/* PC/タブレット：グリッド表示 */
.pl-knowledge__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .pl-knowledge__track { grid-template-columns: repeat(2, 1fr); }
}

.pl-knowledge__card {
  display: flex;
  flex-direction: column;
  background: var(--pl-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.pl-knowledge__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.pl-knowledge__card-img {
  position: relative;
  aspect-ratio: 5 / 3;
  background: var(--pl-gray-100);
}
.pl-knowledge__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pl-knowledge__card-img--fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pl-primary-pale) 0%, var(--pl-gray-100) 100%);
}
.pl-knowledge__card-cat {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(255,255,255,.92);
  color: var(--pl-primary);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}

.pl-knowledge__card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pl-knowledge__card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--pl-gray-900, #111827);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-knowledge__card-desc {
  font-size: .8rem;
  color: var(--pl-gray-600);
  line-height: 1.7;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.pl-knowledge__card-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--pl-primary);
}

.pl-knowledge__more {
  text-align: center;
  margin-top: 32px;
}

.pl-knowledge__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--pl-gray-200, #e5e7eb);
  text-align: center;
}
.pl-knowledge__cta-text {
  font-size: .85rem;
  color: var(--pl-gray-600);
  margin: 0 0 14px;
}

/* ドットインジケーター（SPのみ表示） */
.pl-knowledge__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.pl-knowledge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pl-gray-200, #e5e7eb);
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.pl-knowledge__dot.is-active {
  background: var(--pl-primary);
  transform: scale(1.2);
}

/* SP：横スクロールに切り替え、ネイティブスクロールバーは非表示 */
@media (max-width: 767px) {
  .pl-knowledge__scroll-wrap { overflow: hidden; }
  .pl-knowledge__track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    padding: 4px 4px 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pl-knowledge__track::-webkit-scrollbar { display: none; }
  .pl-knowledge__card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .pl-knowledge__dots { display: flex; }
}
