/* ============================================================
   NAcode SP — Mobile-First Premium LP
   ============================================================ */

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --bg:           #FDFCFB;
  --gold:         #C8A97E;
  --gold-mid:     #D4B896;
  --gold-light:   #EAD9C2;
  --gold-pale:    #F7F0E6;
  --pink:         #C4969A;
  --pink-mid:     #D4ABAF;
  --pink-light:   #EDD9DA;
  --pink-pale:    #FAF4F4;
  --dark:         #241E1B;
  --text:         #3D3633;
  --muted:        #8A807A;
  --border:       #EAE0D8;
  --border-mid:   #DDD0C6;

  --serif:        "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:         "Noto Sans JP", "Hiragino Sans", sans-serif;

  --radius-sm:    12px;
  --radius-md:    18px;
  --radius-lg:    24px;
  --radius-full:  100px;

  --campaign-cream:    #FDFBF7;
  --campaign-terra:    #C06C4D;
  --campaign-ink:      #4A433F;
  --campaign-ink-soft: #6E6560;
  --campaign-line:     #BBA896;
  --campaign-line-2:   #D4C9BB;
  --campaign-leaf:     #9A8E84;
  --campaign-spark:    #C8A97E;
}
/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

html,
body {
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ol, ul { list-style: none; }

/* ─── Fixed CTA ──────────────────────────────────────────── */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 24px max(20px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(
    to top,
    rgba(253, 252, 251, 0.98) 55%,
    rgba(253, 252, 251, 0)
  );
  pointer-events: none;
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(120deg, #C4969A 0%, #B5797E 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow:
    0 8px 28px rgba(196, 150, 154, 0.38),
    0 2px 6px rgba(196, 150, 154, 0.2);
  pointer-events: all;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fixed-cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(196, 150, 154, 0.28);
}

/* ─── Section Shell ──────────────────────────────────────── */
.section { padding: 80px 0; }

.sec-inner {
  padding-inline: 28px;
  max-width: 560px;
  margin-inline: auto;
}

/* Eyebrow (LABEL with rules) */
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sec-rule {
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}
.sec-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 400;
}

.sec-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6.5vw, 2.1rem);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 36px;
}

/* ============================================================
   ① HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1510;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
html.hero-media-pending .hero-bg picture {
  visibility: hidden;
}
html.hero-media-ready .hero-bg picture {
  visibility: visible;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 85% at 0% 0%,
      rgba(12, 9, 7, 0.55) 0%,
      rgba(12, 9, 7, 0.18) 42%,
      transparent 68%
    ),
    linear-gradient(
      170deg,
      rgba(20, 14, 10, 0.22) 0%,
      rgba(20, 14, 10, 0.08) 28%,
      rgba(20, 14, 10, 0.52) 62%,
      rgba(15, 10, 6, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-inline: 28px;
}

/* Header */
.hero-header {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: max(52px, calc(env(safe-area-inset-top, 0px) + 36px));
  margin-bottom: auto;
}
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: min(340px, 100vw);
  background: radial-gradient(
    ellipse 138% 118% at 0% 0%,
    rgba(8, 6, 5, 0.66) 0%,
    rgba(8, 6, 5, 0.42) 36%,
    rgba(8, 6, 5, 0.2) 60%,
    rgba(8, 6, 5, 0.08) 78%,
    transparent 96%
  );
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}
.hero-brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.25),
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.8);
}
.hero-brand-sub {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: rgba(247, 240, 230, 0.92);
  margin-top: 6px;
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.65);
}

/* Body */
.hero-body {
  padding-bottom: 36px;
}
/* iOS 実機ではヒーロー文言が上に詰まって見えるため、文言ブロックのみ少し下げる */
@supports (-webkit-touch-callout: none) {
  .hero-body {
    transform: translateY(34px);
    padding-bottom: 18px;
  }
  .hero-scroll {
    padding-bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  }
}
.hero-eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-left: 2px;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 18px;
}
html[data-hero-type="c"] .hero-heading {
  font-size: clamp(1.38rem, 5.6vw, 2.05rem);
  line-height: 1.38;
  letter-spacing: 0.055em;
}
html[data-hero-type="b"] .hero-heading {
  font-size: clamp(1.5rem, 6.5vw, 2.65rem);
  line-height: 1.36;
  letter-spacing: 0.055em;
}
.hero-lead {
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.hero-free {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}
.hero-free em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(234, 217, 194, 0.5);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.14em;
  min-height: 52px;
  padding: 0 36px 1px;
  border-radius: var(--radius-full);
  transition: background 0.3s, border-color 0.3s;
}
.hero-cta-btn:active {
  background: rgba(255, 255, 255, 0.14);
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(18px);
  padding-bottom: max(32px, calc(env(safe-area-inset-bottom, 0px) + 20px));
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(234, 217, 194, 0.65), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  30%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero-scroll-label {
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  color: rgba(234, 217, 194, 0.5);
}

/* ============================================================
   CONCEPT TEASER（Hero直下）
   ============================================================ */
.concept-teaser {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 28px 44px;
}

.concept-teaser-inner {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.concept-teaser-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
}

.concept-teaser-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-inline: 4px;
}

.concept-teaser-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 4.8vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.concept-teaser-link {
  display: inline-block;
  margin-top: 4px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--gold-light);
  background: none;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  transition: border-color 0.2s, color 0.2s;
}

.concept-teaser-link::before,
.concept-teaser-link::after {
  content: none !important;
  display: none !important;
}

.concept-teaser-link:active {
  color: var(--muted);
  border-bottom-color: var(--border-mid);
}

/* ============================================================
   MEDIA
   ============================================================ */
.media-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.media-strip-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.8em;
  color: var(--muted);
  margin: 0 0 10px;
}

.media-marquee {
  overflow: hidden;
}

.media-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: mediaMarquee 34s linear infinite;
}

.media-logo {
  width: 128px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-right: 14px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.media-logo-dark {
  background: #1f1b1a;
}

.media-logo img {
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
}

@keyframes mediaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-1136px); }
}

@media (prefers-reduced-motion: reduce) {
  .media-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding-inline: 20px;
  }
}

/* ============================================================
   ①.5 PARTY STYLE DIAGNOSIS
   ============================================================ */
.party-style-sec {
  padding: 56px 0 64px;
  background: var(--pink-pale);
  border-bottom: 1px solid var(--border);
}

.party-style-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.party-style-frame {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  margin-bottom: 28px;
}

.party-style-rule {
  display: block;
  height: 1px;
  background: var(--gold-light);
}

.party-style-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-inline: 8px;
}

.party-style-kicker {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--muted);
}

.party-style-heading {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5.8vw, 1.85rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.party-style-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, #C4969A 0%, #B5797E 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  box-shadow:
    0 8px 24px rgba(196, 150, 154, 0.32),
    0 2px 6px rgba(196, 150, 154, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.party-style-cta:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(196, 150, 154, 0.26);
}

/* ============================================================
   ② PROBLEMS
   ============================================================ */
.problems-sec {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.problems-variant { display: block; }
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.problem-card:active { border-color: var(--gold-light); }

.problem-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card h3 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 5px;
}
.problem-card p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   ③ STEPS
   ============================================================ */
.steps-sec {
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.steps-list { display: flex; flex-direction: column; }

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.step-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.step-connector {
  display: block;
  width: 1px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, var(--gold-light) 40%, transparent);
  margin-top: 8px;
}

.step-body {
  padding-top: 2px;
  padding-bottom: 36px;
  flex: 1;
}
.step-item.last .step-body { padding-bottom: 0; }

.step-body h3 {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================================
   ④ LINE
   ============================================================ */
.line-sec {
  background: var(--pink-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.line-planner-wrap {
  position: relative;
  width: min(100%, 92px);
  margin: 0;
  order: 1;
  flex: 0 0 92px;
  transform: translateX(16px);
}

.line-planner-wrap picture {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.line-planner-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 52%;
  border: 1px solid #d7c8b2;
  background: var(--white);
}

.line-planner-label {
  margin-bottom: 6px;
  width: max-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  color: #b7898e;
  font-family: var(--serif);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.line-heading { margin-bottom: 12px; }
.pink-text { color: var(--pink); }

.line-note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.line-support-row {
  display: flex;
  align-items: end;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
}

.line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  order: 2;
  flex: 0 1 auto;
  transform: translateX(3rem);
}
.line-tag {
  font-size: 0.66rem;
  color: var(--muted);
  padding: 5px 13px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  background: var(--white);
  white-space: nowrap;
}
.line-tag::before {
  content: "✓ ";
  color: var(--pink-mid);
  font-weight: 700;
}

.line-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(196, 150, 154, 0.08);
}

.line-footnote {
  margin-top: 10px;
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.line-card-shot {
  display: block;
  width: 100%;
  height: auto;
}

.line-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.line-cta-note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.85;
  text-align: center;
  margin: 0;
}

.line-cta-stack .line-cta-wide {
  margin-top: 0;
}

.line-cta-wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--radius-full);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  background: #06c755;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(6, 199, 85, 0.28);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.line-cta-wide:hover {
  background: #05b34c;
  box-shadow: 0 6px 22px rgba(6, 199, 85, 0.42);
}
.line-cta-wide:active {
  transform: scale(0.98);
}
.line-cta-wide-main {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.line-cta-faq {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-mid);
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 10px rgba(36, 30, 27, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.line-cta-faq:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 16px rgba(36, 30, 27, 0.08);
}

.line-cta-faq:active {
  transform: scale(0.98);
}

.line-qr {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border: 1px dashed var(--border-mid);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.56rem;
  color: var(--muted);
  text-align: center;
}

.line-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.line-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.55;
}
.line-logo-btn {
  background: #06c755;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
}

/* ============================================================
   ⑤ FEATURES
   ============================================================ */
.features-sec {
  background: var(--white);
}

.feature-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 26px 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:last-child { border-bottom: 0; }
.feature-card:active { background: var(--bg); }

.feat-icon {
  width: 36px;
  height: auto;
  margin-bottom: 4px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.feature-card p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.82;
}

/* ============================================================
   ⑥ COMPARISON
   ============================================================ */
.comparison-sec {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.comp-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comp-table th,
.comp-table td {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 6px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.comp-table tr:last-child th,
.comp-table tr:last-child td {
  border-bottom: 0;
}

.comp-table th:last-child,
.comp-table td:last-child {
  border-right: 0;
}

.comp-table thead th {
  background: var(--gold-pale);
  color: var(--dark);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.comp-table tbody th {
  width: 22%;
  background: var(--bg);
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}

.comp-table .is-best {
  background: var(--pink-pale);
  color: var(--pink);
}

/* ============================================================
   ⑦ DEMO
   ============================================================ */
.demo-sec {
  background: var(--bg);
  padding: 72px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.demo-head {
  text-align: center;
}

.demo-heading {
  margin-bottom: 0;
}

.demo-heading span {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.demo-phone {
  width: clamp(210px, 64vw, 270px);
  background: #1a1714;
  border-radius: 30px;
  box-shadow:
    0 0 0 1px #3a3530,
    0 0 0 2px #111,
    0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-phone-top {
  display: flex;
  justify-content: center;
  padding: 4px 0 5px;
}

.demo-phone-speaker {
  width: 48px;
  height: 5px;
  background: #2e2a26;
  border-radius: 3px;
}

.demo-phone-screen {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.demo-video {
  display: block;
  width: 100%;
  max-height: 60svh;
  object-fit: cover;
}

.demo-phone-bottom {
  display: flex;
  justify-content: center;
  padding: 7px 0 4px;
}

.demo-phone-home {
  width: 36px;
  height: 5px;
  background: #2e2a26;
  border-radius: 3px;
}

/* ============================================================
   ⑧ VOICE
   ============================================================ */
.voice-sec {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  position: relative;
}

.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-light);
  pointer-events: none;
}

.voice-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--dark);
  padding-top: 20px;
  margin-bottom: 12px;
}

.voice-body {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text);
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.voice-avatar--initial {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--gold-pale);
  object-fit: unset;
}

.voice-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.voice-name {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.voice-profile {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   ⑧ ENTRY
   ============================================================ */
.entry-sec {
  background: var(--white);
  border-top: 1px solid var(--border);
  scroll-margin-top: clamp(16px, 4vw, 32px);
}

.entry-sec .sec-heading {
  margin-bottom: 28px;
}

.entry-note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.85;
  text-align: center;
  margin: -16px 0 24px;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.entry-campaign-card {
  margin-bottom: 2px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.entry-campaign-card__picture {
  display: block;
}

.entry-campaign-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.entry-form.is-hidden,
.entry-confirm.is-hidden {
  display: none;
}

.entry-confirm {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.step-head {
  text-align: center;
  margin-bottom: 2px;
}

.step-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-full);
  background: var(--pink-pale);
  color: var(--pink);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field span,
.radio-group legend {
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.radio-group legend {
  display: block;
  width: 100%;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  line-height: 1.45;
  white-space: normal;
  writing-mode: horizontal-tb;
}

.field small,
.radio-group small,
.consent-check small {
  color: var(--pink);
  font-size: 0.66rem;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink-mid);
  box-shadow: 0 0 0 3px rgba(196, 150, 154, 0.16);
}

.field-note {
  margin-top: -10px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group label,
.consent-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.8rem;
}

.radio-group input,
.consent-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
  flex: 0 0 auto;
}

.button-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, #C4969A 0%, #B5797E 100%);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  padding: 16px 22px;
  box-shadow: 0 8px 26px rgba(196, 150, 154, 0.32);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), opacity 160ms ease;
}

.button-submit:active:not(:disabled) {
  transform: scale(0.97);
}

.button-submit:disabled {
  opacity: 0.68;
}

.button-submit.is-sending:disabled {
  opacity: 1;
}

.button-submit-spinner {
  display: none;
  width: 1.05em;
  height: 1.05em;
  border: 2px solid rgb(255 255 255 / 0.38);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: submit-spin 0.55s linear infinite;
  flex: 0 0 auto;
}

.button-submit.is-sending .button-submit-spinner {
  display: block;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-submit-spinner {
    animation: none;
    opacity: 0.75;
  }

  .button-submit:active:not(:disabled) {
    transform: none;
  }
}

.entry-submit-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-submit-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.confirm-note {
  margin: -2px 0 0;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.8;
  text-align: center;
}

.confirm-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.confirm-list div:last-child { border-bottom: 0; }

.confirm-list dt {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.confirm-list dd {
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.submit-message {
  min-height: 1.7em;
  color: var(--pink);
  font-size: 0.76rem;
  line-height: 1.7;
  text-align: center;
  white-space: pre-line;
}

.submit-message.is-sending {
  display: grid;
  place-items: center;
  min-height: 3.2em;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--pink-pale);
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.submit-message.is-complete {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.entry-confirm.is-complete .confirm-note,
.entry-confirm.is-complete .confirm-actions {
  display: none;
}

.confirm-actions {
  display: grid;
  gap: 10px;
}

.button-secondary {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 14px 22px;
}

.button-secondary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ============================================================
   DESKTOP (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .sec-inner { padding-inline: 40px; }

  .problem-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .feature-card:last-child { border-right: 0; }

  .gallery-photo { max-width: 380px; }
  .gallery-photo img { height: 390px; }
}

@media (min-width: 960px) {
  .section { padding: 100px 0; }
  .hero-heading { font-size: 3.4rem; }
  html[data-hero-type="c"] .hero-heading {
    font-size: 2.05rem;
    line-height: 1.36;
  }
  html[data-hero-type="b"] .hero-heading {
    font-size: 2.75rem;
    line-height: 1.34;
  }
}

/* ============================================================
   FAQ（単体ページ）— SP LP と同一トークン・タイポ
   ============================================================ */
html.faq-page,
html.faq-page body {
  background: var(--bg);
}

.faq-main {
  padding-bottom: max(100px, calc(96px + env(safe-area-inset-bottom, 0px)));
}

.faq-head {
  padding-top: 48px;
  padding-bottom: 32px;
}

.faq-header {
  margin-bottom: 26px;
  text-align: center;
}

.faq-header-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.faq-header-link:focus-visible {
  outline: 2px solid var(--pink-mid);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-brand {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.8vw, 1.42rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--dark);
  line-height: 1.2;
}

.faq-brand-sub {
  margin-top: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.faq-head .sec-heading {
  text-align: center;
  margin-bottom: 18px;
}

.faq-intro {
  margin: 0 auto;
  max-width: 100%;
  padding-inline: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.faq-list-sec {
  padding-top: 0;
  padding-bottom: 88px;
}

.faq-list-sec .sec-inner {
  max-width: 600px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: 0 2px 14px rgba(36, 30, 27, 0.05);
}

.faq-item h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 3.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

.faq-item p + p {
  margin-top: 12px;
}

/* ============================================================
   CONCEPT（単体ページ）
   ============================================================ */
html.concept-page,
html.concept-page body {
  background: var(--bg);
}

html.concept-page {
  scroll-behavior: smooth;
}

.concept-main {
  padding-bottom: max(48px, calc(40px + env(safe-area-inset-bottom, 0px)));
}

.concept-head {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 14vw, 84px);
  padding-bottom: clamp(34px, 8vw, 54px);
}

.concept-head::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 50%;
  width: min(70vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 66%);
  transform: translateX(-50%);
  pointer-events: none;
}

.concept-header {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
}

.concept-header-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.concept-header-link:focus-visible {
  outline: 2px solid var(--pink-mid);
  outline-offset: 4px;
  border-radius: 4px;
}

.concept-brand {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.8vw, 1.42rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--dark);
  line-height: 1.2;
}

.concept-brand-sub {
  margin-top: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.concept-head .sec-heading {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  z-index: 1;
}

.concept-title {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--dark);
}

.concept-body-sec {
  padding-top: 0;
  padding-bottom: clamp(56px, 14vw, 82px);
}

.concept-body-inner {
  max-width: 640px;
  margin-inline: auto;
}

.concept-article {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.concept-block-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1rem, 3.4vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.concept-article p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.055em;
  color: var(--text);
}

.concept-article .concept-stanza {
  margin: 0;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
  hanging-punctuation: allow-end;
}

.concept-article .concept-stanza:nth-child(4n + 1) {
  color: var(--dark);
}

.concept-article .concept-stanza:nth-child(4n + 2) {
  color: #665952;
}

@supports (word-break: auto-phrase) {
  .concept-article .concept-stanza {
    word-break: auto-phrase;
  }
}

.concept-keep {
  white-space: nowrap;
}

.concept-article .concept-stanza + .concept-stanza {
  margin-top: clamp(2.7em, 9vw, 3.45em);
}

.concept-article .concept-stanza--closing {
  margin-top: clamp(3.4em, 11vw, 4.4em);
  font-size: clamp(1.08rem, 4.5vw, 1.28rem);
  line-height: 2.05;
  color: var(--dark);
}

.concept-lines {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.concept-lines li {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text);
}

.concept-lines li + li {
  margin-top: 4px;
}

.concept-closing {
  margin-top: 36px;
}

.concept-signoff {
  margin-top: 8px;
  padding: 28px 8px 4px;
  text-align: right;
}

.concept-signoff-date {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.concept-signoff-brand {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--dark);
}

.concept-foot {
  padding-top: 0;
  padding-bottom: 40px;
}

.concept-foot .sec-inner {
  display: flex;
  justify-content: center;
  max-width: 400px;
}

.concept-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 32px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  transition:
    border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.concept-back-btn:active {
  transform: scale(0.98);
}

.concept-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 900ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: calc(min(var(--reveal-index, 0), 4) * 70ms);
  will-change: opacity, transform;
}

.concept-title.concept-reveal {
  transform: translateY(14px);
  transition-duration: 1050ms;
}

.concept-stanza.concept-reveal {
  transform: translateY(22px);
}

.concept-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.concept-page {
    scroll-behavior: auto;
  }

  .concept-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ============================================================
   ② MERIT (3 circles)
   ============================================================ */
.merit-circle-sec {
  padding: 56px 0 40px;
  background: var(--white);
}

.merit-circle-list {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.merit-circle {
  flex: 1 1 0;
  min-width: 0;
  max-width: 160px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  padding: 4px;
}

.merit-circle span {
  font-family: var(--serif);
  font-size: clamp(0.64rem, 4.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ============================================================
   ③ NAcodeでできること (flow)
   ============================================================ */
.flow-sec {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.flow-diagram {
  display: flex;
  justify-content: center;
}

.flow-diagram-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ============================================================
   ③ EXAMPLE (lp-phone / theme=a "オファーイメージ" section, ported)
   ============================================================ */
.offer-example-sec {
  background: var(--gold-pale);
  border-top: 0;
  border-bottom: 0;
}

.offer-wish-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}

.offer-wish-label {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 0.94rem;
  color: var(--dark);
  text-align: center;
}

.offer-wish-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-wish-list li {
  position: relative;
  padding-left: 1.1em;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text);
}

.offer-wish-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.offer-disclosure {
  margin-top: 14px;
  text-align: center;
}

.offer-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 52px;
  padding: 14px 28px;
  margin-inline: auto;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  background: var(--white);
  appearance: none;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.offer-toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.offer-disclosure.is-open .offer-toggle::after {
  transform: translateY(2px) rotate(-135deg);
}

.offer-toggle:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 4px 14px rgba(200, 169, 126, 0.08);
}

.offer-toggle:active {
  transform: scale(0.985);
}

.offer-result-wrap {
  position: relative;
  margin-top: -10px;
  padding-top: 16px;
  max-height: 92px;
  overflow: hidden;
  transition: max-height 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.offer-result-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(247, 240, 230, 0) 0%,
      rgba(247, 240, 230, 0.18) 42%,
      rgba(247, 240, 230, 0.82) 78%,
      rgba(247, 240, 230, 0.98) 100%
    );
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

.offer-disclosure.is-open .offer-result-wrap {
  max-height: 460px;
}

.offer-disclosure.is-open .offer-result-wrap::after {
  opacity: 0;
}

.offer-result-wrap > .offer-result-list {
  overflow: hidden;
}

.offer-result-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.offer-result-card {
  transform: translateY(0);
  transition:
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 320ms ease-out;
}

.offer-disclosure:not(.is-open) .offer-result-card {
  transform: translateY(-2px);
}

.offer-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px;
}

.offer-result-from {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--dark);
}

.offer-result-price {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.94rem;
  color: var(--gold);
}

.offer-result-body {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ============================================================
   ④ FAQ (lp-phone / theme=a section, ported)
   ============================================================ */
.faq-sec {
  background: var(--white);
  border-top: 0;
}

.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 20px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark);
  user-select: none;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
}

.faq-q-text {
  flex: 1;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-q-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding-bottom: 20px;
}
.faq-a-inner p {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--muted);
  white-space: pre-wrap;
}

/* Shared: inline SVG icons standing in for feature icon images */
.feat-icon-svg { color: #B5797E; }

/* hero-eyebrow badge (scoped to sp_type_c only, to avoid affecting other hero types) */
html[data-hero-type="c"] .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--gold);
  border-radius: var(--radius-full);
  padding: 7px 20px;
  margin-bottom: 16px;
  text-shadow: none;
}
