/* ============================================
   lp.css
   課題解決LP 共通テンプレートスタイル
   ============================================ */

/* ---------- LP HERO ---------- */
.lp-hero {
  padding: 100px 0 48px;
  position: relative;
  overflow: hidden;
  background: url('../images/placeholder-fukuoka.jpg') center center / cover no-repeat var(--c-bg-warm);
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0.35) 70%,
    rgba(255,255,255,0.10) 100%
  );
  z-index: 1;
}
.lp-hero > .container {
  position: relative;
  z-index: 2;
}

.lp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-navy-pale);
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.lp-hero-catch {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.lp-hero-desc {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-bottom: 28px;
}

/* ---------- LP PAIN POINTS ---------- */
.lp-pain {
  background: var(--c-white);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pain-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--c-red-pale);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.pain-item::before {
  content: '😟';
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-answer {
  font-size: 16px;
  color: var(--c-text-sub);
  line-height: 2;
}

.pain-answer strong {
  color: var(--c-navy);
  font-weight: 700;
}

/* ---------- LP FLOW ---------- */
.lp-flow {
  background: var(--c-bg);
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -12px;
  width: 2px;
  background: var(--c-border);
}

.flow-num {
  width: 40px;
  height: 40px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  padding-top: 8px;
}

.flow-content p {
  font-size: 16px;
  color: var(--c-text-sub);
  line-height: 1.8;
}

/* ---------- LP CHECKLIST ---------- */
.lp-checklist {
  background: var(--c-bg);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  position: relative;
  padding: 16px 16px 16px 40px;
  background: var(--c-navy-pale);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.7;
}

.check-item::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--c-navy);
  font-weight: 800;
  font-size: 18px;
}

/* ---------- LP WHY BASEUP ---------- */
.lp-why {
  background: var(--c-bg-warm);
}

.why-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-s);
}

.why-card-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 12px;
}

.lp-concerns-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 2 / 1;
  object-fit: cover;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.why-card p {
  font-size: 16px;
  color: var(--c-text-sub);
  line-height: 1.9;
}

/* ---------- LP RELATED LINKS ---------- */
.lp-related {
  background: var(--c-bg);
}
.lp-related .section-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.related-list:last-child {
  margin-bottom: 0;
}

.related-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-s);
  font-size: 15px;
  font-weight: 600;
}

.related-link::after {
  content: '→';
  color: var(--c-navy);
  margin-left: auto;
  flex-shrink: 0;
}

/* ---------- RESPONSIVE LP ---------- */

/* --- Tablet (600px+) --- */
@media (min-width: 600px) {
  .lp-hero { padding: 120px 0 48px; }
  .lp-hero-catch { font-size: 30px; }
  .lp-hero-desc { font-size: 16px; }
  .pain-item { padding: 14px 20px; }
  .flow-step { flex-direction: row; gap: 16px; align-items: flex-start; }
  .flow-num { flex-shrink: 0; }
  .why-card { padding: 24px; }
  .why-card h3 { font-size: 18px; }
  .related-link { padding: 16px 24px; }
  .why-card-img { max-width: 400px; margin-left: auto; margin-right: auto; }
  .lp-concerns-img { max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* --- Desktop (900px+) --- */
@media (min-width: 900px) {
  .lp-hero { padding: 140px 0 64px; }
  .lp-hero-catch { font-size: 36px; }
  .lp-hero-desc { font-size: 18px; max-width: 560px; }
  .pain-item { font-size: 17px; }
  .pain-answer { font-size: 17px; }
  .pain-list { }
  .pain-answer { }
  .flow-step { padding: 20px 24px; }
  .flow-content h3 { font-size: 19px; }
  .flow-content p { font-size: 17px; }
  .check-item { padding: 14px 20px 14px 44px; font-size: 17px; }
  .why-card { padding: 28px 32px; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 17px; }
  .lp-concerns-img { max-width: 520px; }
  .lp-related .section-title { font-size: 22px; }
  .related-list { max-width: 640px; }
  .related-link { font-size: 16px; }
  .lp-related-label { font-size: 14px; }
  .lp-cta-staff-avatar { width: 64px; height: 64px; }
}

/* --- Wide Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .lp-hero-catch { font-size: 40px; }
}

/* ===== LP NUMBERS (trust section) ===== */
.lp-numbers { padding: 32px 0; background: var(--c-navy); }
.lp-num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.lp-num-item { padding: 16px 8px; }
.lp-num-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--c-gold-light); line-height: 1.2; }
.lp-num-value span { font-size: 16px; font-weight: 600; opacity: 0.8; }
.lp-num-label { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 6px; line-height: 1.5; font-weight: 600; }
.lp-num-note { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ===== LP MID-CTA (PC only) ===== */
.lp-mid-cta { display: none; }
@media (min-width: 900px) {
  .lp-mid-cta { display: block; padding: 24px 0; text-align: center; background: var(--c-bg); }
  .lp-mid-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 40px; background: var(--c-gold); color: #fff;
    font-size: 16px; font-weight: 700; border-radius: var(--radius);
    box-shadow: var(--shadow-s); transition: background 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .lp-mid-cta-btn:hover { background: var(--c-gold-hover); transform: translateY(-1px); }
  .lp-mid-cta-btn span { font-size: 13px; font-weight: 500; opacity: 0.85; }
}

@media (min-width: 900px) {
  .lp-num-grid { max-width: 640px; margin: 0 auto; gap: 24px; }
  .lp-num-value { font-size: 40px; }
  .lp-num-label { font-size: 14px; }
}

/* ===== Phase 4: Inline Style → Class Migration ===== */

/* --- Hero sub-elements --- */
.lp-hero-badges { font-size: 13px; color: var(--c-text-muted); font-weight: 500; margin-top: 20px; }
/* --- Voice inline section (customer testimonial in LP) --- */
.lp-voice { background: var(--c-white); padding: 40px 0; }
/* --- Flow sub-elements --- */
/* --- Knowledge sub-elements --- */
/* --- CTA staff card --- */
.lp-cta-staff { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; }
.lp-cta-avatar, .lp-cta-staff-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.3); }
.lp-cta-staff-info { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.lp-cta-staff-name { display: block; font-size: 15px; color: #fff; }
.lp-cta-staff-link { color: var(--c-gold-light); font-size: 13px; }
/* --- Related links section --- */
.lp-related-label { font-size: 13px; font-weight: 700; color: var(--c-text-muted); margin-top: 8px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--c-border); }
.related-link--trust { background: var(--c-gold-pale); border: 1px solid rgba(184,135,47,0.2); }
.related-link--theme { background: var(--c-bg); border: 1px solid var(--c-border); }

/* --- More link (shared pattern) --- */
.lp-more-link { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--c-navy); padding: 12px; margin-top: 8px; }
.lp-btn-center { text-align: center; font-size: 15px; }
/* --- Phase 4 Round 2: comparison table (kaitori) --- */
.compare-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.8; }
.compare-th-label { padding: 14px 12px; background: var(--c-bg-warm); border-bottom: 2px solid var(--c-border); text-align: left; font-size: 13px; color: var(--c-text-muted); font-weight: 600; width: 28%; }
.compare-th-navy { padding: 14px 12px; background: var(--c-navy); color: #fff; border-bottom: 2px solid var(--c-navy); text-align: center; font-weight: 700; width: 36%; }
.compare-th-gold { padding: 14px 12px; background: var(--c-gold); color: #fff; border-bottom: 2px solid var(--c-gold); text-align: center; font-weight: 700; width: 36%; }
.compare-tr { border-bottom: 1px solid var(--c-border); }
.compare-td-label { padding: 14px 12px; font-weight: 600; background: var(--c-bg-warm); }
.compare-td { padding: 14px 12px; text-align: center; background: var(--c-white); }
.compare-note { font-size: 13px; color: var(--c-text-muted); }

/* ===== Phase A: Numbers grid & Annotation ===== */
.why-numbers {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 20px 12px 14px; margin-bottom: 24px; text-align: center;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.why-num-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 0 4px;
  position: relative;
}
.why-num-item + .why-num-item::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 1px; background: var(--c-border);
}
.why-num-label { font-size: 11px; font-weight: 600; color: var(--c-text-muted); letter-spacing: 0.04em; }
.why-num-value {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--c-gold); line-height: 1.2;
}
.why-num-value small { font-size: 14px; font-weight: 600; color: var(--c-navy); }
.why-numbers-sub {
  grid-column: 1 / -1; font-size: 11px; font-weight: 400;
  color: var(--c-text-muted); margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--c-border);
}
.annotation {
  font-size: 11px; color: var(--c-text-muted); vertical-align: super; font-weight: 400;
}
@media (min-width: 900px) {
  .why-numbers { max-width: none; margin-bottom: 32px; padding: 28px 32px 18px; }
  .why-num-value { font-size: 36px; }
  .why-num-label { font-size: 13px; }
  .why-num-value small { font-size: 16px; }
  .why-numbers-sub { font-size: 12px; }
}

/* ===== Phase B: loan.html — Urgency & Privacy ===== */
.loan-urgency { padding: 40px 0; background: var(--c-navy); color: #fff; }
.urgency-lead {
  font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.urgency-lead .icon { color: var(--c-gold-light); }
.urgency-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}
.urgency-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); font-size: 14px; font-weight: 500; line-height: 1.4;
}
.urgency-dot {
  flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
}
.urgency-dot--1 { background: #4CAF50; }
.urgency-dot--2 { background: #FFC107; }
.urgency-dot--3 { background: #FF9800; }
.urgency-dot--4 { background: #F44336; }
.urgency-reassure {
  text-align: center; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.privacy-promise {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 20px;
}
.privacy-promise-icon { flex-shrink: 0; color: var(--c-gold-light); margin-top: 2px; }
.privacy-promise-body strong { font-size: 15px; display: block; margin-bottom: 6px; }
.privacy-promise-body p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* --- loan Compare section --- */
.loan-compare { background: var(--c-white); }
.loan-compare-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 24px; }

/* --- CTA Collapsible Secondary --- */
.cta-secondary-fold { margin-top: 20px; }
.cta-fold-trigger {
  display: block; text-align: center; cursor: pointer;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7);
  padding: 12px; list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px;
}
.cta-fold-trigger::-webkit-details-marker { display: none; }
.cta-fold-trigger::after { content: ' ▼'; font-size: 11px; }
details[open] > .cta-fold-trigger::after { content: ' ▲'; }
.cta-secondary-fold .cta-secondary { margin-top: 16px; }

/* --- rikon Regrets section --- */
.rikon-regrets { background: var(--c-bg-light); }
.regrets-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 20px; }
.regret-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.regret-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: 10px; padding: 18px 16px;
  border-left: 3px solid #E57373;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.regret-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: #FFF3F0; color: #E57373;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.regret-body strong { font-size: 15px; font-weight: 700; color: var(--c-navy); display: block; margin-bottom: 6px; line-height: 1.5; }
.regret-body p { font-size: 14px; color: var(--c-text-sub); line-height: 1.8; margin: 0; }
.regrets-close {
  font-size: 15px; color: var(--c-navy); line-height: 1.8; text-align: center;
  padding: 20px 16px; background: #fff; border-radius: 10px;
  border: 1px solid var(--c-border);
}
.regrets-close strong { color: var(--c-gold-dark, #9A7028); }

/* --- rikon Reassure section --- */
.rikon-reassure { padding: 40px 0; background: var(--c-navy); color: #fff; }
.reassure-lead {
  font-size: 17px; font-weight: 700; text-align: center; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.reassure-lead .icon { color: var(--c-gold-light); }
.reassure-sub { font-size: 14px; text-align: center; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.reassure-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px;
}
.reassure-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border-radius: 8px; padding: 12px 14px;
  font-size: 14px; font-weight: 500; line-height: 1.5;
}
.reassure-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.reassure-dot--1 { background: #81C784; }
.reassure-dot--2 { background: #4FC3F7; }
.reassure-dot--3 { background: #FFB74D; }
.reassure-dot--4 { background: #E57373; }

/* --- rikon 3 Issues section --- */
.rikon-issues { background: var(--c-bg-light); }
.rikon-issues-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 24px; }
.issue-cards { display: flex; flex-direction: column; gap: 16px; }
.issue-card {
  background: #fff; border-radius: 12px; padding: 24px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.issue-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-navy); color: var(--c-gold-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.issue-card-title { font-size: 16px; font-weight: 700; color: var(--c-navy); margin: 0 0 10px; }
.issue-card-desc { font-size: 14px; color: var(--c-text-sub); line-height: 1.8; margin: 0; }

/* --- Phase C shared compare sections --- */
.phasec-compare { background: var(--c-white); width: 100%; border-collapse: collapse; }
.phasec-compare th,
.phasec-compare td { width: auto; }
.phasec-compare td {
  padding: 12px;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
  color: var(--c-text);
}
.phasec-compare td:first-child {
  text-align: left;
  font-weight: 600;
  background: var(--c-bg-warm);
}
.phasec-compare-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 24px; }
.phasec-compare-note { margin-top: 16px; font-size: 14px; color: var(--c-text-sub); line-height: 1.8; }

/* --- kinrin Disclosure + Compare sections --- */
.kinrin-reassure { padding: 40px 0; background: var(--c-navy); color: #fff; }
.kinrin-disclosure { background: var(--c-bg-light); }
.kinrin-disclosure-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 24px; }
.kinrin-disclosure-note {
  margin-top: 24px; padding: 16px 20px; border-left: 3px solid var(--c-gold-dark, #9A7028);
  background: #fff; font-size: 14px; color: var(--c-text-sub); line-height: 1.8;
}
.kinrin-disclosure-note strong { color: var(--c-navy); }
.kinrin-compare { background: var(--c-white); }
.kinrin-compare-lead { font-size: 16px; color: var(--c-text-sub); line-height: 1.8; margin-bottom: 24px; }
.kinrin-compare-note { margin-top: 16px; font-size: 14px; color: var(--c-text-sub); line-height: 1.8; }
.compare-th-sub {
  background: var(--c-bg-light, #F0EDE6); color: var(--c-text); font-weight: 700;
  padding: 14px 12px; font-size: 13px; text-align: center;
  border-bottom: 2px solid var(--c-border);
}

/* kinrin compare: cards (mobile) / table (tablet+) */
.lp-compare-table-wrap { display: none; }
.lp-compare-cards { display: flex; flex-direction: column; gap: 16px; }
.lp-ccard {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.lp-ccard-head {
  padding: 14px 20px; font-size: 16px; font-weight: 700; color: #fff; margin: 0;
}
.lp-ccard--gold .lp-ccard-head { background: var(--c-gold); }
.lp-ccard--navy .lp-ccard-head { background: var(--c-navy); }
.lp-ccard--sub .lp-ccard-head { background: #6B7A8D; }
.lp-ccard-fit {
  padding: 10px 20px 0; font-size: 13px; font-weight: 600;
  color: var(--c-text-sub); margin: 0;
}
.lp-ccard-dl {
  padding: 8px 20px 20px; margin: 0;
  display: grid; grid-template-columns: auto 1fr; gap: 6px 16px;
  font-size: 14px; line-height: 1.8;
}
.lp-ccard-dl dt {
  color: var(--c-text-muted); font-weight: 500;
  padding: 6px 0; border-bottom: 1px solid var(--c-border);
}
.lp-ccard-dl dd {
  margin: 0; color: var(--c-text); padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
}
.lp-ccard-dl dt:last-of-type,
.lp-ccard-dl dd:last-of-type { border-bottom: none; }

@media (min-width: 600px) {
  .reassure-chips { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 20px; }
  .reassure-chip { font-size: 15px; padding: 14px 16px; }
  .issue-cards { max-width: 560px; margin-left: auto; margin-right: auto; }
  .urgency-chips { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 20px; }
  .urgency-chip { font-size: 15px; padding: 14px 16px; }
}
@media (min-width: 900px) {
  .loan-urgency { padding: 48px 0; }
  .urgency-chips { max-width: 560px; gap: 14px; }
  .urgency-chip { font-size: 16px; padding: 16px 20px; }
  .privacy-promise { max-width: 560px; margin-left: auto; margin-right: auto; padding: 24px; }
  .privacy-promise-body strong { font-size: 16px; }
  .loan-compare-lead { font-size: 16px; }
  .rikon-reassure { padding: 48px 0; }
  .reassure-lead { font-size: 19px; }
  .reassure-sub { font-size: 15px; }
  .reassure-chips { max-width: 560px; gap: 14px; }
  .reassure-chip { font-size: 16px; padding: 16px 20px; }
  .rikon-issues-lead { font-size: 16px; }
  .kinrin-reassure { padding: 48px 0; }
  .kinrin-disclosure-lead { font-size: 16px; }
  .kinrin-disclosure-note { font-size: 15px; }
  .kinrin-compare-lead { font-size: 16px; }
  .kinrin-compare-note { font-size: 15px; }
  .phasec-compare-lead { font-size: 16px; }
  .phasec-compare-note { font-size: 15px; }
  .lp-compare-cards { display: none; }
  .lp-compare-table-wrap { display: block; overflow-x: auto; margin-bottom: 24px; }
  .compare-th-sub { font-size: 14px; }
  .issue-cards { flex-direction: row; gap: 20px; max-width: 960px; }
  .issue-card { flex: 1; }
  .issue-card-title { font-size: 17px; }
  .issue-card-desc { font-size: 15px; }
  .regrets-lead { font-size: 16px; }
  .regret-list { max-width: 640px; margin-left: auto; margin-right: auto; }
  .regret-body strong { font-size: 16px; }
  .regret-body p { font-size: 15px; }
  .regrets-close { font-size: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   Phase C: LP Individual Enhancement (v114)
   ============================================ */

/* --- lp-reassure: generic reassure section (shukatsu, shisetsu) --- */
.lp-reassure { padding: 40px 0; background: var(--c-navy); color: #fff; }
.reassure-note {
  margin: 20px auto 0; max-width: 360px; padding: 16px 20px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.8);
  text-align: center;
}
.reassure-note strong { color: #fff; }

/* --- lp-cost-alert: akiya cost highlight --- */
.lp-cost-alert { padding: 40px 0; background: var(--c-navy); color: #fff; }
.cost-alert-lead {
  font-size: 17px; font-weight: 700; text-align: center;
  margin-bottom: 8px; line-height: 1.6;
}
.cost-alert-lead .icon { color: var(--c-gold-light); vertical-align: -3px; margin-right: 4px; }
.cost-alert-sub {
  font-size: 14px; text-align: center; color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.cost-alert-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cost-alert-card {
  background: rgba(255,255,255,0.08); border-radius: 10px;
  padding: 20px 16px; text-align: center;
}
.cost-alert-icon {
  width: 40px; height: 40px; margin: 0 auto 10px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cost-alert-icon .icon { color: var(--c-gold-light); }
.cost-alert-label { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cost-alert-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }
.cost-alert-warning {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(227,111,60,0.15); border-left: 3px solid var(--c-gold-light);
  border-radius: 0 8px 8px 0;
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.9);
}
.cost-alert-warning .icon { color: var(--c-gold-light); vertical-align: -3px; margin-right: 4px; }

/* --- lp-expertise: kaigai, jigyou --- */
.lp-expertise { padding: 40px 0; background: var(--c-navy); color: #fff; }
.expertise-lead {
  font-size: 17px; font-weight: 700; text-align: center;
  margin-bottom: 8px; line-height: 1.6;
}
.expertise-lead .icon { color: var(--c-gold-light); vertical-align: -3px; margin-right: 4px; }
.expertise-sub {
  font-size: 14px; text-align: center; color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.expertise-cards { display: flex; flex-direction: column; gap: 12px; }
.expertise-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  padding: 20px;
}
.expertise-card-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.expertise-card-icon .icon { color: var(--c-gold-light); }
.expertise-card-body { flex: 1; }
.expertise-card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.expertise-card-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* --- Responsive: 600px --- */
@media (min-width: 600px) {
  .lp-reassure { padding: 44px 0; }
  .reassure-note { max-width: 480px; }
  .lp-cost-alert { padding: 44px 0; }
  .cost-alert-grid { gap: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .lp-expertise { padding: 44px 0; }
  .expertise-cards { max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* --- Responsive: 900px --- */
@media (min-width: 900px) {
  .lp-reassure { padding: 48px 0; }
  .reassure-note { max-width: 560px; font-size: 15px; }
  .lp-cost-alert { padding: 48px 0; }
  .cost-alert-lead { font-size: 19px; }
  .cost-alert-sub { font-size: 15px; }
  .cost-alert-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 800px; }
  .cost-alert-card { padding: 24px 16px; }
  .cost-alert-label { font-size: 15px; }
  .cost-alert-desc { font-size: 14px; }
  .cost-alert-warning { max-width: 640px; margin-left: auto; margin-right: auto; font-size: 15px; }
  .lp-expertise { padding: 48px 0; }
  .expertise-lead { font-size: 19px; }
  .expertise-sub { font-size: 15px; }
  .expertise-cards { flex-direction: row; gap: 20px; max-width: 960px; }
  .expertise-card { flex: 1; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .expertise-card-icon { width: 56px; height: 56px; }
  .expertise-card-title { font-size: 16px; }
  .expertise-card-desc { font-size: 15px; }
}

/* ============================================
   Phase D: LP Content Enrichment (v115)
   ============================================ */

/* --- Self-Check diagnostic items --- */
.lp-selfcheck { padding: 0; margin-bottom: 24px; }
.selfcheck-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--c-bg-light, #F0EDE6);
  border-radius: 8px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.7; color: var(--c-text);
}
.selfcheck-icon {
  flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px;
  border: 2px solid var(--c-gold); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold); font-size: 14px; font-weight: 700;
}
.selfcheck-result {
  margin-top: 16px; padding: 16px 20px;
  background: var(--c-navy); color: #fff; border-radius: 10px;
  font-size: 14px; line-height: 1.8; text-align: center;
}
.selfcheck-result strong { color: var(--c-gold-light); }

/* --- Vertical Timeline --- */
.lp-timeline-list { padding-left: 0; margin: 0; list-style: none; position: relative; }
.lp-timeline-list::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 2px; background: var(--c-border, #E0DAD0);
}
.tl-item {
  position: relative; padding-left: 44px; padding-bottom: 24px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 8px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-gold); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--c-gold);
}
.tl-item--alert .tl-dot { background: #E57373; box-shadow: 0 0 0 2px #E57373; }
.tl-item--muted .tl-dot { background: var(--c-border); box-shadow: 0 0 0 2px var(--c-border); }
.tl-label {
  font-size: 13px; font-weight: 600; color: var(--c-gold);
  margin-bottom: 2px;
}
.tl-item--alert .tl-label { color: #E57373; }
.tl-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.tl-desc { font-size: 14px; color: var(--c-text-sub); line-height: 1.7; margin: 0; }

/* --- Info Note / Callout --- */
.lp-info-note {
  padding: 20px; background: var(--c-bg-light, #F0EDE6);
  border-radius: 10px; margin-bottom: 16px;
}
.lp-info-note-title {
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.lp-info-note-title .icon { color: var(--c-gold); flex-shrink: 0; }
.lp-info-note-body { font-size: 14px; color: var(--c-text-sub); line-height: 1.8; margin: 0; }

/* --- Compact Cost Table --- */
.lp-cost-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 16px; }
.lp-cost-table th, .lp-cost-table td { padding: 12px 10px; border-bottom: 1px solid var(--c-border); text-align: left; vertical-align: top; }
.lp-cost-table th { font-weight: 600; color: var(--c-text-sub); width: 35%; font-size: 13px; background: var(--c-bg-light, #F0EDE6); }
.lp-cost-table td { line-height: 1.7; }

/* --- Decision Cards (flowchart-like) --- */
.lp-decision-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.decision-card {
  border: 1px solid var(--c-border); border-radius: 10px;
  overflow: hidden;
}
.decision-card-head {
  padding: 12px 16px; font-size: 14px; font-weight: 700;
  background: var(--c-bg-light, #F0EDE6); color: var(--c-text);
  display: flex; align-items: center; gap: 8px;
}
.decision-card-head .icon { color: var(--c-gold); flex-shrink: 0; }
.decision-card-body {
  padding: 14px 16px; font-size: 14px; line-height: 1.8;
  color: var(--c-text-sub);
}

/* --- Section sub-lead (used after section-title) --- */
.section-sub-lead {
  font-size: 14px; color: var(--c-text-sub); line-height: 1.8;
  text-align: center; margin-bottom: 24px;
}

/* --- Phase D Responsive: 600px --- */
@media (min-width: 600px) {
  .selfcheck-item { font-size: 15px; padding: 16px 20px; }
  .selfcheck-result { font-size: 15px; }
  .lp-timeline-list { margin-bottom: 16px; }
  .lp-info-note { margin-bottom: 16px; }
  .lp-cost-table { margin-bottom: 16px; }
  .lp-decision-cards { }
}

/* --- Phase D Responsive: 900px --- */
@media (min-width: 900px) {
  .selfcheck-item { font-size: 15px; }
  .tl-title { font-size: 16px; }
  .tl-desc { font-size: 15px; }
  .lp-info-note { }
  .lp-info-note-title { font-size: 16px; }
  .lp-info-note-body { font-size: 15px; }
  .lp-cost-table { font-size: 15px; }
  .lp-cost-table th { font-size: 14px; }
  .lp-decision-cards { flex-direction: row; }
  .decision-card { flex: 1; }
  .section-sub-lead { font-size: 15px; }
}

/* ── LP FAQ ── */
.lp-faq-item {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  margin-bottom: 10px;
}
.lp-faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  list-style: none;
  line-height: 1.6;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q .icon {
  flex-shrink: 0;
  stroke: var(--c-gold);
}
.lp-faq-q::after {
  content: '';
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-text-muted);
  border-bottom: 2px solid var(--c-text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.lp-faq-item[open] .lp-faq-q::after {
  transform: rotate(-135deg);
}
.lp-faq-a {
  padding: 0 16px 16px 46px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.8;
}
