/* ===== Care-facility Recruitment LP ===== */

.lp-root {
  background: var(--color-cream);
  color: var(--fg-1);
  font-family: var(--font-sans-jp);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Theme swap — Tweaks change the root var for a single primary */
.lp-theme-pink {
  --p:        var(--color-rose);
  --p-soft:   var(--color-rose-soft);
  --p-deep:   var(--color-rose-deep);
  --p-ink:    var(--color-rose-ink);
  --p-on:     #ffffff;
}
.lp-theme-yellow {
  --p:        var(--color-gold);
  --p-soft:   var(--color-gold-soft);
  --p-deep:   var(--color-gold-deep);
  --p-ink:    #8a6514;
  --p-on:     #3d2c26;
}
.lp-theme-brown {
  --p:        #8a6a55;
  --p-soft:   #ece0d2;
  --p-deep:   #5e4535;
  --p-ink:    #5e4535;
  --p-on:     #ffffff;
}

/* ---- Top bar ---- */
.lp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky; top: 0; z-index: 40;
}
.lp-topbar .brand {
  font-family: var(--font-display-en); font-weight: 600;
  font-size: 13px; letter-spacing: 0.12em; color: var(--p-ink);
  line-height: 1.25;
}
.lp-topbar .brand small {
  display: block; font-family: var(--font-sans-jp); font-size: 11px;
  color: var(--fg-2); letter-spacing: 0.02em; font-weight: 500;
}
.lp-topbar .topnav { display: flex; gap: 22px; align-items: center; }
.lp-topbar .topnav a { color: var(--fg-1); text-decoration: none; font-size: 13px; font-weight: 500; }
.lp-topbar .topnav a:hover { color: var(--p-ink); }
.lp-topbar .topnav .pill {
  font-size: 12.5px; padding: 10px 18px; border-radius: 999px;
  background: var(--p); color: var(--p-on); font-weight: 600; line-height: 1.25;
  box-shadow: 0 4px 12px rgba(61,44,38,.1);
  white-space: nowrap;
}
.lp-topbar .topnav .pill:hover { background: var(--p-deep); color: #fff; }

/* ---- Section basics ---- */
.lp-section { padding: clamp(72px, 10vw, 128px) 24px; position: relative; }
.lp-container { max-width: 1080px; margin: 0 auto; position: relative; }
.lp-container-narrow { max-width: 820px; margin: 0 auto; position: relative; }

.lp-eyebrow {
  display: inline-block;
  font-family: var(--font-display-en); font-weight: 600;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--p-ink); margin-bottom: 14px;
}
.lp-eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--p); vertical-align: middle; margin-right: 12px;
  transform: translateY(-3px);
}
.lp-label-center { text-align: center; margin-bottom: 64px; }

.lp-h1 {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.55; letter-spacing: .02em;
  color: var(--fg-1);
  white-space: pre-line;
}
.lp-h1.sans { font-family: var(--font-sans-jp); font-style: normal; font-weight: 700; }

.lp-body {
  font-size: 15.5px; line-height: 2; color: var(--fg-2);
  white-space: pre-line;
}

/* ===================================================
   HERO
   =================================================== */
.lp-hero {
  position: relative;
  padding: 72px 24px 100px;
  background:
    radial-gradient(ellipse at 85% 10%, color-mix(in oklab, var(--p) 35%, transparent), transparent 55%),
    radial-gradient(ellipse at 8% 85%, color-mix(in oklab, var(--p) 20%, transparent), transparent 55%),
    var(--color-cream);
  overflow: hidden;
}
.lp-hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px;
  align-items: center;
}
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--p);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--p-ink);
  box-shadow: var(--shadow-sm);
}
.lp-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--p);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--p) 25%, transparent);
}

.lp-hero-title {
  margin: 26px 0 22px;
  font-family: var(--font-sans-jp);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--fg-1);
}
.lp-hero-title .accent {
  background: linear-gradient(180deg, transparent 62%, color-mix(in oklab, var(--p) 55%, transparent) 62%);
  padding: 0 4px;
}
.lp-hero-title .mincho {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  color: var(--p-ink);
}
.lp-hero-title .br-sp { display: inline; }

.lp-hero-sub {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 500;
  font-size: 18px; color: var(--p-ink); margin-top: 8px;
}

.lp-hero-note {
  margin-top: 24px; font-size: 12.5px; color: var(--fg-3);
}

.lp-hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.lp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans-jp); font-weight: 600;
  font-size: 15px; padding: 14px 28px;
  border-radius: 999px;
  background: var(--p); color: var(--p-on);
  border: 1px solid var(--p);
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
  box-shadow: 0 8px 20px color-mix(in oklab, var(--p) 28%, transparent);
}
.lp-btn:hover { background: var(--p-deep); border-color: var(--p-deep); color: #fff; }
.lp-btn.ghost {
  background: #fff; color: var(--fg-1); border-color: var(--border-soft); box-shadow: var(--shadow-xs);
}
.lp-btn.ghost:hover { background: var(--color-cream-2); color: var(--fg-1); }
.lp-btn.big {
  padding: 18px 40px; font-size: 17px;
}

.lp-btn .line-ico {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 999px; background: #fff; color: var(--p);
  font-size: 11px; font-weight: 700; font-family: var(--font-label-en);
  letter-spacing: .02em;
}

/* hero visual stack — photo placeholders + illustration */
.lp-hero-visual {
  position: relative;
  height: 480px;
}
.lp-hero-photo {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-cream-3);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  color: var(--fg-3); font-size: 12px;
}
.lp-hero-photo.p1 { top: 0; left: 0; width: 58%; height: 60%; }
.lp-hero-photo.p2 { bottom: 0; right: 0; width: 56%; height: 58%; }
.lp-hero-photo.p3 { top: 38%; right: 8%; width: 36%; height: 36%; }
.lp-hero-photo .ph-inner {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, color-mix(in oklab, var(--p) 35%, #fff) 0%, color-mix(in oklab, var(--p) 15%, #fff) 100%);
  color: var(--p-ink);
}
.lp-hero-photo .ph-inner span { font-family: var(--font-serif-jp); font-style: italic; font-size: 14px; letter-spacing: .08em; }

.lp-hero-illust {
  position: absolute; pointer-events: none; z-index: 2;
}
.lp-hero-illust.a { width: 110px; top: -20px; left: -34px; transform: rotate(-8deg); }
.lp-hero-illust.b { width: 86px; bottom: -6px; right: -20px; transform: rotate(10deg); }

.lp-hero-kpis {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-top: 38px; max-width: 520px;
}
.lp-hero-kpi {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 14px 12px 12px;
  text-align: center;
}
.lp-hero-kpi .n {
  font-family: var(--font-display-en); font-weight: 700;
  font-size: 26px; color: var(--p-ink); letter-spacing: .02em; line-height: 1.1;
}
.lp-hero-kpi .t { font-size: 11.5px; color: var(--fg-2); margin-top: 4px; font-weight: 500; }

/* ===================================================
   PROBLEMS / AGITATION
   =================================================== */
.lp-problems {
  background:
    linear-gradient(180deg, var(--color-cream) 0%, #fbefe8 100%);
}
.lp-problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.lp-problem-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-problem-card::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 3px;
  background: var(--p); border-radius: 0 0 8px 8px;
}
.lp-problem-card .lbl {
  display: inline-block;
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  color: var(--p-ink); font-size: 20px; margin-bottom: 14px;
}
.lp-problem-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lp-problem-card li {
  position: relative;
  padding: 10px 12px 10px 34px;
  background: var(--color-cream);
  border-radius: 10px;
  font-size: 13.5px; line-height: 1.7;
  color: var(--fg-1);
}
.lp-problem-card li::before {
  content: "×";
  position: absolute; left: 12px; top: 13px;
  width: 16px; height: 16px; border-radius: 3px;
  background: var(--p-soft);
  border: 1.5px solid var(--p);
  color: var(--p-deep);
  font-weight: 700; font-size: 12px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-problem-card li::after { content: none; }

.lp-problems-outro {
  margin-top: 48px; text-align: center;
  font-family: var(--font-serif-jp); font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 2;
  color: var(--fg-1);
  white-space: pre-line;
}
.lp-problems-outro em {
  font-style: italic; color: var(--p-ink);
  background: linear-gradient(180deg, transparent 72%, var(--p-soft) 72%);
}

/* ===================================================
   VOICE / INTERVIEWS
   =================================================== */
.lp-voice { background: var(--color-cream-2); }
.lp-voice-intro {
  text-align: center; max-width: 560px; margin: 0 auto 48px;
  color: var(--fg-2); line-height: 2;
  white-space: pre-line;
}

.lp-video-placeholder {
  position: relative;
  max-width: 800px; margin: 0 auto 56px;
  aspect-ratio: 16/9;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #2b1f1a 0%, #4a3428 100%);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: grid; place-items: center;
}
.lp-video-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px);
}
.lp-video-play {
  position: relative;
  width: 86px; height: 86px; border-radius: 999px;
  background: var(--p); color: var(--p-on);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.lp-video-play::after {
  content: ""; width: 0; height: 0;
  border-left: 22px solid currentColor;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateX(3px);
}
.lp-video-placeholder .vp-caption {
  position: absolute; inset: auto 0 0 0; padding: 20px 24px;
  color: #fff; font-family: var(--font-serif-jp); font-style: italic;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  font-size: 15px;
}

/* Voice section: embedded interview video */
.lp-voice-video {
  position: relative;
  max-width: 800px; margin: 0 auto 56px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.lp-voice-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lp-voice-list .lp-voice-video { margin-bottom: 0; width: 100%; }
/* Voice group: wrap video + card for each person */
.lp-voice-group {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lp-voice-group .lp-voice-video {
  margin: 0;
  width: 100%;
  border-radius: 14px;
  box-shadow: none;
}
.lp-voice-group .lp-voice-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.lp-voice-group .lp-voice-card::before { content: none; }
.lp-voice-carousel { position: relative; }
.lp-voice-nav, .lp-voice-dots { display: none; }
@media (max-width: 560px) {
  .lp-voice-group { padding: 20px; }
}

.lp-voice-list { display: grid; gap: 28px; }
.lp-voice-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 40px 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.lp-voice-card::before {
  content: "“";
  position: absolute; top: 14px; right: 28px;
  font-family: var(--font-serif-jp); font-weight: 700;
  font-size: 96px; line-height: 1; color: var(--p-soft);
}
.lp-voice-person {
  text-align: center;
}
.lp-voice-avatar {
  width: 120px; height: 120px; border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--p) 50%, #fff) 0%, color-mix(in oklab, var(--p) 20%, #fff) 100%);
  margin: 0 auto 12px;
  display: grid; place-items: center;
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  color: var(--p-ink); font-size: 14px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.lp-voice-avatar span {
  z-index: 1; background: rgba(255,255,255,.85); padding: 3px 10px; border-radius: 999px;
  letter-spacing: .05em; font-size: 11px;
}
.lp-voice-person .name {
  font-weight: 700; font-size: 15.5px; color: var(--fg-1); line-height: 1.4;
}
.lp-voice-person .role { font-size: 12px; color: var(--fg-2); margin-top: 2px; }
.lp-voice-person .years {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-label-en); font-size: 11px; letter-spacing: .08em;
  color: var(--p-ink); background: var(--p-soft);
  padding: 4px 10px; border-radius: 999px;
}
.lp-voice-body .tag {
  display: inline-block; font-family: var(--font-serif-jp); font-style: italic;
  font-weight: 600; font-size: 18px; color: var(--p-ink); margin-bottom: 14px;
  border-bottom: 2px solid var(--p-soft); padding-bottom: 4px;
}
.lp-voice-body p { font-size: 14.5px; line-height: 2; color: var(--fg-2); margin: 0 0 12px; text-align: left; }
.lp-voice-body p:last-child { margin-bottom: 0; }

/* ===================================================
   REASONS (3 cards + big alternating layout)
   =================================================== */
.lp-reasons { background: var(--color-cream); }
.lp-reason-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border-soft);
}
.lp-reason-row:first-of-type { border-top: none; }
.lp-reason-row.flip { grid-template-columns: 1.1fr 0.9fr; }
.lp-reason-row.flip .r-visual { order: 2; }
.lp-reason-row.flip .r-copy { order: 1; }

.lp-reason-row .r-num {
  font-family: var(--font-display-en); font-weight: 700;
  font-size: clamp(48px, 7vw, 84px); line-height: .9;
  color: var(--p); letter-spacing: .02em;
  display: inline-block;
}
.lp-reason-row .r-num small {
  font-size: 14px; letter-spacing: .24em; font-weight: 600;
  color: var(--p-ink); text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.lp-reason-row h3 {
  font-family: var(--font-sans-jp); font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px); line-height: 1.5;
  color: var(--fg-1); margin: 18px 0 18px;
  white-space: pre-line;
}
.lp-reason-row p {
  font-size: 14.5px; line-height: 2; color: var(--fg-2);
  white-space: pre-line; margin: 0 0 20px;
}
.lp-reason-row .r-bullets { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-reason-row .r-bullets span {
  background: var(--p-soft); color: var(--p-ink);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}

/* visual panel */
.lp-reason-row .r-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, color-mix(in oklab, var(--p) 35%, #fff) 0%, color-mix(in oklab, var(--p) 12%, #fff) 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.lp-reason-row .r-visual .illust {
  width: 280px; filter: drop-shadow(0 6px 10px rgba(61,44,38,.12));
}
.lp-reason-row .r-visual .ph-label {
  position: absolute; bottom: 14px; left: 16px;
  background: #fff; padding: 6px 12px; border-radius: 999px;
  font-size: 11px; color: var(--fg-2); font-family: var(--font-label-en);
  letter-spacing: .1em;
}

/* ===================================================
   CEO MESSAGE
   =================================================== */
.lp-ceo {
  background:
    radial-gradient(ellipse at 80% 0%, color-mix(in oklab, var(--p) 25%, transparent), transparent 55%),
    var(--color-cream-2);
}
.lp-ceo-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
  grid-template-areas:
    "photo body"
    "video video";
}
.lp-ceo-photo { grid-area: photo; }
.lp-ceo-body  { grid-area: body; }
.lp-ceo-grid > .lp-ceo-video { grid-area: video; justify-self: center; width: 100%; max-width: 680px; margin-top: 40px; }
.lp-ceo-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #d6b6a0 0%, #b5937c 100%);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: end center;
}
.lp-ceo-photo .ceo-tag {
  position: absolute; top: 16px; left: 16px;
  background: #fff; padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-family: var(--font-label-en); letter-spacing: .12em;
  color: var(--p-ink); font-weight: 600;
}
.lp-ceo-photo .caption {
  width: 100%; padding: 18px 24px 18px 32px; background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  color: #fff; position: relative; z-index: 1;
}
.lp-ceo-photo .caption .role { font-size: 11px; letter-spacing: .1em; opacity: .8; font-family: var(--font-label-en); }
.lp-ceo-photo .caption .name { font-family: var(--font-serif-jp); font-weight: 600; font-size: 20px; margin-top: 2px; }

.lp-ceo-body .quote {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.7;
  color: var(--fg-1);
  margin: 22px 0 28px;
  padding-left: 18px;
  border-left: 3px solid var(--p);
  white-space: pre-line;
}
.lp-ceo-body p { font-size: 15px; line-height: 2; color: var(--fg-2); margin: 0 0 16px; }
.lp-ceo-body .sig {
  margin-top: 24px; font-size: 13px; color: var(--fg-2);
}
.lp-ceo-body .sig strong { font-family: var(--font-serif-jp); font-weight: 600; font-size: 18px; color: var(--fg-1); display: block; margin-top: 4px; }

.lp-ceo-video {
  margin-top: 40px;
}

/* ===================================================
   TOUR (photo grid)
   =================================================== */
.lp-tour { background: var(--color-cream); }
.lp-tour-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.lp-tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.lp-tour-card:hover { box-shadow: var(--shadow-md); }
.lp-tour-card .img {
  aspect-ratio: 4/3; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.4) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, color-mix(in oklab, var(--p) 40%, #fff) 0%, color-mix(in oklab, var(--p) 15%, #fff) 100%);
  display: grid; place-items: center;
}
.lp-tour-card .img .ico {
  width: 54px; height: 54px; border-radius: 999px; background: #fff;
  display: grid; place-items: center; color: var(--p-ink);
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.lp-tour-card .tag {
  display: inline-block; font-family: var(--font-label-en);
  font-size: 11px; letter-spacing: .12em; color: var(--p-ink); font-weight: 600;
  text-transform: uppercase;
}
.lp-tour-card .body {
  padding: 26px 26px 28px;
}
.lp-tour-card h4 {
  font-family: var(--font-sans-jp); font-weight: 700;
  font-size: 17px; line-height: 1.5;
  margin: 6px 0 10px; color: var(--fg-1);
}
.lp-tour-card p { font-size: 13.5px; line-height: 1.9; color: var(--fg-2); margin: 0; }

/* ===================================================
   JOURNEY / ONBOARDING
   =================================================== */
.lp-journey { background: var(--color-cream-2); }
.lp-journey-list {
  max-width: 760px; margin: 0 auto;
  position: relative;
}
.lp-journey-list::before {
  content: ""; position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 2px; background: linear-gradient(180deg, var(--p) 0%, var(--p-soft) 100%);
  border-radius: 2px;
}
.lp-journey-step {
  position: relative;
  padding: 8px 0 48px 80px;
  display: grid; gap: 12px;
}
.lp-journey-step::before {
  content: ""; position: absolute; left: 14px; top: 12px;
  width: 28px; height: 28px; border-radius: 999px;
  background: #fff; border: 2px solid var(--p);
  box-sizing: border-box;
}
.lp-journey-step::after {
  content: ""; position: absolute; left: 22px; top: 20px;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--p);
}
.lp-journey-step .rng {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-label-en); font-weight: 600;
  font-size: 12px; letter-spacing: .12em; color: var(--p-ink);
  background: var(--p-soft); padding: 6px 14px; border-radius: 999px;
  width: fit-content;
}
.lp-journey-step h4 {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  font-size: clamp(20px, 2.6vw, 26px); line-height: 1.5;
  color: var(--fg-1); margin: 2px 0 4px;
}
.lp-journey-step p { font-size: 14.5px; line-height: 2; color: var(--fg-2); margin: 0; }

.lp-journey-note {
  max-width: 760px; margin: 24px auto 0;
  padding: 18px 22px; background: #fff;
  border-radius: 12px; border: 1px dashed var(--border-soft);
  font-size: 13px; color: var(--fg-2);
}

/* ===================================================
   FIT / WHO WE WANT
   =================================================== */
.lp-fit { background: var(--color-cream); }
.lp-fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.lp-fit-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
}
.lp-fit-card.want { border-top: 4px solid var(--p); }
.lp-fit-card.nope { border-top: 4px solid var(--color-ink-3); background: var(--color-cream-2); }

.lp-fit-card h4 {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  font-size: 22px; line-height: 1.5; color: var(--fg-1);
  margin: 0 0 18px;
}
.lp-fit-card.nope h4 { color: var(--color-ink-2); font-style: normal; font-family: var(--font-sans-jp); font-weight: 700; }

.lp-fit-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lp-fit-card li {
  position: relative; padding: 10px 12px 10px 38px;
  font-size: 14px; line-height: 1.7;
  background: var(--color-cream); border-radius: 10px;
}
.lp-fit-card.want li::before {
  content: "✓"; position: absolute; left: 12px; top: 10px;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--p); color: var(--p-on);
  font-weight: 700; font-size: 12px; text-align: center; line-height: 20px;
}
.lp-fit-card.nope li { background: #fff; color: var(--fg-2); }
.lp-fit-card.nope li::before {
  content: "—"; position: absolute; left: 14px; top: 9px;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--color-ink-3); color: #fff;
  font-weight: 700; font-size: 12px; text-align: center; line-height: 18px;
}
.lp-fit-card .note {
  margin-top: 14px; font-size: 12px; color: var(--fg-3); line-height: 1.8;
}

/* ===================================================
   TERMS / BENEFITS
   =================================================== */
.lp-terms { background: var(--color-cream-2); }
.lp-terms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.lp-terms-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px 28px;
  box-shadow: var(--shadow-sm);
}
.lp-terms-card.full { grid-column: 1 / -1; }
.lp-terms-card h4 {
  font-family: var(--font-label-en); font-weight: 600;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--p-ink); margin: 0 0 14px;
  border-bottom: 1px solid var(--border-soft); padding-bottom: 10px;
}
.lp-terms-card .row {
  display: grid; grid-template-columns: 100px 1fr; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
}
.lp-terms-card .row:last-child { border-bottom: none; }
.lp-terms-card .row dt {
  font-size: 12.5px; color: var(--fg-2); font-weight: 500;
  padding-top: 2px;
}
.lp-terms-card .row dd {
  margin: 0; font-size: 15px; color: var(--fg-1); font-weight: 600;
}
.lp-terms-card .row dd .big { font-size: 20px; font-family: var(--font-serif-jp); font-weight: 600; }
.lp-terms-card .row dd .note { display: block; font-size: 11.5px; color: var(--fg-3); font-weight: 400; margin-top: 2px; }

.lp-terms-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.lp-terms-chips span {
  background: var(--color-cream);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; color: var(--fg-1); border: 1px solid var(--border-soft);
}

/* ===================================================
   PROCESS (3 steps horizontal)
   =================================================== */
.lp-process { background: var(--color-cream); }
.lp-process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.lp-process-step {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-process-step .n {
  font-family: var(--font-display-en); font-weight: 700;
  font-size: 32px; color: var(--p); line-height: 1; letter-spacing: .04em;
  display: block;
}
.lp-process-step .n small {
  display: block; font-size: 10px; letter-spacing: .22em;
  color: var(--p-ink); font-weight: 600; margin-bottom: 6px;
}
.lp-process-step h4 {
  font-family: var(--font-sans-jp); font-weight: 700;
  font-size: 17px; line-height: 1.5;
  color: var(--fg-1); margin: 12px 0 8px;
}
.lp-process-step p { font-size: 13px; line-height: 1.9; color: var(--fg-2); margin: 0; }
.lp-process-step + .lp-process-step::before {
  content: "›"; position: absolute; left: -14px; top: 44px;
  color: var(--p); font-family: var(--font-serif-jp); font-weight: 700; font-size: 28px;
}

/* ===================================================
   CTA (LINE)
   =================================================== */
.lp-cta {
  padding: clamp(72px, 10vw, 120px) 24px;
  background:
    radial-gradient(ellipse at 15% 50%, color-mix(in oklab, var(--p) 25%, transparent), transparent 50%),
    radial-gradient(ellipse at 85% 50%, color-mix(in oklab, var(--p) 25%, transparent), transparent 50%),
    var(--color-cream-2);
  position: relative;
  overflow: hidden;
}
.lp-cta-inner {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-inner::before {
  content: ""; position: absolute;
  top: -60px; right: -60px; width: 180px; height: 180px;
  background: var(--p-soft); border-radius: 999px;
  opacity: .7;
}
.lp-cta-inner::after {
  content: ""; position: absolute;
  bottom: -60px; left: -60px; width: 140px; height: 140px;
  background: var(--p-soft); border-radius: 999px;
  opacity: .5;
}
.lp-cta-inner > * { position: relative; }

.lp-cta h3 {
  font-family: var(--font-serif-jp); font-style: italic; font-weight: 600;
  font-size: clamp(22px, 3.2vw, 34px); line-height: 1.6;
  color: var(--fg-1); white-space: pre-line;
  margin: 8px 0 24px;
}
.lp-cta-list {
  display: grid; gap: 8px;
  margin: 0 auto 28px;
  max-width: 420px;
  text-align: left;
}
.lp-cta-list div {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 12px 16px 12px 40px;
  position: relative;
  font-size: 13.5px; color: var(--fg-1);
}
.lp-cta-list div::before {
  content: ""; position: absolute; left: 14px; top: 14px;
  width: 14px; height: 14px; border-radius: 999px; background: var(--p);
}
.lp-cta-list div:last-child { background: transparent; padding-left: 16px; font-weight: 600; text-align: center; }
.lp-cta-list div:last-child::before { display: none; }

.lp-line-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #06c755;
  color: #fff !important;
  font-weight: 700; font-size: 17px;
  padding: 18px 44px;
  white-space: nowrap;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(6,199,85,.28);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
  border: none;
}
.lp-line-btn:hover { box-shadow: 0 16px 32px rgba(6,199,85,.36); }
.lp-line-btn .line-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: #fff; color: #06c755;
  font-weight: 700; font-size: 12px; letter-spacing: .02em;
  font-family: var(--font-label-en);
}

.lp-cta-note {
  margin-top: 22px; font-size: 12px; color: var(--fg-3);
}

/* ===================================================
   Floating LINE chip (visible after scroll)
   =================================================== */
.lp-float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  background: #06c755; color: #fff !important;
  padding: 14px 22px 14px 16px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 24px rgba(6,199,85,.4);
  transform: translateY(30px); opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out), background .2s;
  pointer-events: none;
}
.lp-float-cta.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lp-float-cta:hover { background: #05a847; }
.lp-float-cta .line-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: #fff; color: #06c755;
  font-weight: 800; font-size: 11px; letter-spacing: .02em;
  font-family: var(--font-label-en);
}

/* ===================================================
   Footer
   =================================================== */
.lp-footer {
  background: #2e2017; color: #e8d9c9;
  padding: 48px 24px 24px;
}
.lp-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: start;
}
.lp-footer h5 { font-family: var(--font-display-en); font-weight: 600; font-size: 14px; letter-spacing: .1em; margin: 0 0 10px; color: #fff; }
.lp-footer p { font-size: 12.5px; line-height: 1.9; margin: 0 0 4px; color: rgba(232,217,201,.7); }
.lp-footer .links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-footer .links a { color: rgba(232,217,201,.85); font-size: 13px; text-decoration: none; }
.lp-footer .links a:hover { color: #fff; }
.lp-footer .copy { margin-top: 32px; font-family: var(--font-label-en); font-size: 11px; letter-spacing: .04em; color: rgba(232,217,201,.4); text-align: center; }

/* ===================================================
   Tweaks panel
   =================================================== */
.tweaks-panel {
  position: fixed; right: 20px; top: 78px; z-index: 60;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  font-family: var(--font-sans-jp);
  border: 1px solid var(--border-soft);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h6 {
  margin: 0 0 12px; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg-2); font-weight: 600;
  font-family: var(--font-label-en);
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks-panel h6 .close {
  cursor: pointer; color: var(--fg-3); font-size: 14px;
}
.tweaks-panel .tweak-group { margin-bottom: 14px; }
.tweaks-panel label { display: block; font-size: 11.5px; color: var(--fg-2); margin-bottom: 6px; font-weight: 500; }
.tweaks-panel .swatches { display: flex; gap: 8px; }
.tweaks-panel .swatch {
  width: 36px; height: 36px; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer;
}
.tweaks-panel .swatch.active { border-color: var(--fg-1); }
.tweaks-panel .swatch.pink   { background: #f4a8a8; }
.tweaks-panel .swatch.yellow { background: #e6b53d; }
.tweaks-panel .swatch.brown  { background: #8a6a55; }

.tweaks-panel select {
  width: 100%; padding: 8px 10px; font-size: 13px;
  border: 1px solid var(--border-soft); border-radius: 8px;
  background: #fff; font-family: inherit; color: var(--fg-1);
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { height: 320px; }
  .lp-hero-kpis { max-width: 100%; }
  .lp-problems-grid { grid-template-columns: 1fr; }
  .lp-voice-list {
    display: flex; flex-direction: row; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 16px; padding: 4px 20px 20px; margin: 0 -20px;
    scrollbar-width: none;
  }
  .lp-voice-list::-webkit-scrollbar { display: none; }
  .lp-voice-list > .lp-voice-group { flex: 0 0 88%; scroll-snap-align: center; min-width: 0; }
  .lp-voice-carousel { position: relative; }
  .lp-voice-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 999px;
    background: rgba(255,255,255,.92); border: 1px solid var(--border-soft);
    color: var(--p-ink); font-size: 24px; font-weight: 700; line-height: 1;
    display: grid; place-items: center; cursor: pointer; z-index: 5;
    box-shadow: var(--shadow-sm);
  }
  .lp-voice-nav.prev { left: 4px; }
  .lp-voice-nav.next { right: 4px; }
  .lp-voice-nav:disabled { opacity: .3; cursor: default; }
  .lp-voice-dots { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
  .lp-voice-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--color-line); border: none; padding: 0; cursor: pointer;
    transition: background .2s var(--ease-out), transform .2s var(--ease-out);
  }
  .lp-voice-dot.active { background: var(--p); transform: scale(1.4); }
  .lp-voice-card { grid-template-columns: 1fr; text-align: center; }
  .lp-voice-card::before { right: 20px; top: 8px; font-size: 64px; }
  .lp-reason-row, .lp-reason-row.flip { grid-template-columns: 1fr; gap: 28px; }
  .lp-reason-row.flip .r-visual, .lp-reason-row.flip .r-copy { order: unset; }
  .lp-reason-row .r-visual { aspect-ratio: 16/9; max-height: 280px; }
  .lp-reason-row .r-visual .illust { width: 200px; }
  .lp-reason-row .r-visual .ph-label { bottom: 10px; left: 12px; padding: 4px 10px; font-size: 10px; }
  .lp-ceo-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "video"
      "body";
  }
  .lp-ceo-grid > .lp-ceo-video { margin-top: 0; }
  .lp-tour-grid { grid-template-columns: 1fr; }
  .lp-fit-grid { grid-template-columns: 1fr; }
  .lp-terms-grid { grid-template-columns: 1fr; }
  .lp-process-steps { grid-template-columns: 1fr; }
  .lp-process-step + .lp-process-step::before { display: none; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-topbar .topnav a:not(.pill) { display: none; }
}

/* tiny fade-in on load */
.lp-root .fade-in { opacity: 0; transform: translateY(16px); animation: fadeIn .8s var(--ease-out) forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }


/* =====================================================================
   SCROLL FADE-IN + STATIC STYLES
   The only motion is a gentle scroll-driven fade-up (reveal / stagger)
   plus the initial hero fade-in. Everything else is static.
   ===================================================================== */

/* ========= Scroll reveal (fade-up) ========= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
/* All reveal directions collapse to the same gentle fade-up */
.reveal.slide-left, .reveal.slide-right, .reveal.zoom { transform: translateY(28px); }
.reveal.slide-left.in, .reveal.slide-right.in, .reveal.zoom.in { transform: translateY(0); }

.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .12s; }
.stagger.in > *:nth-child(3) { transition-delay: .19s; }
.stagger.in > *:nth-child(4) { transition-delay: .26s; }
.stagger.in > *:nth-child(5) { transition-delay: .33s; }
.stagger.in > *:nth-child(6) { transition-delay: .40s; }
.stagger.in > *:nth-child(7) { transition-delay: .47s; }
.stagger.in > *:nth-child(8) { transition-delay: .54s; }
.stagger.in > *:nth-child(n+9) { transition-delay: .60s; }

/* reduce motion — show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
  .fade-in { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ========= Hero (static background) ========= */
.lp-hero {
  padding: 88px 24px 108px;
  background:
    radial-gradient(ellipse at 85% 8%, color-mix(in oklab, var(--p) 45%, transparent), transparent 55%),
    radial-gradient(ellipse at 6% 88%, color-mix(in oklab, var(--p) 26%, transparent), transparent 55%),
    linear-gradient(180deg, #fff9f1 0%, var(--color-cream) 100%);
  isolation: isolate;
}
.lp-hero-inner { position: relative; z-index: 2; }
.lp-hero-badge { backdrop-filter: blur(4px); }
.lp-hero-visual { height: 500px; }

/* ========= Gradient text helper ========= */
.grad-text {
  background: linear-gradient(90deg, var(--p-deep), var(--p), var(--p-ink));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ========= Real-image overrides ========= */
.lp-hero-photo .ph-inner { background: none; }
.lp-hero-photo .ph-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: inherit;
}

.lp-voice-avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: inherit;
  z-index: 0;
}
.lp-voice-avatar span { z-index: 2; }

.lp-ceo-photo { background: #111; overflow: hidden; }
.lp-ceo-photo .ceo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.lp-ceo-photo .ceo-tag,
.lp-ceo-photo .caption { z-index: 2; }
.lp-ceo-photo .caption { background: linear-gradient(to top, rgba(0,0,0,.65), transparent); }

.lp-tour-card .img { position: relative; overflow: hidden; }
.lp-tour-card .img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-tour-card .img .ico {
  position: relative; z-index: 1;
  box-shadow: 0 6px 22px rgba(0,0,0,.25);
}

/* ========= Reason heading underline (static) ========= */
.lp-reason-row h3 { position: relative; }
.lp-reason-row h3::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 56px; height: 3px; background: var(--p); border-radius: 2px;
}

/* ========= Responsive ========= */
@media (max-width: 900px) {
  .lp-hero { padding: 56px 20px 80px; }
  .lp-hero-visual { height: 360px; }
}


/* ========= Narrow phones — extra breathing room ========= */
@media (max-width: 560px) {
  .lp-section { padding-left: 20px; padding-right: 20px; }
  .lp-hero { padding-left: 20px; padding-right: 20px; }
  .lp-label-center { margin-bottom: 44px; }

  /* KPI: stack into a single column, value + label on one row */
  .lp-hero-kpis { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; max-width: 100%; }
  .lp-hero-kpi { display: flex; align-items: baseline; justify-content: flex-start; gap: 12px; padding: 16px 20px; text-align: left; }
  .lp-hero-kpi .t { margin-top: 0; }

  .lp-problem-card { padding: 26px 22px 22px; }
  .lp-voice-card { padding: 26px 22px 24px; }
  .lp-fit-card { padding: 28px 24px 24px; }
  .lp-terms-card { padding: 24px 22px 22px; }
  .lp-cta-inner { padding: 44px 24px; }
  .lp-cta h3 { font-size: 18px; line-height: 1.7; }
  .lp-line-btn { font-size: 16px; padding: 16px 22px; gap: 8px; }
  .lp-cta-note { font-size: 11px; letter-spacing: -0.01em; white-space: nowrap; }

  /* Narrative copy — keep to requested line counts on narrow phones */
  .lp-problems-outro { font-size: 11px; letter-spacing: -0.02em; line-height: 1.95; }
  .lp-journey-note   { font-size: 11px; letter-spacing: -0.01em; line-height: 1.8; }
  /* Terms salary note — keep on a single line */
  .lp-terms-card.full > p { font-size: 10px !important; letter-spacing: -0.01em; white-space: nowrap; }
}


/* Mobile: honor explicit \n line breaks in narrative copy */
@media (max-width: 900px) {
  .lp-voice-intro,
  .lp-problems-outro,
  .lp-journey-note,
  .lp-tour .lp-label-center p,
  .lp-journey .lp-label-center p,
  .lp-fit .lp-label-center p { white-space: pre-line; }

  /* problems-outro: target exactly 3 lines on mobile (1 + 2) */
  .lp-problems-outro { font-size: 15px; line-height: 1.85; }
}
