/* ==========================================================
   page-free-fee.css  v3
   「新築戸建て仲介手数料無料とは？」固定ページ専用スタイル
   pff-* = このページ固有スタイル

   ★ 静的モック（page-free-fee.html）での使い方:
      lh-common.css を先に読み込んだあとこのファイルを読み込む。
      CSS変数・ヘッダー・フッター・ボタンは lh-common.css が担当。

   ★ WordPress 実装（page-free-fee.php）での使い方:
      functions.php が lh-common.css → page-free-fee.css の順で enqueue。
   ========================================================== */

/* ----------------------------------------------------------
   静的モック用ベースリセット（WordPress環境では不要だが無害）
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ----------------------------------------------------------
   セクション共通
   ---------------------------------------------------------- */
.pff-section {
  padding: var(--section-py) 24px;
}

.pff-section--sand   { background: var(--sand); }
.pff-section--pale   { background: #f8fdff; }
.pff-section--white  { background: var(--white); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* テキスト中心のブロックは読みやすい幅に絞る */
.section-inner--narrow {
  max-width: 860px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   7. セクション見出し（front-page.php の .section-head と同一）
   ---------------------------------------------------------- */
.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ocean);
  background: var(--pale);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.35;
}

.section-head p {
  font-size: 14px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
}

/* btn-ocean / btn-white / btn-line は lh-common.css で定義済み。
   このページ固有のボタン（btn-assess / btn-outline-ocean）だけここで定義する。 */

.btn-outline-ocean {
  display: inline-block;
  padding: 13px 44px;
  border: 2px solid var(--ocean);
  color: var(--ocean);
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  transition: .3s;
}

.btn-outline-ocean:hover {
  background: var(--ocean);
  color: #fff;
}

/* ----------------------------------------------------------
   ヒーロー帯（下層ページ版 / front-page.php ヒーローの縮小版）
   ---------------------------------------------------------- */
.pff-hero {
  background: linear-gradient(180deg, #b8e8f7 0%, #d4f0fa 35%, #e8f8fd 65%, #ffffff 100%);
  padding: 80px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* 太陽グロー（front-page.phpの .lh-hero-sun に相当） */
.pff-hero::before {
  content: '';
  position: absolute;
  top: 60px; right: 12%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,220,100,.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 鳥（front-page.phpの .lh-hero-birds に相当、少し控えめ） */
.pff-hero::after {
  content: '🐦';
  position: absolute;
  top: 18%; right: 8%;
  font-size: 32px;
  opacity: .22;
  pointer-events: none;
}

.pff-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

/* front-page.php の .lh-hero-badge と同一スタイル */
.lh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,119,182,.1);
  color: var(--ocean);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  border: 1px solid rgba(0,119,182,.2);
}

.pff-hero h1 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}

.pff-hero h1 .accent { color: var(--ocean); }

.pff-hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 10px;
}

/* front-page.php の .lh-hero-features と同一 */
.lh-hero-features {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lh-hero-features .feat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ocean);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(0,119,182,.15);
}

.pff-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* front-page.php の .lh-hero-bg-wave に相当 */
.pff-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}

/* ----------------------------------------------------------
   10. フックセクション
   ---------------------------------------------------------- */
.pff-hook {
  background: #f8fdff;
  padding: 44px 24px;
  border-bottom: 1px solid rgba(0,119,182,.1);
}

.pff-hook-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pff-hook-q {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 10px;
}

.pff-hook-q em {
  font-style: normal;
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

.pff-hook-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
}

/* ----------------------------------------------------------
   11. テキスト補助UI
   ---------------------------------------------------------- */
.pff-intro-lead {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 28px;
}

.pff-formula {
  background: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 18px;
}

.pff-formula__label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.pff-formula__eq {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.pff-formula__eq em {
  color: var(--ocean);
  font-style: normal;
}

.pff-formula__note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
  opacity: .7;
}

/* front-page.php の news-card スタイルを流用したINFOボックス */
.pff-info-box {
  background: var(--pale);
  border-left: 4px solid var(--ocean);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  margin-top: 20px;
}

.pff-info-box strong { color: var(--ocean); }

/* ----------------------------------------------------------
   12. 比較カード（front-page.php の prop-card スタイルを継承）
   ---------------------------------------------------------- */
.pff-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pff-compare-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
}

.pff-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,119,182,.18);
}

.pff-compare-card__head {
  padding: 18px 22px 14px;
}

.pff-compare-card--general .pff-compare-card__head {
  background: linear-gradient(135deg, #e8b4b8, #f5c6c6);
}

.pff-compare-card--lh .pff-compare-card__head {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
}

.pff-compare-card__badge {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 3px 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.pff-compare-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.pff-compare-card__body {
  background: var(--white);
  padding: 20px 22px;
}

.pff-compare-card__list {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
}

.pff-compare-card__list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 5px;
}

.pff-compare-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--light-blue);
}

.pff-compare-card--lh .pff-compare-card__list li::before {
  color: var(--ocean);
}

.pff-compare-card__result {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--pale);
  font-size: 14px;
  font-weight: 700;
}

.pff-compare-card--general .pff-compare-card__result { color: #c0392b; }
.pff-compare-card--lh     .pff-compare-card__result { color: var(--ocean); }

@media (max-width: 640px) {
  .pff-compare-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   13. なぜ0円か — 3理由カード
   ---------------------------------------------------------- */
.pff-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pff-why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
}

.pff-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,119,182,.18);
}

.pff-why-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.pff-why-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 8px;
}

.pff-why-card__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

/* 透明性ノート（front-page.php の assess-step スタイルを流用） */
.pff-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--pale);
  border: 1px solid rgba(0,119,182,.15);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.pff-trust-note__icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.pff-trust-note__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.pff-trust-note__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 640px) {
  .pff-why-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   14. 節約額テーブル
   ---------------------------------------------------------- */
.pff-savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
}

.pff-savings-table th,
.pff-savings-table td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--pale);
}

.pff-savings-table thead th {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.pff-savings-table tbody tr:nth-child(even) { background: #f8fdff; }
.pff-savings-table tbody tr:hover { background: var(--pale); }

.pff-savings-table__zero { color: var(--ocean); font-weight: 700; }
.pff-savings-table__save { color: var(--red); font-weight: 700; }

.pff-table-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  text-align: right;
  opacity: .7;
}

@media (max-width: 600px) {
  .pff-savings-table th,
  .pff-savings-table td { padding: 9px 8px; font-size: 12px; }
}

/* ----------------------------------------------------------
   15. 節約シミュレーター
   ---------------------------------------------------------- */
.pff-sim-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,119,182,.12);
}

.pff-sim__label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.pff-sim__label-text { font-size: 14px; font-weight: 600; color: var(--text); }
.pff-sim__price-display { font-size: 22px; font-weight: 900; color: var(--ocean); }

.pff-sim__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--ocean) var(--pct,50%), var(--light-blue) var(--pct,50%));
  outline: none;
  cursor: pointer;
  margin-bottom: 5px;
}

.pff-sim__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,119,182,.4);
  transition: transform .15s;
}

.pff-sim__slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.pff-sim__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  border: 3px solid #fff;
  cursor: pointer;
}

.pff-sim__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 28px;
  opacity: .7;
}

.pff-sim__result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pff-sim__result-item {
  background: var(--pale);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}

.pff-sim__result-item--save {
  background: var(--pale);
  border: 2px solid rgba(0,119,182,.2);
}

.pff-sim__result-label {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.5;
}

.pff-sim__result-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.pff-sim__result-value--zero { color: var(--ocean); }
.pff-sim__result-value--save { color: var(--red); }
.pff-sim__result-unit { font-size: 12px; font-weight: 400; color: var(--gray); }

.pff-sim__note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--pale);
  line-height: 1.7;
  opacity: .8;
}

@media (max-width: 600px) {
  .pff-sim-card { padding: 24px 18px; }
  .pff-sim__result { grid-template-columns: 1fr; gap: 10px; }
}

/* ----------------------------------------------------------
   16. 5大特典（5カード）
   ---------------------------------------------------------- */
.pff-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

/* front-page.php の .prop-card スタイルを継承 */
.pff-benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
  position: relative;
}

.pff-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,119,182,.2);
}

.pff-benefit-card__num {
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: var(--radius) 0 var(--radius) 0;
}

.pff-benefit-card__icon-wrap {
  background: linear-gradient(160deg, var(--pale) 0%, #fff 100%);
  padding: 32px 16px 16px;
  text-align: center;
}

.pff-benefit-card__icon {
  font-size: 36px;
  line-height: 1;
}

.pff-benefit-card__body {
  padding: 14px 16px 18px;
  text-align: center;
}

.pff-benefit-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.45;
}

.pff-benefit-card__desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.pff-benefit-card__tag {
  display: inline-block;
  background: var(--pale);
  color: var(--ocean);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.pff-benefits-note {
  background: var(--pale);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  opacity: .85;
}

@media (max-width: 960px) { .pff-benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .pff-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .pff-benefits-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   17. LINE 訴求（front-page.php の .lh-assessment と同じ手法）
   ---------------------------------------------------------- */
.pff-line-section {
  background: linear-gradient(135deg, #04a544 0%, #06c755 60%, #05d560 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.pff-line-section::before {
  content: '📱';
  position: absolute;
  bottom: -20px; right: 5%;
  font-size: 200px;
  opacity: .06;
  pointer-events: none;
}

.pff-line-section::after {
  content: '🌿';
  position: absolute;
  top: 20px; right: 20%;
  font-size: 100px;
  opacity: .07;
  pointer-events: none;
}

.pff-line-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pff-line-left .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.18);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.pff-line-left h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 14px;
}

.pff-line-left p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.pff-line-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pff-line-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.pff-line-right {
  flex-shrink: 0;
  text-align: center;
}

.pff-line-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  min-width: 220px;
}

.pff-line-card__label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.pff-line-card__main {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.4;
}

.pff-line-card__qr {
  width: 80px; height: 80px;
  background: var(--pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray);
  margin: 0 auto 10px;
  text-align: center;
  line-height: 1.5;
}

.pff-line-card__qr-label {
  font-size: 11px;
  color: var(--gray);
}

@media (max-width: 700px) {
  .pff-line-inner { flex-direction: column; }
  .pff-line-left p { max-width: 100%; }
  .pff-line-right { display: none; }
  .pff-line-benefits { justify-content: center; }
  .pff-line-left { text-align: center; }
}

/* ----------------------------------------------------------
   18. ローンシミュレーター
   ---------------------------------------------------------- */
.pff-loan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,119,182,.12);
}

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

.pff-loan__field { display: flex; flex-direction: column; gap: 7px; }
.pff-loan__label { font-size: 13px; font-weight: 600; color: var(--text); }

.pff-loan__input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--pale);
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color .2s;
}

.pff-loan__input-wrap:focus-within {
  border-color: var(--ocean);
  background: #fff;
}

.pff-loan__input {
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  width: 100%;
  outline: none;
  text-align: right;
  min-width: 0;
}

.pff-loan__unit {
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.pff-loan__result {
  display: none;
  margin-top: 24px;
  background: var(--pale);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.pff-loan__result.is-active { display: block; }
.pff-loan__result-label { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.pff-loan__result-value { font-size: 30px; font-weight: 900; color: var(--ocean); line-height: 1.2; }
.pff-loan__result-unit  { font-size: 15px; font-weight: 400; }
.pff-loan__result-detail { font-size: 13px; color: var(--gray); margin-top: 10px; }

.pff-loan__note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--pale);
  line-height: 1.75;
  opacity: .75;
}

@media (max-width: 640px) {
  .pff-loan-card  { padding: 24px 18px; }
  .pff-loan__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ----------------------------------------------------------
   19. こんな方に（front-page.php の voice-card を継承）
   ---------------------------------------------------------- */
.pff-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pff-who-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
}

.pff-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,119,182,.18);
}

.pff-who-card__header {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pff-who-card__icon-wrap {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pff-who-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}

.pff-who-card__body {
  padding: 16px 20px;
}

.pff-who-card__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) { .pff-who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pff-who-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   20. 選ばれる理由
   ---------------------------------------------------------- */
.pff-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pff-reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
}

.pff-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,119,182,.18);
}

.pff-reason-card__num  { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--sky); margin-bottom: 8px; }
.pff-reason-card__icon { font-size: 30px; margin-bottom: 10px; line-height: 1; }
.pff-reason-card__title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.pff-reason-card__desc  { font-size: 12px; color: var(--gray); line-height: 1.8; margin: 0; }

@media (max-width: 900px) { .pff-reason-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pff-reason-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   21. 購入フロー（10ステップ 2列グリッド）
   ---------------------------------------------------------- */
.pff-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* front-page.php の news-card スタイルを継承 */
.pff-flow-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border-left: 4px solid var(--light-blue);
  transition: .2s;
}

.pff-flow-item:hover {
  border-left-color: var(--ocean);
  box-shadow: 0 4px 16px rgba(0,119,182,.12);
}

.pff-flow-item__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pff-flow-item__title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pff-flow-item__desc  { font-size: 12px; color: var(--gray); line-height: 1.7; margin: 0; }

@media (max-width: 640px) {
  .pff-flow-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   22. SEO補足ブロック
   ---------------------------------------------------------- */
.pff-seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pff-seo-card {
  background: var(--white);
  border: 1px solid rgba(0,119,182,.14);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,119,182,.08);
}

.pff-seo-card--soft {
  background: var(--pale);
}

.pff-seo-card--wide {
  max-width: 100%;
}

.pff-seo-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pff-seo-card__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,119,182,.08);
  border: 1px solid rgba(0,119,182,.14);
  color: var(--ocean);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.pff-seo-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.pff-seo-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.95;
  margin: 0;
}

.pff-seo-card p + p {
  margin-top: 12px;
}

.pff-area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.pff-area-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: rgba(0,119,182,.06);
  border: 1px solid rgba(0,119,182,.14);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean);
}

.pff-seo-card__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,119,182,.12);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

@media (min-width: 768px) {
  .pff-seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pff-seo-card {
    padding: 22px 18px;
  }

  .pff-seo-card__title {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------
   22. FAQ（<details>アコーディオン）
   ---------------------------------------------------------- */
.pff-faq { display: flex; flex-direction: column; gap: 12px; }

.pff-faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border-left: 4px solid var(--light-blue);
  transition: .2s;
}

.pff-faq__item[open] {
  border-left-color: var(--ocean);
  box-shadow: 0 4px 16px rgba(0,119,182,.12);
}

.pff-faq__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background .15s;
}

.pff-faq__item[open] .pff-faq__q {
  background: var(--pale);
  border-bottom: 1px solid rgba(0,119,182,.1);
}

.pff-faq__q-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pff-faq__q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.5;
}

.pff-faq__q-arrow {
  font-size: 18px;
  color: var(--ocean);
  transition: transform .25s;
  flex-shrink: 0;
}

.pff-faq__item[open] .pff-faq__q-arrow { transform: rotate(90deg); }

.pff-faq__a {
  padding: 16px 20px 16px 60px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
}

.pff-faq__a strong { color: var(--ocean); }

@media (max-width: 600px) { .pff-faq__a { padding-left: 20px; } }

/* ----------------------------------------------------------
   23. 問い合わせフォーム（front-page.php の assess-card スタイルを継承）
   ---------------------------------------------------------- */
.pff-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,119,182,.12);
}

.pff-form__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.pff-form__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pale);
  border: 1px solid rgba(0,119,182,.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ocean);
}

.pff-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.pff-form__field { display: flex; flex-direction: column; gap: 7px; }
.pff-form__field--full { grid-column: 1 / -1; }

.pff-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pff-form__required {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 5px;
}

.pff-form__optional {
  display: inline-block;
  background: var(--gray);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 5px;
  opacity: .7;
}

.pff-form__input,
.pff-form__select,
.pff-form__textarea {
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.pff-form__input:focus,
.pff-form__select:focus,
.pff-form__textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,119,182,.1);
}

.pff-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%235a7a8a' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.pff-form__textarea { resize: vertical; min-height: 100px; line-height: 1.75; }

.pff-form__check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.pff-form__check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ocean);
  cursor: pointer;
}

.pff-form__check-wrap a { color: var(--ocean); }

.pff-form__submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,119,182,.35);
}

.pff-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,119,182,.45);
}

.pff-form__submit-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  opacity: .75;
}

@media (max-width: 640px) {
  .pff-form-card  { padding: 28px 20px; }
  .pff-form__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   24. CTAセクション（front-page.php の .lh-assessment と完全一致）
   ---------------------------------------------------------- */
.pff-cta-section {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #00b4d8 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.pff-cta-section::before {
  content: '🌊';
  position: absolute;
  bottom: -20px; right: 5%;
  font-size: 200px;
  opacity: .08;
  pointer-events: none;
}

.pff-cta-section::after {
  content: '🏠';
  position: absolute;
  top: 20px; right: 20%;
  font-size: 100px;
  opacity: .07;
  pointer-events: none;
}

.pff-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pff-cta-inner .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.18);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.pff-cta-inner h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 12px;
}

.pff-cta-inner p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.9;
}

.pff-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-assess {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(255,107,53,.45);
  transition: .3s;
  letter-spacing: .5px;
}

.btn-assess:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,53,.55);
  color: #fff;
}

@media (max-width: 600px) {
  .pff-cta-section { padding: 60px 24px; }
  .pff-cta-btns { flex-direction: column; align-items: center; }
}

/* ----------------------------------------------------------
   25. 関連導線（front-page.php の prop-card ミニ版）
   ---------------------------------------------------------- */
.pff-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pff-related-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
  transition: .3s;
}

.pff-related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,119,182,.2);
  color: var(--ocean);
}

.pff-related-item__icon  { font-size: 26px; line-height: 1; }
.pff-related-item__label { font-size: 13px; font-weight: 700; line-height: 1.4; }
.pff-related-item__arrow {
  display: inline-block;
  font-size: 11px;
  color: var(--ocean);
  background: var(--pale);
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 600;
}

@media (max-width: 767px) { .pff-related-grid { grid-template-columns: repeat(2, 1fr); } }

/* lh-footer / footer-wave / footer-top / footer-nav は lh-common.css で定義済み。*/

/* ----------------------------------------------------------
   このページのみのレスポンシブ追加
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   26. お客様の声（ミニ 3件）
   ---------------------------------------------------------- */
.pff-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.pff-voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: 0 4px 20px rgba(0,119,182,.08);
  border-top: 4px solid var(--ocean);
  position: relative;
  transition: .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pff-voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,119,182,.15);
}

.pff-voice-card__quote {
  font-size: 48px;
  font-weight: 900;
  color: var(--pale);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}

.pff-voice-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  flex: 1;
}

.pff-voice-card__footer {
  padding-top: 14px;
  border-top: 1px solid var(--pale);
}

.pff-voice-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 2px;
}

.pff-voice-card__area {
  font-size: 11px;
  color: var(--gray);
}

@media (max-width: 900px) { .pff-voice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pff-voice-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .pff-hero { padding: 60px 24px 48px; }
}

/* ----------------------------------------------------------
   27. LP visual alignment refresh
   /lp/1/ の明るいブルー基調・カード・余白へ寄せる上書き
   ---------------------------------------------------------- */
:root {
  --ocean: #0077b6;
  --oceanDark: #023e8a;
  --sky: #00b4d8;
  --light-blue: #90e0ef;
  --pale: #e0f4fd;
  --foam: #f8fdff;
  --sand: #f5fafc;
  --green: #52b788;
  --line-green: #06c755;
  --line-dark: #05a847;
  --text: #1a3a4c;
  --gray: #5a7a8a;
  --muted: #5a7a8a;
  --soft: #d4eaf5;
  --white: #fff;
  --radius: 20px;
  --section-py: 84px;
  --num: "Inter", system-ui, sans-serif;
}

html { scroll-padding-top: 110px; }

body {
  background: var(--foam);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.pff-section {
  padding: var(--section-py) 24px;
}

.pff-section--sand {
  background: linear-gradient(180deg, var(--foam) 0%, #fff 100%);
}

.pff-section--pale {
  background: var(--foam);
}

.pff-section--white {
  background: #fff;
}

.section-inner {
  max-width: 1120px;
}

.section-inner--narrow {
  max-width: 920px;
}

.section-head {
  text-align: center;
  margin-bottom: 46px;
}

.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--ocean);
  background: var(--pale);
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 2px 10px rgba(0,119,182,.06);
}

.section-head h2 {
  font-size: clamp(24px, 4.5vw, 34px);
  line-height: 1.38;
  letter-spacing: .01em;
  text-wrap: balance;
}

.section-head p {
  max-width: 40em;
  font-size: 15px;
  color: var(--gray);
}

.btn-ocean,
.btn-line,
.btn-white,
.btn-assess,
.btn-outline-ocean {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.btn-ocean,
.btn-ocean:visited,
.btn-ocean:hover,
.btn-assess,
.btn-assess:visited,
.btn-assess:hover {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,119,182,.25);
}

.btn-line,
.btn-line:visited,
.btn-line:hover {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,199,85,.24);
}

.btn-white,
.btn-white:visited,
.btn-white:hover {
  background: #fff;
  color: var(--ocean);
  border: 2px solid var(--light-blue);
  box-shadow: 0 4px 14px rgba(0,119,182,.12);
}

.btn-outline-ocean {
  border-color: var(--light-blue);
}

.btn-ocean:hover,
.btn-line:hover,
.btn-white:hover,
.btn-assess:hover,
.btn-outline-ocean:hover {
  transform: translateY(-2px);
  opacity: .96;
}

.pff-hero {
  background: linear-gradient(180deg, #b8e8f7 0%, #d8f2fa 42%, #f8fdff 78%, #fff 100%);
  padding: 74px 24px 78px;
}

.pff-hero::before {
  top: 74px;
  right: 8%;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(255,220,100,.52) 0%, rgba(255,220,100,.12) 48%, transparent 72%);
}

.pff-hero::after {
  top: 18%;
  right: 9%;
  font-size: 26px;
  opacity: .16;
}

.pff-hero-inner {
  max-width: 900px;
}

.lh-hero-badge {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,119,182,.2);
  box-shadow: 0 2px 10px rgba(0,119,182,.08);
  padding: 8px 18px;
}

.pff-hero h1 {
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.28;
  margin-bottom: 16px;
}

.pff-hero h1 .accent {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pff-hero-sub {
  max-width: 40em;
  margin: 0 auto 12px;
  font-size: 15px;
}

.lh-hero-features {
  gap: 10px;
  margin-bottom: 30px;
}

.lh-hero-features .feat {
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px rgba(0,119,182,.08);
}

.pff-hook {
  background: linear-gradient(180deg, var(--foam) 0%, #fff 100%);
  padding: 50px 24px;
  border-bottom: 1px solid rgba(0,119,182,.08);
}

.pff-hook-inner {
  max-width: 840px;
}

.pff-hook-q {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.6;
}

.pff-hook-sub,
.pff-intro-lead,
.pff-formula__note,
.pff-table-note,
.pff-sim__note,
.pff-loan__note,
.pff-benefits-note,
.pff-faq__a,
.pff-form__check-wrap,
.pff-form__submit-note {
  color: var(--gray);
}

.pff-formula,
.pff-compare-card,
.pff-why-card,
.pff-sim-card,
.pff-benefit-card,
.pff-line-card,
.pff-loan-card,
.pff-who-card,
.pff-reason-card,
.pff-seo-card,
.pff-form-card,
.pff-related-item,
.pff-voice-card {
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,119,182,.11);
}

.pff-compare-card:hover,
.pff-why-card:hover,
.pff-benefit-card:hover,
.pff-who-card:hover,
.pff-reason-card:hover,
.pff-related-item:hover,
.pff-voice-card:hover {
  box-shadow: 0 10px 32px rgba(0,119,182,.16);
}

.pff-formula {
  padding: 24px 26px;
}

.pff-formula__eq {
  font-size: 17px;
  font-weight: 800;
}

.pff-info-box,
.pff-trust-note {
  background: #fff;
  border: 1px solid var(--soft);
  border-left: 4px solid var(--sky);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,119,182,.08);
}

.pff-compare-grid,
.pff-why-grid,
.pff-reason-grid,
.pff-who-grid,
.pff-flow-grid,
.pff-seo-grid,
.pff-voice-grid {
  gap: 18px;
}

.pff-compare-card__head {
  padding: 20px 22px 16px;
}

.pff-compare-card__body {
  padding: 22px;
}

.pff-compare-card--general .pff-compare-card__head {
  background: linear-gradient(180deg, #fff0f2 0%, #ffe7ea 100%);
}

.pff-compare-card--general .pff-compare-card__badge {
  background: #fff;
  color: #c15a66;
}

.pff-compare-card--general .pff-compare-card__title {
  color: #8e4b55;
}

.pff-compare-card--lh .pff-compare-card__badge {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.pff-compare-card__result {
  font-size: 15px;
}

.pff-why-card,
.pff-reason-card {
  padding: 26px 22px;
}

.pff-why-card__title,
.pff-reason-card__title,
.pff-related-item__label,
.pff-seo-card__title {
  font-size: 15px;
  font-weight: 900;
}

.pff-savings-table {
  border: 1px solid var(--soft);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,119,182,.1);
}

.pff-savings-table thead th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pff-sim-card,
.pff-loan-card {
  padding: 32px 28px;
  border-radius: 22px;
}

.pff-sim__label-row {
  margin-bottom: 18px;
  align-items: flex-end;
}

.pff-sim__label-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--ocean);
}

.pff-sim__price-display {
  font-size: clamp(40px, 8vw, 62px);
  line-height: 1;
  font-family: var(--num);
}

.pff-sim__slider {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--ocean) var(--pct,50%), var(--pale) var(--pct,50%));
}

.pff-sim__slider::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,119,182,.24);
}

.pff-sim__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0,119,182,.24);
}

.pff-sim__range-labels {
  font-size: 11px;
  margin-top: 7px;
  margin-bottom: 24px;
  opacity: 1;
}

.pff-sim__result {
  gap: 12px;
}

.pff-sim__result-item {
  background: var(--foam);
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 18px 16px;
}

.pff-sim__result-item--save {
  background: linear-gradient(180deg, #eafaff, #fff);
  border: 1px solid var(--light-blue);
}

.pff-sim__result-label {
  font-size: 12px;
  font-weight: 800;
}

.pff-sim__result-value {
  font-size: 20px;
  font-family: var(--num);
}

.pff-benefits-grid {
  gap: 18px;
}

.pff-benefit-card {
  border-radius: 20px;
}

.pff-benefit-card__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 18px 0 16px 0;
}

.pff-benefit-card__icon-wrap {
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  padding: 34px 18px 18px;
}

.pff-benefit-card__body {
  padding: 18px 18px 20px;
}

.pff-benefit-card__title {
  font-size: 15px;
  line-height: 1.5;
}

.pff-benefit-card__desc {
  font-size: 13px;
  line-height: 1.85;
}

.pff-benefit-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--soft);
  border-radius: 999px;
}

.pff-benefits-note {
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 14px;
  padding: 12px 16px;
  opacity: 1;
}

.pff-line-section {
  padding: 82px 24px;
  background: linear-gradient(135deg, #05a847 0%, #06c755 58%, #20d97a 100%);
}

.pff-line-left .tag,
.pff-cta-inner .tag {
  font-weight: 800;
  letter-spacing: .18em;
  border-radius: 999px;
}

.pff-line-left h2,
.pff-cta-inner h2 {
  font-size: clamp(24px, 4.5vw, 34px);
  line-height: 1.4;
}

.pff-line-left p,
.pff-cta-inner p {
  font-size: 15px;
}

.pff-line-card {
  min-width: 240px;
  padding: 28px 26px;
}

.pff-line-card__label,
.pff-line-card__qr-label {
  color: var(--gray);
}

.pff-loan__grid {
  gap: 18px;
}

.pff-loan__label,
.pff-form__label,
.pff-faq__q-text {
  font-weight: 800;
}

.pff-loan__input-wrap {
  min-height: 56px;
  padding: 0 14px;
  background: var(--foam);
  border: 1px solid var(--soft);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.pff-loan__input-wrap:focus-within,
.pff-form__input:focus,
.pff-form__select:focus,
.pff-form__textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(144,224,239,.18);
}

.pff-loan__input {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--num);
}

.pff-loan__result {
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
  border: 1px solid var(--soft);
  border-radius: 18px;
}

.pff-loan__result-value {
  font-size: clamp(30px, 6vw, 42px);
  font-family: var(--num);
}

.pff-loan__result-detail {
  line-height: 1.85;
}

.pff-who-card__header {
  background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  border-bottom: 1px solid var(--soft);
  padding: 20px;
}

.pff-who-card__icon-wrap {
  background: var(--pale);
  color: var(--ocean);
}

.pff-who-card__title {
  color: var(--text);
}

.pff-flow-item {
  background: #fff;
  border: 1px solid var(--soft);
  border-left: 4px solid var(--light-blue);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 4px 16px rgba(0,119,182,.08);
}

.pff-flow-item:hover {
  border-left-color: var(--ocean);
  box-shadow: 0 8px 24px rgba(0,119,182,.14);
}

.pff-seo-card {
  padding: 26px 24px;
}

.pff-seo-card--soft {
  background: linear-gradient(180deg, #f8fdff 0%, #fff 100%);
}

.pff-area-list li {
  background: var(--foam);
  border: 1px solid var(--soft);
}

.pff-faq {
  gap: 14px;
}

.pff-faq__item {
  background: #fff;
  border: 1px solid var(--soft);
  border-left: 4px solid var(--light-blue);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,119,182,.08);
}

.pff-faq__item[open] {
  border-color: var(--soft);
  border-left-color: var(--ocean);
  box-shadow: 0 8px 24px rgba(0,119,182,.12);
}

.pff-faq__q {
  padding: 18px 20px;
}

.pff-faq__item[open] .pff-faq__q {
  background: linear-gradient(180deg, #f8fdff 0%, #fff 100%);
}

.pff-faq__a {
  line-height: 1.9;
}

.pff-form-card {
  padding: 36px 32px;
  border-radius: 22px;
}

.pff-form__trust {
  gap: 8px;
  margin-bottom: 28px;
}

.pff-form__trust-badge {
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
}

.pff-form__input,
.pff-form__select,
.pff-form__textarea {
  background: var(--foam);
  border: 1px solid var(--soft);
  border-radius: 14px;
  padding: 14px 16px;
}

.pff-form__submit {
  min-height: 56px;
  border-radius: 999px;
  font-weight: 800;
}

.pff-cta-section {
  padding: 82px 24px;
  background: linear-gradient(180deg, #0091d0 0%, #00a7d8 54%, #00b4d8 100%);
}

.pff-cta-btns {
  gap: 12px;
}

.pff-related-item {
  padding: 24px 18px;
}

.pff-related-item__arrow {
  font-weight: 800;
}

.pff-voice-card {
  padding: 22px 20px;
  border-top: 4px solid var(--ocean);
}

@media (max-width: 900px) {
  .pff-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  :root { --section-py: 66px; }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head p,
  .pff-hero-sub,
  .pff-line-left p,
  .pff-cta-inner p {
    font-size: 14px;
  }

  .pff-hero {
    padding: 58px 20px 62px;
  }

  .pff-hero::before {
    right: 4%;
    width: 110px;
    height: 110px;
  }

  .pff-hero-btns,
  .pff-cta-btns {
    display: grid;
  }

  .btn-ocean,
  .btn-line,
  .btn-white,
  .btn-assess,
  .btn-outline-ocean {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .pff-sim-card,
  .pff-loan-card,
  .pff-form-card {
    padding: 24px 18px;
  }

  .pff-sim__price-display {
    font-size: clamp(34px, 11vw, 50px);
  }

  .pff-line-section,
  .pff-cta-section {
    padding: 66px 20px;
  }

  .pff-line-card {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

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

@media (max-width: 560px) {
  .pff-benefits-grid,
  .pff-who-grid,
  .pff-reason-grid,
  .pff-flow-grid,
  .pff-related-grid,
  .pff-voice-grid {
    grid-template-columns: 1fr;
  }

  .pff-compare-grid,
  .pff-seo-grid,
  .pff-sim__result,
  .pff-loan__grid {
    grid-template-columns: 1fr;
  }

  .pff-compare-card__body,
  .pff-seo-card,
  .pff-faq__q,
  .pff-faq__a {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pff-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ----------------------------------------------------------
   28. FREE TARGET / LOAN SIM detail refinement
   ---------------------------------------------------------- */
.pff-target-grid {
  align-items: stretch;
  gap: 18px;
}

.pff-target-card {
  min-height: 100%;
}

.pff-target-card .pff-seo-card__chips {
  margin-bottom: 16px;
}

.pff-target-card .pff-seo-card__chips span {
  background: var(--pale);
  border: 1px solid var(--soft);
  color: var(--ocean);
  font-weight: 800;
}

.pff-target-card .pff-seo-card__title {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.pff-target-card p {
  line-height: 1.95;
}

.pff-target-card--soft {
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}

.pff-loan__btn {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 8px auto 18px;
}

.pff-loan__result {
  margin-top: 8px;
}

.pff-loan__result-main {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--soft);
}

.pff-loan__result-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--ocean);
  margin-bottom: 8px;
}

.pff-loan__result-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  font-size: clamp(34px, 7vw, 50px);
  line-height: 1;
}

.pff-loan__result-unit {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray);
  padding-bottom: 5px;
}

.pff-loan__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.pff-loan__stat {
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}

.pff-loan__stat-label {
  font-size: 12px;
  font-weight: 900;
  color: var(--gray);
  margin-bottom: 6px;
}

.pff-loan__stat-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-family: var(--num);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}

.pff-loan__stat-unit {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray);
  padding-bottom: 3px;
}

@media (min-width: 640px) {
  .pff-loan__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .pff-target-card .pff-seo-card__title {
    font-size: 18px;
  }
}
