/* =============================================================
   記事作成代行ウルトラ — インタビュー記事LP (Part 1)
   Built on Shwat Design System (teal-based)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

.iv-lp {
  /* Brand teal */
  --teal-deep:  #03A8A8;
  --teal-dark:  #00A6AC;
  --teal-light: #00C7B0;
  --teal-ink:   #016E70;

  /* Text */
  --text-primary: #545454;
  --text-deep:    #1B1B2B;
  --text-muted:   #808080;

  /* Accent (the "旗印") */
  --accent-red:   #FF4A33;
  --accent-coral: #FF7060;

  /* Surfaces */
  --surface-teal-light: #ECFBFA;
  --surface-teal-pale:  #F1F8F8;
  --surface-coral-light:#FFF1EE;

  /* Lines */
  --line-soft:   #E6E6E6;
  --line-medium: #CCCCCC;

  --white: #FFFFFF;

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Lato", "Helvetica Neue", Arial, sans-serif;

  --content-max: 1080px;
  --content-narrow: 920px;
}

.iv-lp *, .iv-lp *::before, .iv-lp *::after { box-sizing: border-box; }
.iv-lp { margin: 0; padding: 0; }
.iv-lp img { display: block; max-width: 100%; }
.iv-lp button { font: inherit; cursor: pointer; border: none; background: none; }
.iv-lp a { color: inherit; text-decoration: none; }
.iv-lp { scroll-behavior: smooth; }

.iv-lp {
  font-family: var(--font-jp);
  color: var(--text-primary);
  background: var(--white);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}

.iv-lp .container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.iv-lp .container-narrow { max-width: var(--content-max); }

/* ---- Buttons ---- */
.iv-lp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: opacity 150ms ease, transform 150ms ease, background 150ms ease;
  white-space: nowrap;
}
.iv-lp .btn-cta {
  background: var(--accent-red);
  color: var(--white);
  padding: 22px 56px;
  font-size: 20px;
  min-width: 320px;
}
.iv-lp .btn-cta:hover { opacity: 0.85; }
.iv-lp .btn-cta .arrow { font-family: var(--font-en); font-weight: 900; }

.iv-lp .btn-teal {
  background: var(--teal-deep);
  color: var(--white);
  padding: 18px 44px;
  font-size: 17px;
  min-width: 280px;
}
.iv-lp .btn-teal:hover { opacity: 0.85; }

/* =============================================================
   FV
   ============================================================= */
.iv-lp .fv {
  position: relative;
  background: var(--surface-teal-pale);
  padding: 28px 0 72px;
  overflow: hidden;
}
.iv-lp .fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(245,250,250,0.85) 0%, rgba(245,250,250,0.78) 60%, rgba(245,250,250,0.92) 100%),
    url('https://shwat.jp/ultra/wp-content/uploads/2024/10/%E5%B0%8E%E5%85%A5%E4%BA%8B%E4%BE%8B%E3%82%A4%E3%83%B3%E3%82%BF%E3%83%93%E3%83%A5%E3%83%BC%E8%A8%98%E4%BA%8B%E3%81%AE%E8%83%8C%E6%99%AF.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}
.iv-lp .fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(0,199,176,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 80%, rgba(3,168,168,0.10) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(3,168,168,0.025) 0 2px, transparent 2px 10px);
  pointer-events: none;
}
.iv-lp .fv > * { position: relative; }

/* large background numeral (DS pattern) */
.iv-lp .fv-bgnum {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 280px;
  line-height: 0.85;
  color: var(--teal-light);
  opacity: 0.08;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Header */
.iv-lp .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 44px;
}
.iv-lp .site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.iv-lp .site-logo img {
  width: 38px; height: 38px;
}
.iv-lp .site-logo .name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 20px;
  color: var(--text-deep);
  letter-spacing: 0.04em;
  line-height: 1;
}
.iv-lp .site-logo .name em {
  font-style: normal;
  color: var(--teal-deep);
}
.iv-lp .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.iv-lp .header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.iv-lp .header-tel .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.iv-lp .header-tel .hours {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.iv-lp .header-cta {
  background: var(--accent-red);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: opacity 150ms ease;
}
.iv-lp .header-cta:hover { opacity: 0.85; }

/* H1 small label */
.iv-lp .fv-h1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.08em;
  background: var(--white);
  border: 1px solid var(--surface-teal-light);
  padding: 10px 20px;
  border-radius: 0;
  margin: 0 0 32px;
}
.iv-lp .fv-h1::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--teal-deep);
}

.iv-lp .fv-catch {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--text-deep);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.iv-lp .fv-catch .line { display: block; }
.iv-lp .fv-catch .accent { color: var(--teal-deep); }
.iv-lp .fv-catch .pro {
  background: linear-gradient(transparent 60%, var(--teal-light) 60%, var(--teal-light) 92%, transparent 92%);
  padding: 0 6px;
  color: var(--text-deep);
}

.iv-lp .fv-lead {
  max-width: 920px;
  font-size: 19px;
  line-height: 2.0;
  color: var(--text-primary);
  margin: 0 0 56px;
}
.iv-lp .fv-lead .em { color: var(--teal-deep); font-weight: 700; }
.iv-lp .fv-lead .price { color: var(--accent-red); font-weight: 700; }

/* 3 cards */
.iv-lp .fv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 56px;
  list-style: none;
  padding: 0;
  padding-inline-start: 0;
}
.iv-lp .fv-card {
  background: var(--white);
  border: 1px solid var(--surface-teal-light);
  padding: 32px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 220px;
  position: relative;
}
.iv-lp .fv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal-deep);
}
.iv-lp .fv-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 11px;
  color: var(--teal-deep);
  letter-spacing: 0.12em;
}
.iv-lp .fv-card .label {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  text-wrap: balance;
  margin-top: 14px;
}
.iv-lp .fv-card .value-wrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.iv-lp .fv-card .yen, .iv-lp .fv-card .num {
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--accent-red);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.iv-lp .fv-card .yen { font-size: 42px; }
.iv-lp .fv-card .unit {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-deep);
}
.iv-lp .fv-card .word {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 38px;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
  line-height: 1;
}

.iv-lp .fv-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.iv-lp .fv-cta-note {
  font-size: 15px;
  color: var(--text-muted);
}

/* =============================================================
   CTA BAND (black)
   ============================================================= */
.iv-lp .cta-band {
  background: #111111;
  color: var(--white);
  padding: 56px 0;
  position: relative;
}
.iv-lp .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.iv-lp .cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.iv-lp .cta-band-text {
  font-size: 19px;
  line-height: 1.75;
  color: #E0E4EC;
  margin: 0;
}
.iv-lp .cta-band-text strong { color: var(--white); font-weight: 700; }
.iv-lp .cta-band-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.iv-lp .cta-band-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  padding-left: 28px;
  border-left: 1px solid #2A2F38;
}
.iv-lp .cta-band-tel .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #A8AEBA;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.iv-lp .cta-band-tel .label::before {
  content: "TEL";
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--white);
  background: var(--teal-deep);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
}
.iv-lp .cta-band-tel .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.iv-lp .cta-band-tel .hours {
  font-size: 13px;
  color: #A8AEBA;
  margin-top: 4px;
}

/* =============================================================
   PAIN
   ============================================================= */
.iv-lp .pain {
  padding: 100px 0 96px;
  background: var(--white);
  position: relative;
}
.iv-lp .section-header {
  text-align: center;
  margin: 0 0 56px;
}
.iv-lp .section-header .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 14px;
  color: var(--teal-deep);
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.iv-lp .section-header .en::before, .iv-lp .section-header .en::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--teal-deep);
  vertical-align: middle;
  margin: 0 14px;
}
.iv-lp .section-h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  color: var(--text-deep);
  margin: 0;
  letter-spacing: 0.03em;
  text-wrap: balance;
}
.iv-lp .section-h2 .teal { color: var(--teal-deep); }
.iv-lp .section-h2 .red  { color: var(--accent-red); }

.iv-lp .pain-list {
  background: var(--surface-teal-pale);
  border-left: 4px solid var(--teal-deep);
  padding: 36px 44px;
  margin: 0 0 28px;
  list-style: none;
  padding-inline-start: 44px;
  position: relative;
  text-align: left;
}
.iv-lp .pain-list li {
  display: block;
  padding: 18px 0 18px 36px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-primary);
  border-bottom: 1px dashed var(--line-medium);
  text-align: left;
  position: relative;
}
.iv-lp .pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 18px; height: 18px;
  background: var(--teal-deep);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 L22 7 V13 C22 18 17 22 12 22 C7 22 2 18 2 13 V7 Z M11 16 H13 V11 H11 Z M11 8 H13 V10 H11 Z" fill="black"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 L22 7 V13 C22 18 17 22 12 22 C7 22 2 18 2 13 V7 Z M11 16 H13 V11 H11 Z M11 8 H13 V10 H11 Z" fill="black"/></svg>') center/contain no-repeat;
}
.iv-lp .pain-list::before {
  content: "MAIN CONCERNS";
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--teal-deep);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 4px 14px;
}
.iv-lp .pain-list li.__discard {
  display: none;
}
.iv-lp .pain-list li .em-teal { color: var(--teal-deep); font-weight: 700; }
.iv-lp .pain-list li .em-red  { color: var(--accent-red); font-weight: 700; }

.iv-lp .pain-bridge {
  text-align: center;
  font-size: 19px;
  color: var(--text-muted);
  margin: 32px 0 20px;
}
.iv-lp .pain-bridge::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: var(--line-medium);
  margin: 14px auto 0;
}

.iv-lp .pain-list-sub {
  background: var(--surface-teal-light);
  padding: 28px 36px;
  list-style: none;
  padding-inline-start: 36px;
  margin: 0 0 64px;
  text-align: left;
}
.iv-lp .pain-list-sub li {
  display: block;
  padding: 14px 0 14px 22px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  border-bottom: 1px dashed rgba(3,168,168,0.20);
  text-align: left;
  position: relative;
}
.iv-lp .pain-list-sub li:last-child { border-bottom: none; }
.iv-lp .pain-list-sub li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px; height: 8px;
  background: var(--teal-deep);
  border-radius: 50%;
}
.iv-lp .pain-list-sub .em-teal { color: var(--teal-deep); font-weight: 700; }

.iv-lp .pain-conclusion {
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.55;
  color: var(--text-deep);
  letter-spacing: 0.03em;
  margin: 0;
  position: relative;
  padding: 48px 24px 0;
}
.iv-lp .pain-conclusion .brand {
  color: var(--teal-deep);
  background: linear-gradient(transparent 62%, rgba(0,199,176,0.4) 62%);
  padding: 0 6px;
}
.iv-lp .pain-conclusion .solve {
  color: var(--accent-red);
  font-size: 1.15em;
}
.iv-lp .pain-conclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0; height: 0;
  transform: translateX(-50%);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 18px solid var(--surface-teal-light);
}

/* =============================================================
   SOLVE
   ============================================================= */
.iv-lp .solve-section {
  padding: 110px 0 110px;
  background: var(--surface-teal-pale);
  position: relative;
}
.iv-lp .solve-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-deep));
}
.iv-lp .solve-eyebrow {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.iv-lp .solve-eyebrow::before, .iv-lp .solve-eyebrow::after {
  content: "／";
  color: var(--line-medium);
  margin: 0 12px;
  font-weight: 400;
}
.iv-lp .solve-h2 {
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.3;
  color: var(--text-deep);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.iv-lp .solve-h2 .accel {
  color: var(--accent-red);
  font-size: 1.1em;
}
.iv-lp .solve-sub {
  text-align: center;
  font-size: 19px;
  color: var(--text-muted);
  margin: 0 0 56px;
}
.iv-lp .solve-sub::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--teal-deep);
  margin: 24px auto 0;
}

.iv-lp .solve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  padding-inline-start: 0;
}
.iv-lp .solve-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  padding: 24px 26px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  transition: background 150ms ease;
}
.iv-lp .solve-item:hover { background: var(--surface-teal-light); }
.iv-lp .solve-check {
  width: 32px; height: 32px;
  background: var(--teal-deep);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.iv-lp .solve-check svg { width: 18px; height: 18px; }
.iv-lp .solve-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  color: var(--teal-deep);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
.iv-lp .solve-text strong {
  font-weight: 700;
  color: var(--teal-deep);
}
.iv-lp .solve-text .num {
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--accent-red);
  font-size: 1.2em;
}

/* =============================================================
   PART 2 — STRENGTHS (3 alternating points)
   ============================================================= */
.iv-lp .strengths {
  padding: 110px 0 110px;
  background: var(--surface-teal-pale);
  position: relative;
}
.iv-lp .strengths .container { max-width: var(--content-max); }

.iv-lp .strengths-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 24px;
}
.iv-lp .strength-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.iv-lp .strength-row.reverse .strength-text { order: 2; }
.iv-lp .strength-row.reverse .strength-visual { order: 1; }

.iv-lp .strength-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--teal-deep);
  padding-bottom: 6px;
}
.iv-lp .strength-badge .label { font-size: 14px; }
.iv-lp .strength-badge .num { font-size: 32px; line-height: 1; }
.iv-lp .strength-badge .total { font-size: 14px; color: var(--text-muted); margin-left: 2px; }

.iv-lp .strength-h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.45;
  color: var(--text-deep);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.iv-lp .strength-h3 .em { color: var(--teal-deep); }

.iv-lp .strength-body {
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 0 18px;
}
.iv-lp .strength-body .em-teal { color: var(--teal-deep); font-weight: 700; }
.iv-lp .strength-body .em-red  { color: var(--accent-red); font-weight: 700; }

.iv-lp .strength-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}
.iv-lp .strength-stats li {
  background: var(--white);
  border-left: 3px solid var(--teal-deep);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}
.iv-lp .strength-stats li .num {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--accent-red);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.iv-lp .strength-stats li .lbl {
  font-size: 13px;
  color: var(--text-muted);
}

/* Strength visual — real photo support */
.iv-lp .strength-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--surface-teal-light);
}
.iv-lp .strength-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iv-lp .strength-visual.is-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,168,168,0.12) 0%, rgba(0,199,176,0.06) 100%),
    repeating-linear-gradient(45deg, rgba(3,168,168,0.04) 0 6px, transparent 6px 14px);
}
.iv-lp .strength-visual .ph-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 11px;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
  background: var(--white);
  padding: 6px 12px;
}
.iv-lp .strength-visual .ph-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  color: var(--teal-deep);
  opacity: 0.55;
}
.iv-lp .strength-visual .ph-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal-deep);
  padding: 4px 10px;
}

/* Price compare visual (POINT 03) */
.iv-lp .price-compare {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--surface-teal-light);
  padding: 24px 20px;
}
.iv-lp .price-compare .col {
  text-align: center;
}
.iv-lp .price-compare .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.iv-lp .price-compare .col.before .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent-red);
  text-decoration-thickness: 2px;
  display: block;
  line-height: 1.1;
}
.iv-lp .price-compare .col.before .unit { font-size: 13px; color: var(--text-muted); }
.iv-lp .price-compare .arrow {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-red);
  text-align: center;
  line-height: 1;
}
.iv-lp .price-compare .col.after .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 40px;
  color: var(--accent-red);
  display: block;
  line-height: 1;
}
.iv-lp .price-compare .col.after .unit {
  font-size: 13px;
  color: var(--text-deep);
  font-weight: 700;
  margin-left: 2px;
}
.iv-lp .price-compare .col.after .tag {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent-red);
  padding: 2px 8px;
  margin-bottom: 6px;
}

/* =============================================================
   PART 2 — LOGOS (clients)
   ============================================================= */
.iv-lp .logos-section {
  padding: 100px 0 100px;
  background: var(--white);
}
.iv-lp .logos-lead {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 19px;
  line-height: 1.9;
  color: var(--text-primary);
}
.iv-lp .logos-lead .em { color: var(--teal-deep); font-weight: 700; }
.iv-lp .logos-lead .note {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}
.iv-lp .logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.iv-lp .logos-grid li {
  list-style: none;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  transition: background 150ms ease;
}
.iv-lp .logos-grid li:hover { background: var(--surface-teal-pale); }
.iv-lp .logos-grid li img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 200ms ease;
}
.iv-lp .logos-grid li:hover img { opacity: 0.85; }
.iv-lp .logos-grid .logo-name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}

/* =============================================================
   PART 2 — PRICING PLANS (3 cards)
   ============================================================= */
.iv-lp .pricing-section {
  padding: 110px 0 110px;
  background: var(--surface-teal-pale);
}
.iv-lp .pricing-lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 auto 64px;
  max-width: 800px;
}
.iv-lp .pricing-lead .em { color: var(--teal-deep); font-weight: 700; }

.iv-lp .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.iv-lp .plan-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  list-style: none;
}
.iv-lp .plan-card.popular {
  transform: translateY(-12px);
}
.iv-lp .plan-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 13px;
  padding: 6px 18px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 1;
}
.iv-lp .plan-popular-tag::before {
  content: "★ ";
  color: var(--white);
}

.iv-lp .plan-header {
  padding: 28px 24px 24px;
  text-align: center;
  color: var(--white);
}
.iv-lp .plan-card.tier-standard .plan-header { background: #8aa5b5; }
.iv-lp .plan-card.tier-plus     .plan-header { background: #58afe2; }
.iv-lp .plan-card.tier-premium  .plan-header { background: var(--teal-deep); }

.iv-lp .plan-name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.iv-lp .plan-name .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.16em;
  opacity: 0.8;
  margin-bottom: 6px;
}
.iv-lp .plan-sub {
  font-size: 13px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
}

.iv-lp .plan-price {
  padding: 26px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.iv-lp .plan-price .yen {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-red);
  vertical-align: top;
  line-height: 1.6;
}
.iv-lp .plan-price .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 56px;
  color: var(--accent-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.iv-lp .plan-price .unit {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}
.iv-lp .plan-price .from {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.iv-lp .plan-features {
  flex: 1;
  list-style: none;
  padding: 24px 24px 8px;
  margin: 0;
}
.iv-lp .plan-features li {
  display: block;
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-primary);
  border-bottom: 1px dashed var(--line-soft);
}
.iv-lp .plan-features li:last-child { border-bottom: none; }
.iv-lp .plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: var(--teal-deep);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.iv-lp .plan-features li.added {
  font-weight: 700;
  color: var(--text-deep);
}
.iv-lp .plan-features li.added::before { background: var(--accent-red); }
.iv-lp .plan-features li.added::after {
  content: "NEW";
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 10px;
  color: var(--white);
  background: var(--accent-red);
  padding: 1px 6px;
  margin-left: 6px;
  letter-spacing: 0.08em;
  vertical-align: 2px;
}

.iv-lp .plan-cta {
  padding: 16px 24px 28px;
}
.iv-lp .plan-cta a {
  display: block;
  text-align: center;
  background: var(--accent-red);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 16px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: opacity 150ms ease;
}
.iv-lp .plan-cta a:hover { opacity: 0.85; }
.iv-lp .plan-cta a .arrow { font-family: var(--font-en); font-weight: 900; margin-left: 6px; }

/* =============================================================
   PART 2 — TABLES (options + related)
   ============================================================= */
.iv-lp .options-section {
  padding: 100px 0 100px;
  background: var(--white);
}
.iv-lp .related-section {
  padding: 100px 0 110px;
  background: var(--surface-teal-pale);
}
.iv-lp .related-lead {
  max-width: 880px;
  margin: 0 auto 48px;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  text-align: left;
}
.iv-lp .related-lead .em { color: var(--teal-deep); font-weight: 700; }

.iv-lp .data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.iv-lp .data-table th, .iv-lp .data-table td {
  padding: 18px 24px;
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.iv-lp .data-table thead th {
  background: var(--text-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.iv-lp .data-table tbody tr:nth-child(even) { background: var(--surface-teal-pale); }
.iv-lp .data-table tbody tr:last-child td { border-bottom: none; }
.iv-lp .data-table .col-name {
  font-weight: 700;
  color: var(--text-deep);
  width: 30%;
}
.iv-lp .data-table .col-name a {
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
}
.iv-lp .data-table .col-name a:hover { opacity: 0.7; }
.iv-lp .data-table .col-price {
  width: 28%;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--accent-red);
  font-size: 17px;
  white-space: nowrap;
}
.iv-lp .data-table .col-price .jp {
  font-family: var(--font-jp);
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12px;
  margin-left: 4px;
}
.iv-lp .options-table .col-price { width: 36%; }
.iv-lp .options-table .col-name  { width: 64%; }

.iv-lp .data-table .col-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

.iv-lp .table-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.65;
}

/* Horizontally scrollable wrapper for wide tables on narrow viewports.
   Used by the related-services 3-column table. */
.iv-lp .data-table-scroll {
  width: 100%;
  margin: 0;
}
.iv-lp .data-table-scroll-hint {
  display: none;
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 0;
  text-align: center;
  letter-spacing: 0.04em;
}

/* =============================================================
   PART 2 — Responsive
   ============================================================= */
@media (max-width: 860px) {
  .iv-lp .strengths { padding: 64px 0; }
  .iv-lp .strength-row { grid-template-columns: 1fr; gap: 28px; }
  /* On SP keep DOM order (text -> visual) for ALL rows so two
     consecutive photos never appear between adjacent strength-rows. */
  .iv-lp .strength-row.reverse .strength-text,
  .iv-lp .strength-row.reverse .strength-visual { order: 0; }
  .iv-lp .strengths-list { gap: 64px; }
  .iv-lp .strength-h3 { font-size: 22px; }
  .iv-lp .strength-body { font-size: 19px; }
  .iv-lp .strength-stats { grid-template-columns: 1fr; }

  .iv-lp .logos-section { padding: 64px 0; }
  .iv-lp .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .iv-lp .logos-grid .logo-name { font-size: 13px; }

  .iv-lp .pricing-section { padding: 64px 0; }
  .iv-lp .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .iv-lp .plan-card.popular { transform: none; }

  .iv-lp .options-section, .iv-lp .related-section { padding: 64px 0; }
  .iv-lp .data-table th, .iv-lp .data-table td { padding: 12px 14px; font-size: 14px; line-height: 1.65; }
  .iv-lp .data-table thead th { font-size: 12px; }
  .iv-lp .data-table .col-price { font-size: 14px; }
  .iv-lp .data-table .col-desc { font-size: 13px; }

  /* Options table (2 cols): keep responsive in place */
  .iv-lp .options-table .col-name { width: 60%; }
  .iv-lp .options-table .col-price { width: 40%; }

  /* Related-services table (3 cols): horizontal scroll wrapper.
     Description column was getting crushed to 1ch wide; force min-width
     per column so the table is wider than viewport, and let user scroll. */
  .iv-lp .data-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
  }
  .iv-lp .data-table-scroll .data-table {
    width: auto;
    min-width: 720px;
    border: none;
  }
  .iv-lp .data-table-scroll .data-table .col-name { width: auto; min-width: 200px; white-space: normal; }
  .iv-lp .data-table-scroll .data-table .col-desc { width: auto; min-width: 320px; white-space: normal; }
  .iv-lp .data-table-scroll .data-table .col-price { width: auto; min-width: 180px; }
  .iv-lp .data-table-scroll-hint { display: block; }
}

/* =============================================================
   PART 3 — METHOD (7 steps)
   ============================================================= */
.iv-lp .method-section {
  padding: 110px 0 110px;
  background: var(--surface-teal-pale);
}
.iv-lp .method-sub {
  display: block;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.iv-lp .method-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}
.iv-lp .method-step {
  background: var(--white);
  border-left: 4px solid var(--teal-deep);
  padding: 40px 48px 44px;
  position: relative;
}
.iv-lp .method-step-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.iv-lp .method-step-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  background: var(--teal-deep);
  padding: 6px 14px 7px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  align-self: center;
}
.iv-lp .method-step-num .n { font-size: 22px; vertical-align: -2px; margin-right: 2px; }
.iv-lp .method-step h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-deep);
  margin: 0;
  letter-spacing: 0.02em;
}
.iv-lp .method-body p {
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 0 18px;
}
.iv-lp .method-body p:last-child { margin-bottom: 0; }
.iv-lp .method-body .em-teal { color: var(--teal-deep); font-weight: 700; }
.iv-lp .method-body .em-red  { color: var(--accent-red); font-weight: 700; }

.iv-lp .method-h4 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 17px;
  color: var(--text-deep);
  margin: 28px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-red);
  line-height: 1.4;
}

/* 4-type / 3-format cards */
.iv-lp .type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 8px;
  list-style: none;
  padding: 0;
}
.iv-lp .type-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.iv-lp .type-card {
  background: var(--surface-teal-pale);
  border-top: 3px solid var(--teal-deep);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.iv-lp .type-card .type-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 12px;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.iv-lp .type-card .type-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  color: var(--text-deep);
  margin: 0 0 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.iv-lp .type-card .type-desc {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0;
}

/* sub-blocks (▼ markers) */
.iv-lp .sub-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 0;
  list-style: none;
  padding: 0;
}
.iv-lp .sub-block {
  background: var(--surface-teal-pale);
  padding: 18px 22px;
  border-left: 3px solid var(--teal-deep);
}
.iv-lp .sub-block-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 16px;
  color: var(--text-deep);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.iv-lp .sub-block-title::before {
  content: "▼";
  color: var(--teal-deep);
  font-size: 12px;
}
.iv-lp .sub-block-body {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
}
.iv-lp .sub-block-body ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.iv-lp .sub-block-body li {
  padding: 3px 0 3px 16px;
  position: relative;
  font-size: 19px;
}
.iv-lp .sub-block-body li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 900;
}

/* Check list (interview points / regulation) */
.iv-lp .check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  padding: 18px 24px;
  margin: 12px 0 0;
  background: var(--surface-teal-pale);
  border: 1px solid var(--surface-teal-light);
}
.iv-lp .check-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-primary);
}
.iv-lp .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  background: var(--teal-deep);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}

/* Document preview — real image support */
.iv-lp .doc-preview {
  display: block;
  margin: 12px 0 0;
  background: var(--surface-teal-pale);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.iv-lp .doc-preview:not(:has(img)) {
  aspect-ratio: 16 / 10;
}
.iv-lp .doc-preview img {
  display: block;
  width: 100%;
  height: auto;
}
.iv-lp .doc-preview:not(:has(img))::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(3,168,168,0.15) 18px 19px),
    var(--white);
  border: 1px solid var(--line-soft);
}
.iv-lp .doc-preview .doc-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 11px;
  color: var(--white);
  background: var(--teal-deep);
  padding: 4px 10px;
  letter-spacing: 0.14em;
  z-index: 2;
}
.iv-lp .doc-preview .doc-title {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 14px;
  color: var(--text-deep);
  background: var(--white);
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  z-index: 2;
}
.iv-lp .doc-preview:has(img) { aspect-ratio: auto; }
.iv-lp .doc-preview .ph-note {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  z-index: 2;
  background: var(--white);
  padding: 3px 8px;
}

.iv-lp .method-foot {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--surface-teal-pale);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-primary);
  border-left: 3px solid var(--teal-deep);
}
.iv-lp .method-foot a {
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  font-weight: 700;
}

.iv-lp .method-foot-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* =============================================================
   PART 3 — MEMBERS
   ============================================================= */
.iv-lp .members-section {
  padding: 110px 0 110px;
  background: var(--white);
}
.iv-lp .members-lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  max-width: 780px;
  margin: 0 auto 56px;
}

.iv-lp .members-group {
  margin-bottom: 80px;
}
.iv-lp .members-group:last-child { margin-bottom: 0; }
.iv-lp .members-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.iv-lp .members-group-head .jp {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 24px;
  color: var(--text-deep);
  letter-spacing: 0.04em;
}
.iv-lp .members-group-head .en {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 14px;
  color: var(--teal-deep);
  letter-spacing: 0.18em;
}

.iv-lp .members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.iv-lp .member-card {
  display: flex;
  flex-direction: column;
}
.iv-lp .member-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface-teal-pale);
  border: 1px solid var(--surface-teal-light);
  margin-bottom: 18px;
  overflow: hidden;
}
.iv-lp .member-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iv-lp .member-photo.is-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(3,168,168,0.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(3,168,168,0.04) 100%);
}
.iv-lp .member-photo .silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  color: var(--teal-deep);
  opacity: 0.35;
}
.iv-lp .member-photo .ph-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  color: var(--white);
  background: var(--teal-deep);
  padding: 3px 8px;
  letter-spacing: 0.14em;
}
.iv-lp .member-name {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-deep);
  margin: 0 0 4px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.iv-lp .member-name-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.iv-lp .member-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.iv-lp .member-meta li {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-primary);
}
.iv-lp .member-meta .lbl {
  display: inline-block;
  font-family: var(--font-jp);
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--surface-teal-pale);
  padding: 1px 8px;
  margin-right: 6px;
  font-size: 12px;
}
.iv-lp .member-bio {
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}
.iv-lp .member-bio .em {
  font-weight: 700;
  color: var(--text-deep);
  background: linear-gradient(transparent 60%, rgba(3,168,168,0.18) 60%);
}

/* =============================================================
   PART 3 — DELIVERY FLOW (7 steps)
   ============================================================= */
.iv-lp .flow-section {
  padding: 110px 0 110px;
  background: var(--surface-teal-pale);
}
.iv-lp .flow-list {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  max-width: var(--content-max);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.iv-lp .flow-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  background: var(--white);
  padding: 32px 36px;
  position: relative;
  align-items: flex-start;
  border-left: 4px solid var(--teal-deep);
}
.iv-lp .flow-step + .flow-step { margin-top: 12px; }
.iv-lp .flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 56px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--teal-deep);
}
.iv-lp .flow-step-num {
  text-align: center;
  font-family: var(--font-en);
  color: var(--teal-deep);
  border-right: 1px dashed var(--line-soft);
  padding-right: 8px;
}
.iv-lp .flow-step-num .lbl {
  display: block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.iv-lp .flow-step-num .n {
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.iv-lp .flow-step-body h3 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 20px;
  color: var(--text-deep);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.iv-lp .flow-step-body p {
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}
.iv-lp .flow-step-body p a {
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  font-weight: 700;
}

/* =============================================================
   PART 3 — Responsive
   ============================================================= */
@media (max-width: 860px) {
  .iv-lp .method-section { padding: 64px 0; }
  .iv-lp .method-step { padding: 24px 20px; }
  .iv-lp .method-step-head { flex-wrap: wrap; gap: 10px; }
  .iv-lp .method-step h3 { font-size: 18px; }
  .iv-lp .method-body p { font-size: 19px; }
  .iv-lp .type-grid, .iv-lp .type-grid.cols-3 { grid-template-columns: 1fr; }
  .iv-lp .check-list { grid-template-columns: 1fr; padding: 14px 16px; }

  .iv-lp .members-section { padding: 64px 0; }
  .iv-lp .members-grid { grid-template-columns: 1fr; gap: 32px; }
  .iv-lp .members-group { margin-bottom: 56px; }
  .iv-lp .members-group-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .iv-lp .members-group-head .jp { font-size: 20px; }
  .iv-lp .member-name { font-size: 19px; }

  .iv-lp .flow-section { padding: 64px 0; }
  .iv-lp .flow-step { grid-template-columns: 80px 1fr; gap: 16px; padding: 22px 18px; }
  .iv-lp .flow-step + .flow-step::before { left: 36px; }
  .iv-lp .flow-step-num .n { font-size: 38px; }
  .iv-lp .flow-step-num .lbl { font-size: 10px; }
  .iv-lp .flow-step-body h3 { font-size: 16px; }
  .iv-lp .flow-step-body p { font-size: 19px; }
}

/* =============================================================
   PART 4 — VARIATIONS (9 article types)
   ============================================================= */
.iv-lp .variations-section {
  padding: 110px 0;
  background: var(--white);
}
.iv-lp .variations-lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 auto 48px;
  max-width: 720px;
}
.iv-lp .variations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.iv-lp .variation-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}
.iv-lp .variation-card:hover {
  border-color: var(--teal-deep);
  transform: translateY(-2px);
}
.iv-lp .variation-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.iv-lp .variation-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.iv-lp .variation-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 18px;
  color: var(--text-deep);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-deep);
  align-self: flex-start;
}
.iv-lp .variation-desc {
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}
.iv-lp .variation-desc .em { color: var(--accent-red); font-weight: 700; }

/* MERITS */
.iv-lp .merits-section {
  padding: 110px 0;
  background: var(--surface-teal-pale);
}
.iv-lp .merits-lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 auto 48px;
}
.iv-lp .merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.iv-lp .merit-card {
  background: var(--white);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
}
.iv-lp .merit-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  background: var(--accent-red);
  padding: 4px 12px 5px;
  letter-spacing: 0.12em;
  align-self: flex-start;
  margin-bottom: 18px;
}
.iv-lp .merit-num .n { font-size: 18px; vertical-align: -1px; margin-right: 2px; }
.iv-lp .merit-title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 19px;
  color: var(--text-deep);
  margin: 0 0 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.iv-lp .merit-body {
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0;
}

/* FAQ */
.iv-lp .faq-section { padding: 110px 0; background: var(--white); }
.iv-lp .faq-lead {
  text-align: center;
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 auto 48px;
  max-width: 760px;
}
.iv-lp .faq-list { max-width: var(--content-max); margin: 0 auto; list-style: none; padding: 0; }
.iv-lp .faq-item { border-top: 1px solid var(--line-soft); }
.iv-lp .faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.iv-lp .faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 56px 24px 64px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-deep);
  position: relative;
  display: block;
  letter-spacing: 0.02em;
}
.iv-lp .faq-q::before {
  content: "Q.";
  position: absolute;
  left: 16px;
  top: 22px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--teal-deep);
}
.iv-lp .faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 24px;
  color: var(--teal-deep);
  line-height: 1;
}
.iv-lp .faq-item.is-open .faq-q::after { content: "−"; }
.iv-lp .faq-q:hover { color: var(--teal-deep); }
.iv-lp .faq-a {
  display: none;
  padding: 28px 56px 28px 64px;
  position: relative;
  background: var(--surface-teal-pale);
  border-top: 1px solid var(--surface-teal-light);
}
.iv-lp .faq-item.is-open .faq-a { display: block; }
.iv-lp .faq-a::before {
  content: "A.";
  position: absolute;
  left: 16px;
  top: 26px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--accent-red);
}
.iv-lp .faq-a p {
  font-size: 19px;
  line-height: 1.95;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.iv-lp .faq-a p:last-child { margin-bottom: 0; }
.iv-lp .faq-a ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iv-lp .faq-a ul li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 14px;
  line-height: 1.7;
}
.iv-lp .faq-a ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--teal-deep);
}
.iv-lp .faq-a strong { font-weight: 700; color: var(--text-deep); }

/* BLOG */
.iv-lp .blog-section { padding: 110px 0; background: var(--surface-teal-pale); }
.iv-lp .blog-sub { text-align: center; font-size: 19px; color: var(--text-primary); margin: 0 0 48px; }
.iv-lp .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}
.iv-lp .blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease;
}
.iv-lp .blog-card:hover { transform: translateY(-4px); }
.iv-lp .blog-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-teal-pale);
  overflow: hidden;
}
.iv-lp .blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,168,168,0.15) 0%, rgba(0,199,176,0.08) 100%),
    repeating-linear-gradient(45deg, rgba(3,168,168,0.04) 0 8px, transparent 8px 16px);
}
/* Real-image variant — replace the placeholder gradient with the post thumbnail */
.iv-lp .blog-thumb.has-img::before { display: none; }
.iv-lp .blog-thumb.has-img .ph-mark { display: none; }
.iv-lp .blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(.4, 0, .2, 1);
}
.iv-lp .blog-card:hover .blog-thumb img { transform: scale(1.04); }
.iv-lp .blog-thumb .ph-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 32px;
  color: var(--teal-deep);
  opacity: 0.45;
  letter-spacing: 0.06em;
}
.iv-lp .blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
}
.iv-lp .blog-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.iv-lp .blog-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-deep);
  margin: 0;
}
.iv-lp .blog-excerpt { font-size: 13px; line-height: 1.75; color: var(--text-muted); margin: 0; }
.iv-lp .blog-date {
  margin-top: auto;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.iv-lp .blog-more { text-align: center; }
.iv-lp .blog-more a {
  display: inline-block;
  border: 1.5px solid var(--text-deep);
  color: var(--text-deep);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 56px;
  letter-spacing: 0.06em;
  transition: background 200ms ease, color 200ms ease;
}
.iv-lp .blog-more a:hover { background: var(--text-deep); color: var(--white); }
.iv-lp .blog-more a .arrow { font-family: var(--font-en); margin-left: 8px; }

/* FINAL CTA */
.iv-lp .final-cta {
  background: #0f0f0f;
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.iv-lp .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(3,168,168,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232,79,75,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.iv-lp .final-cta .container { position: relative; z-index: 1; text-align: center; }
.iv-lp .final-cta-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--teal-bright);
  margin-bottom: 14px;
}
.iv-lp .final-cta-h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.iv-lp .final-cta-h2 .em { color: var(--teal-bright); }
.iv-lp .final-cta-text {
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  margin: 0 auto 40px;
  max-width: 640px;
}
.iv-lp .final-cta-btn {
  display: inline-block;
  background: var(--accent-red);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  padding: 22px 64px;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: opacity 150ms ease, transform 150ms ease;
}
.iv-lp .final-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.iv-lp .final-cta-btn .arrow { font-family: var(--font-en); margin-left: 12px; }
.iv-lp .final-cta-divider {
  margin: 44px auto 36px;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.iv-lp .final-cta-divider::before, .iv-lp .final-cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.iv-lp .final-cta-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.iv-lp .final-cta-tel .lbl {
  font-family: var(--font-jp);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.iv-lp .final-cta-tel a {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.iv-lp .final-cta-tel a .ico {
  width: 36px;
  height: 36px;
  color: var(--teal-bright);
}
.iv-lp .final-cta-tel .hours {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.iv-lp .final-cta-urg {
  margin-top: 36px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.06em;
}
.iv-lp .final-cta-urg .em {
  color: var(--accent-red);
  background: var(--white);
  padding: 4px 10px;
  margin-right: 6px;
}

.iv-lp .site-foot {
  background: #050505;
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  text-align: center;
  font-size: 12px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .iv-lp .variations-section, .iv-lp .merits-section, .iv-lp .faq-section, .iv-lp .blog-section { padding: 64px 0; }
  .iv-lp .variations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .iv-lp .variation-card { padding: 22px 18px; }
  .iv-lp .variation-title { font-size: 16px; }
  .iv-lp .merits-grid { grid-template-columns: 1fr; gap: 16px; }
  .iv-lp .merit-title { font-size: 17px; }
  .iv-lp .faq-q { padding: 18px 44px 18px 48px; font-size: 14px; }
  .iv-lp .faq-q::before { left: 12px; top: 16px; font-size: 18px; }
  .iv-lp .faq-q::after { right: 14px; }
  .iv-lp .faq-a { padding: 20px 20px 20px 48px; }
  .iv-lp .faq-a::before { left: 12px; top: 18px; font-size: 18px; }
  .iv-lp .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .iv-lp .final-cta { padding: 64px 0; }
  .iv-lp .final-cta-h2 { font-size: 24px; }
  .iv-lp .final-cta-tel a { font-size: 38px; }
  .iv-lp .final-cta-tel a .ico { width: 28px; height: 28px; }
  .iv-lp .final-cta-btn { padding: 18px 32px; font-size: 16px; width: 100%; box-sizing: border-box; }
}

/* =============================================================
   PLAY — Decorative flourishes (added pass)
   ============================================================= */

/* Marquee band */
.iv-lp .marquee {
  background: var(--text-deep);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--teal-deep);
  border-bottom: 4px solid var(--accent-red);
}
.iv-lp .marquee.is-teal {
  background: var(--teal-deep);
  border-top-color: var(--text-deep);
  border-bottom-color: var(--accent-red);
}
.iv-lp .marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}
.iv-lp .marquee.is-teal .marquee-track { animation-duration: 28s; }
.iv-lp .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.iv-lp .marquee-item .star {
  color: var(--accent-red);
  font-size: 22px;
  display: inline-block;
  transform: translateY(-2px);
}
.iv-lp .marquee.is-teal .marquee-item .star { color: var(--white); }
.iv-lp .marquee-item .jp {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.06em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Background giant words behind sections */
.iv-lp .bg-word {
  position: absolute;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 220px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(3, 168, 168, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.iv-lp .bg-word.tr { top: -20px; right: -20px; }
.iv-lp .bg-word.bl { bottom: -30px; left: -10px; }

/* Make sections that host bg-word position-relative */
.iv-lp .merits-section, .iv-lp .variations-section, .iv-lp .faq-section, .iv-lp .blog-section, .iv-lp .method-section, .iv-lp .members-section, .iv-lp .flow-section, .iv-lp .strengths-section, .iv-lp .pricing-section {
  position: relative;
  overflow: hidden;
}
.iv-lp .merits-section .container, .iv-lp .variations-section .container, .iv-lp .faq-section .container, .iv-lp .blog-section .container, .iv-lp .method-section .container, .iv-lp .members-section .container, .iv-lp .flow-section .container, .iv-lp .strengths-section .container, .iv-lp .pricing-section .container {
  position: relative;
  z-index: 1;
}

/* Corner brackets for highlighted blocks */
.iv-lp .corner-frame {
  position: relative;
}
.iv-lp .corner-frame::before, .iv-lp .corner-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid var(--accent-red);
}
.iv-lp .corner-frame::before {
  top: -8px;
  left: -8px;
  border-right: 0;
  border-bottom: 0;
}
.iv-lp .corner-frame::after {
  bottom: -8px;
  right: -8px;
  border-left: 0;
  border-top: 0;
}

/* CTA shimmer */
.iv-lp .btn-cta, .iv-lp .final-cta-btn {
  position: relative;
  overflow: hidden;
}
.iv-lp .btn-cta::after, .iv-lp .final-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.45) 50%,
    transparent 65%,
    transparent 100%);
  transform: translateX(-100%);
  animation: cta-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Variation card hover lift + reveal */
.iv-lp .variation-card {
  overflow: hidden;
}
.iv-lp .variation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal-deep);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.iv-lp .variation-card:hover::before { transform: scaleY(1); }

/* Merit card decorative giant number */
.iv-lp .merit-card { position: relative; overflow: hidden; }
.iv-lp .merit-card::after {
  content: attr(data-bigno);
  position: absolute;
  right: -16px;
  bottom: -64px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 0.85;
  color: rgba(3, 168, 168, 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.iv-lp .merit-card .merit-num, .iv-lp .merit-card .merit-title, .iv-lp .merit-card .merit-body { position: relative; z-index: 1; }

/* Star sparkles */
.iv-lp .sparkle {
  display: inline-block;
  color: var(--accent-red);
  font-family: var(--font-en);
  font-weight: 900;
  transform: translateY(-2px);
  margin: 0 6px;
}

/* Section eyebrow with bracket */
.iv-lp .section-header .en {
  position: relative;
  display: inline-block;
  padding: 0 22px;
}
.iv-lp .section-header .en::before, .iv-lp .section-header .en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--teal-deep);
}
.iv-lp .section-header .en::before { left: 0; }
.iv-lp .section-header .en::after  { right: 0; }

/* Pain section vertical accent */
.iv-lp .pain-section { position: relative; }
.iv-lp .pain-section::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--teal-deep), transparent);
}

/* Blog card thumb playful overlay */
.iv-lp .blog-card .blog-thumb::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--teal-deep);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: all 400ms cubic-bezier(.4,0,.2,1);
}
.iv-lp .blog-card:hover .blog-thumb::after {
  opacity: 0.4;
  transform: scale(1);
}

/* Variation card icon — playful spin on hover */
.iv-lp .variation-card .variation-icon {
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.iv-lp .variation-card:hover .variation-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* FAQ Q hover indicator */
.iv-lp .faq-q {
  transition: padding-left 200ms ease, color 200ms ease;
}
.iv-lp .faq-item.is-open .faq-q { background: var(--surface-teal-pale); }

/* FV — floating sparkles */
.iv-lp .fv-sparkle {
  position: absolute;
  pointer-events: none;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--accent-red);
  z-index: 1;
}
.iv-lp .fv-sparkle.s1 { top: 20%; right: 8%; font-size: 28px; animation: float-y 4.5s ease-in-out infinite; }
.iv-lp .fv-sparkle.s2 { top: 55%; right: 4%; font-size: 18px; animation: float-y 3.8s ease-in-out infinite reverse; color: var(--teal-deep); }
.iv-lp .fv-sparkle.s3 { bottom: 18%; left: 6%; font-size: 22px; animation: float-y 5.2s ease-in-out infinite; color: var(--teal-deep); }
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(15deg); }
}

/* Strength visual — corner tick */
.iv-lp .strength-visual::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  z-index: 2;
}

/* Logos grid — playful counter */
.iv-lp .logos-section { position: relative; }
.iv-lp .logos-section::before {
  content: "10";
  position: absolute;
  top: 80px;
  right: 4%;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  color: rgba(3, 168, 168, 0.05);
  pointer-events: none;
  user-select: none;
}

/* Method step — accent dot trail */
.iv-lp .method-step::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -18px;
  width: 4px;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    var(--teal-deep) 0 4px,
    transparent 4px 8px
  );
  z-index: 1;
}
.iv-lp .method-step:last-child::after { display: none; }

/* Final CTA — orbital rings */
.iv-lp .final-cta::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  margin-top: -300px;
  border: 1px dashed rgba(3, 168, 168, 0.18);
  border-radius: 50%;
  animation: rotate-slow 60s linear infinite;
  pointer-events: none;
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

/* Reveal-on-load fade for hero stats */
.iv-lp .fv-cards .fv-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
.iv-lp .fv-cards .fv-card:nth-child(1) { animation-delay: 0.1s; }
.iv-lp .fv-cards .fv-card:nth-child(2) { animation-delay: 0.25s; }
.iv-lp .fv-cards .fv-card:nth-child(3) { animation-delay: 0.4s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .iv-lp .marquee-item { font-size: 20px; gap: 28px; }
  .iv-lp .marquee-item .jp { font-size: 16px; }
  .iv-lp .bg-word { font-size: 120px; }
  .iv-lp .merit-card::after { font-size: 140px; bottom: -40px; }
  .iv-lp .logos-section::before { font-size: 100px; top: 40px; }
  .iv-lp .final-cta::after { width: 320px; height: 320px; margin-left: -160px; margin-top: -160px; }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 860px) {
  .iv-lp .site-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .iv-lp .header-right { width: 100%; justify-content: space-between; }
  .iv-lp .fv { padding: 20px 0 56px; }
  .iv-lp .fv-bgnum { font-size: 180px; }
  .iv-lp .fv-cards { grid-template-columns: 1fr; }
  .iv-lp .fv-card { min-height: 0; padding: 28px 24px; }
  .iv-lp .fv-catch { font-size: 38px; }
  .iv-lp .fv-lead { font-size: 19px; line-height: 1.9; }
  .iv-lp .btn-cta { min-width: 0; width: 100%; padding: 18px 24px; font-size: 17px; }

  .iv-lp .cta-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .iv-lp .cta-band-actions { flex-direction: column; align-items: stretch; gap: 20px; }
  .iv-lp .cta-band-tel { padding-left: 0; border-left: none; border-top: 1px solid #2A2F38; padding-top: 20px; align-items: center; }
  .iv-lp .btn-teal { width: 100%; min-width: 0; }

  .iv-lp .pain { padding: 64px 0; }
  .iv-lp .pain-list { padding: 28px 22px; }
  .iv-lp .pain-list li { font-size: 19px; padding: 14px 0 14px 32px; }
  .iv-lp .pain-list-sub { padding: 20px 22px; }
  .iv-lp .pain-list-sub li { font-size: 14px; }

  .iv-lp .solve-section { padding: 64px 0; }
  .iv-lp .solve-grid { grid-template-columns: 1fr; }
  .iv-lp .solve-item { padding: 18px 18px; font-size: 15px; }
}


/* =============================================================
   COMPANY PROFILE
   ============================================================= */
.iv-lp .company {
  position: relative;
  padding: 120px 0;
  background: var(--bg-secondary, #F1F8F8);
  overflow: hidden;
}
.iv-lp .company .bg-word {
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  letter-spacing: -0.04em;
  color: rgba(3, 168, 168, 0.06);
  pointer-events: none;
  line-height: 1;
}
.iv-lp .company-table {
  margin: 56px 0 0;
  padding: 0;
  background: #fff;
  border-top: 3px solid var(--teal-deep, #03A8A8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.iv-lp .company-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 40px;
  border-bottom: 1px dashed var(--line-medium, #d8e4e4);
  align-items: start;
}
.iv-lp .company-row:last-child { border-bottom: none; }
.iv-lp .company-row dt {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  color: var(--teal-deep, #03A8A8);
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.iv-lp .company-row dd {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary, #1a2424);
}
.iv-lp .company-row dd a {
  color: var(--text-primary, #1a2424);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.iv-lp .company-biz { display: flex; flex-direction: column; gap: 18px; }
.iv-lp .biz-head {
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary, #1a2424);
  margin-bottom: 4px;
}
.iv-lp .biz-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 4px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}
.iv-lp .biz-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
}
.iv-lp .biz-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 2px;
  background: var(--teal-deep, #03A8A8);
}
@media (max-width: 720px) {
  .iv-lp .company { padding: 80px 0; }
  .iv-lp .company-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; }
  .iv-lp .biz-list { grid-template-columns: 1fr; }
}

/* =============================================================
   PARENT-SITE NEUTRALIZERS
   The site's themes/swell_child/css/style.css targets several
   bare HTML elements with rules that cascade into .iv-lp.
   These overrides cancel the cascade so the LP's own scoped
   styles win. Keep this block at the bottom of the file.
   ============================================================= */

/* <header> — site sets position:absolute; height:300px; top:0; z-index:1000
   on bare <header>, AND additionally overflow:auto at @media (max-width:768px).
   The LP uses <header class="section-header"> 15× inside sections, plus the
   sticky LP header <header class="ivh">. Reset all three so layout works:
   - position/height/width/top/z-index → normal flow
   - overflow:visible → critical so the hamburger slide-down panel can extend
     below the .ivh bar instead of being clipped inside its 60px box. */
.iv-lp header {
  position: static;
  height: auto;
  width: auto;
  top: auto;
  padding: 0;
  z-index: auto;
  overflow: visible;
}
.iv-lp header a { color: inherit; }

/* <footer> — site sets background+padding. LP has no bare <footer> here,
   but defensive in case future content includes one. */
.iv-lp footer {
  background: transparent;
  padding: 0;
}

/* <img> — site sets width:100%, which stretches every image to its
   container width. Restore intrinsic sizing; LP elements that genuinely
   want 100% (e.g. .strength-visual img, .doc-preview img, .member-photo img)
   already specify it at higher specificity and continue to win. */
.iv-lp img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* <a> — site sets transition:0.3s and a:hover{opacity:0.7}.
   Cancel the global hover fade so LP buttons keep their own hover styling. */
.iv-lp a:hover {
  opacity: 1;
}

/* <ol> — site only resets <ul>; mirror the reset for <ol> inside the LP
   so flow-list / method-list numbering does not pick up default 40px indent. */
.iv-lp ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =============================================================
   PAGE-SPECIFIC STICKY HEADER (.ivh)
   Logo (left) | in-page anchor menu (center) | tel + CTA (right)
   ============================================================= */

.iv-lp { padding-top: 72px; }                /* reserve space for fixed header */
.iv-lp [id] { scroll-margin-top: 80px; }     /* anchor offset under sticky header */

.iv-lp .ivh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  overflow: visible;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}
.iv-lp .ivh.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 20px rgba(3, 168, 168, 0.06);
}

.iv-lp .ivh__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

/* Logo */
.iv-lp .ivh__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.iv-lp .ivh__logo img {
  width: auto;
  height: 36px;
  display: block;
}

/* Center anchor nav */
.iv-lp .ivh__nav {
  justify-self: center;
}
.iv-lp .ivh__nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.iv-lp .ivh__nav li { list-style: none; }
.iv-lp .ivh__nav a {
  position: relative;
  display: inline-block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-deep);
  letter-spacing: 0.04em;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 150ms ease;
}
.iv-lp .ivh__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--teal-deep);
  transition: width 200ms ease, left 200ms ease;
}
.iv-lp .ivh__nav a:hover { color: var(--teal-deep); opacity: 1; }
.iv-lp .ivh__nav a:hover::after { width: 100%; left: 0; }

/* Right side: tel + CTA */
.iv-lp .ivh__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.iv-lp .ivh__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-align: right;
  transition: opacity 150ms ease;
}
.iv-lp .ivh__tel:hover { opacity: 0.75; }
.iv-lp .ivh__tel-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.iv-lp .ivh__tel-num::before {
  content: "TEL";
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 10px;
  color: var(--white);
  background: var(--teal-deep);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  vertical-align: 4px;
  margin-right: 6px;
}
.iv-lp .ivh__tel-hours {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.iv-lp .ivh__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red);
  color: var(--white);
  padding: 14px 24px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.iv-lp .ivh__btn:hover {
  background: #ff3a20;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 74, 51, 0.32);
  opacity: 1;
}
.iv-lp .ivh__btn-arrow {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
}

/* Hamburger toggle (hidden on desktop) */
.iv-lp .ivh__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 11;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 4px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
  touch-action: manipulation;
  pointer-events: auto;
}
.iv-lp .ivh__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-deep);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.iv-lp .ivh.is-open .ivh__menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.iv-lp .ivh.is-open .ivh__menu-toggle span:nth-child(2) {
  opacity: 0;
}
.iv-lp .ivh.is-open .ivh__menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* === Tablet breakpoint: shrink tel and gaps === */
@media (max-width: 1080px) {
  .iv-lp .ivh__inner { gap: 16px; padding: 0 16px; }
  .iv-lp .ivh__nav ul { gap: 18px; }
  .iv-lp .ivh__nav a { font-size: 13px; }
  .iv-lp .ivh__tel-num { font-size: 18px; }
  .iv-lp .ivh__tel-num::before { font-size: 9px; padding: 1px 5px; vertical-align: 3px; margin-right: 4px; }
  .iv-lp .ivh__tel-hours { font-size: 10px; }
  .iv-lp .ivh__btn { padding: 12px 18px; font-size: 13px; }
  .iv-lp .ivh__cta { gap: 12px; }
}

/* === Mobile breakpoint: hamburger menu === */
@media (max-width: 860px) {
  .iv-lp { padding-top: 60px; }
  .iv-lp [id] { scroll-margin-top: 68px; }

  .iv-lp .ivh { height: 60px; }
  .iv-lp .ivh__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 14px;
  }
  .iv-lp .ivh__cta { margin-left: auto; }
  .iv-lp .ivh__logo img { height: 28px; }

  /* Slide-down panel for nav. Uses max-height transition (most reliable
     across iOS/Android browsers); .ivh provides the containing block via
     position:fixed + backdrop-filter, so top:100% sits directly under it. */
  .iv-lp .ivh__nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .iv-lp .ivh.is-open .ivh__nav {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .iv-lp .ivh__nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
  }
  .iv-lp .ivh__nav li {
    display: block;
    width: 100%;
    list-style: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .iv-lp .ivh__nav li:last-child { border-bottom: none; }
  .iv-lp .ivh__nav a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-family: var(--font-jp);
    font-weight: 700;
    color: var(--text-deep);
    line-height: 1.4;
    text-decoration: none;
  }
  .iv-lp .ivh__nav a::after { display: none; }
  .iv-lp .ivh__nav a:hover,
  .iv-lp .ivh__nav a:active { background: var(--surface-teal-pale); color: var(--teal-deep); }

  /* Show hamburger; hide phone label, keep CTA compact */
  .iv-lp .ivh__menu-toggle { display: flex; order: 3; }
  .iv-lp .ivh__cta { gap: 6px; }
  .iv-lp .ivh__tel { display: none; }
  .iv-lp .ivh__btn {
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .iv-lp .ivh__btn-arrow { display: none; }
}

@media (max-width: 480px) {
  .iv-lp .ivh__btn { padding: 8px 12px; font-size: 11.5px; }
  .iv-lp .ivh__logo img { height: 24px; }
}
