/* ============================================================
   Rocket Now × 株式会社CENTER | LP v3
   CBR-Japan inspired editorial layout with photos
============================================================ */

:root {
  /* Brand */
  --navy: #0A2540;
  --navy-700: #1E3A5F;
  --navy-soft: #3B5980;

  /* Text */
  --ink-1: #0F172A;
  --ink-2: #334155;
  --ink-3: #475569;
  --ink-4: #64748B;
  --ink-5: #94A3B8;
  --ink-6: #CBD5E1;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-lg: #F5F6F8;      /* light gray section */
  --bg-lb: #EFF4FB;      /* light blue section */
  --bg-paper: #FAFBFC;

  /* Lines */
  --line: #E5E7EB;
  --line-strong: #CBD5E1;

  /* Brand red (CBR uses red for big numbers) */
  --aka: #D72E2E;
  --aka-deep: #B81E1E;

  /* Gold for emblem */
  --gold: #C49A3F;

  /* CTA */
  --cta: #D72E2E;
  --cta-hover: #B81E1E;
  --cta-outline: #0A2540;

  /* Status */
  --green: #16A34A;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 2px 8px -2px rgba(15,23,42,.08);
  --shadow-md: 0 10px 28px -10px rgba(15,23,42,.12);
  --shadow-lg: 0 24px 56px -22px rgba(15,23,42,.20);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;

  /* Fonts */
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", system-ui, sans-serif;
  --en: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 980px;
  --header-h: 76px;
  --sticky-h: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-1);
  background: var(--bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.85;
  font-size: 15px;
  padding-bottom: var(--sticky-h);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.lp-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* Show/hide helpers */
.sp { display: inline; }
.pc { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 60px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--navy);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: var(--en);
  font-weight: 900;
  font-size: 16px;
}
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-logo-footer {
  height: 32px;
  filter: invert(1) brightness(2);
}
.brand-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .04em;
}
.brand-name small {
  display: block;
  font-family: var(--en);
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: .22em;
  color: var(--ink-4);
  margin-top: 2px;
}
.gnav {
  display: none;
  align-items: center;
  gap: 28px;
}
.gnav a {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: color .2s;
}
.gnav a:hover { color: var(--navy); }
.gnav a span {
  display: block;
  font-family: var(--en);
  font-size: 9.5px;
  color: var(--ink-5);
  font-weight: 500;
  letter-spacing: .12em;
  margin-top: 3px;
}
.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  transition: all .2s;
  min-height: 38px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #FFFFFF; }
.btn-fill {
  background: var(--cta);
  color: #FFFFFF;
  border-color: var(--cta);
  box-shadow: 0 6px 12px -6px rgba(215, 46, 46, .5);
}
.btn-fill:hover { background: var(--cta-hover); border-color: var(--cta-hover); }

/* ---------- Hero — image at bottom, lead text above (CTA/card overlap OK) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  background-color: #FAF6F0;
  background-image: url('images/hero-isometric.png');
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 45%,
    rgba(255,255,255,0.92) 80%,
    #FFFFFF 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}
/* Mobile hero overrides moved to end of file for proper cascade */
.hero-left { order: 1; }
.hero-right {
  order: 2;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.hero-right picture { display: none; }
.hero-right img { display: none; }
.hero-floating-stat {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #E63838 0%, #B81E1E 100%);
  border-radius: 16px;
  padding: 16px 26px 20px;
  box-shadow:
    0 18px 40px -10px rgba(215,46,46,0.45),
    0 0 0 4px rgba(215,46,46,0.12);
  text-align: center;
  color: #FFFFFF;
  transform: rotate(-2deg);
  animation: bonusPulse 2.6s ease-in-out infinite;
  margin-top: 8px;
}
@keyframes bonusPulse {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(-2deg) scale(1.04); }
}
.floating-stat-tag {
  display: inline-block;
  background: #FFFFFF;
  color: var(--aka);
  font-size: 10.5px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: .06em;
}
.floating-stat-num {
  font-family: var(--en);
  font-weight: 900;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -.02em;
  margin: 4px 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.floating-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  line-height: 1.55;
  margin-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-badge p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}
.hero-badge .num {
  font-family: var(--en);
  font-weight: 900;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: -.01em;
}
.hero-badge span:not(.num) {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 700;
}
.wreath {
  width: 48px;
  height: 64px;
  flex-shrink: 0;
}

.hero-subtitle {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.subtitle-static { display: inline; }
.subtitle-marquee { display: none; }
.hero-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: .005em;
  margin: 0 0 24px;
}
.hero-title .aka {
  color: var(--aka);
}
.hero-lead {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0 0 28px;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--cta);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  min-height: 64px;
  box-shadow: 0 10px 24px -10px rgba(215, 46, 46, .55);
  letter-spacing: .02em;
}
.hero-cta span {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  margin-top: 4px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .02em;
}
.hero-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(215, 46, 46, .65);
}
.hero-cta-sub {
  background: #FFFFFF;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  box-shadow: 0 4px 12px -4px rgba(10, 37, 64, .15);
}
.hero-cta-sub span { color: var(--ink-4); }
.hero-cta-sub:hover {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.hero-cta-sub:hover span { color: rgba(255,255,255,.85); }

/* ---------- Section bg variants ---------- */
.bg-lg { background: var(--bg-lg); padding: 56px 0; }
.bg-lb { background: var(--bg-lb); padding: 56px 0; }

section:not(.hero):not(.bg-lg):not(.bg-lb):not(.cta-block):not(.section-problems) {
  padding: 56px 0;
}

/* ---------- Intro / Section heads ---------- */
.intro {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 760px;
}
.intro-sub {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.intro-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 4.5vw, 32px);
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: .005em;
  margin: 0 0 16px;
}
.intro-text {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.95;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Points grid (Why) ---------- */
.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.point-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.point-image {
  aspect-ratio: 16 / 10;
  background: var(--bg-lg);
}
.point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-label {
  margin: 22px 24px 8px;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.point-label span {
  color: var(--aka);
  font-weight: 900;
  font-size: 16px;
  margin-left: 6px;
}
.point-heading {
  margin: 0 24px 12px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
}
.point-text {
  margin: 0 24px 24px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.95;
}

/* ---------- Problems section ---------- */
.section-problems {
  background: var(--bg-lb);
  padding: 56px 0 32px;
}
.bg-lb.flush-top { padding-top: 0; }
.problems-title {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 4.5vw, 30px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 40px;
}
.problems-title-sub {
  display: inline-block;
  font-size: .68em;
  color: var(--ink-3);
  background: #FFFFFF;
  padding: 4px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  font-weight: 700;
  margin-bottom: 10px;
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
}
.problem-image {
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: visible;
  transition: transform .4s;
}
.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.problem-card:hover .problem-image {
  transform: translateY(-4px);
}
.problem-heading {
  display: inline-block;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  padding: 12px 18px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(15,23,42,.06);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.55;
  color: var(--navy);
  text-align: center;
}

/* ---------- Banner area ---------- */
.banner-area {
  position: relative;
  padding: 60px 24px;
  background: #FFFFFF;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--navy);
}
.banner-arrow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 16px 16px;
  border-color: transparent transparent var(--bg-lb) transparent;
}
.banner-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 4.5vw, 28px);
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}
.banner-title .aka { color: var(--aka); }
.banner-sub {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 700;
}
.banner-num {
  font-family: var(--en);
  font-weight: 900;
  font-size: 56px;
  color: var(--aka);
  line-height: 1;
  margin: 0 4px;
  vertical-align: -8px;
}
.banner-sub small {
  font-size: 16px;
  color: var(--navy);
  font-weight: 900;
}

/* ---------- Detail rows ---------- */
.detail-row {
  margin-bottom: 36px;
}
.detail-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-lg);
  box-shadow: var(--shadow-sm);
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-text { padding: 0 4px; }
.detail-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--aka);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.detail-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 14px;
}
.detail-title .aka { color: var(--aka); }
.detail-description {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.95;
  margin: 0 0 16px;
}
.detail-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.detail-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.8;
}
.detail-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--navy);
  border-radius: 2px;
}
.detail-bullets li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}

/* ---------- Simulator ---------- */
.sim-wrap {
  background: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.sim-lede {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin: 0 0 22px;
  line-height: 1.85;
}
.sim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.sim-month {
  background: var(--bg-lg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  transition: all .25s;
}
.sim-month.met {
  background: #FFF5F5;
  border-color: var(--aka);
  box-shadow: 0 0 0 1px var(--aka), var(--shadow-sm);
}
.sim-m {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.sim-month.met .sim-m { color: var(--aka); }
.sim-req {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  margin: 6px 0 14px;
}
.sim-control {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 4px;
}
.sim-control button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all .15s;
}
.sim-control button:hover { background: var(--bg-lg); }
.sim-control button:active { transform: scale(.92); }
.sim-num {
  font-family: var(--en);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
}
.sim-target {
  display: block;
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 10px;
}
.sim-result {
  background: var(--navy);
  color: #FFFFFF;
  border-radius: var(--r-md);
  padding: 22px;
}
.sim-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}
.sim-result-row span:first-child {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.sim-result-row span:last-child {
  font-family: var(--en);
  font-weight: 900;
  font-size: 18px;
  color: #FFFFFF;
}
.sim-result hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 10px 0;
}
.sim-result-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
}
.sim-result-total span:first-child {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}
.sim-result-total span:last-child {
  font-family: var(--en);
  font-weight: 900;
  font-size: 32px;
  color: #FFFFFF;
  letter-spacing: -.01em;
}
.sim-progress {
  margin-top: 14px;
  height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.sim-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--aka));
  border-radius: 999px;
  transition: width .5s ease;
}
.sim-progress-lbl {
  display: block;
  margin-top: 10px;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}
.sim-note {
  margin: 18px 0 0;
  font-size: 11.5px;
  color: var(--ink-4);
  text-align: center;
  line-height: 1.8;
}

/* ---------- CTA block ---------- */
.cta-block {
  padding: 56px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-lg) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--aka);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.cta-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 14px;
}
.cta-description {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.95;
  max-width: 600px;
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: all .2s;
  min-height: 62px;
  letter-spacing: .02em;
  font-size: 15px;
}
.cta-button-text {
  font-size: 15px;
  font-weight: 900;
}
.cta-button-note {
  font-size: 10.5px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .02em;
}
.cta-button-primary {
  background: var(--cta);
  color: #FFFFFF;
  border: 1.5px solid var(--cta);
  box-shadow: 0 8px 18px -8px rgba(215, 46, 46, .55);
}
.cta-button-primary .cta-button-note { color: rgba(255,255,255,.85); }
.cta-button-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
}
.cta-button-secondary {
  background: #FFFFFF;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.cta-button-secondary .cta-button-note { color: var(--ink-4); }
.cta-button-secondary:hover {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.cta-button-secondary:hover .cta-button-note { color: rgba(255,255,255,.85); }

/* ---------- Support cards ---------- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.support-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.support-image {
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: visible;
}
.support-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.support-content {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 18px 20px 22px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(15,23,42,.05);
}
.support-step {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--aka);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.support-heading {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.55;
  margin: 0 0 10px;
}
.support-text {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.95;
  margin: 0;
}

/* ---------- Features grid (interview prep) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-xs);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-lb);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-content { min-width: 0; }
.feature-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 6px;
}
.feature-description {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.85;
  margin: 0;
}

/* ---------- Flow stepline ---------- */
.flow-stepline {
  display: grid;
  gap: 14px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  align-items: center;
  box-shadow: var(--shadow-xs);
}
.flow-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.flow-icon svg { width: 32px; height: 32px; }
.flow-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 14.5px;
  color: var(--navy);
  margin: 0;
  line-height: 1.45;
}
.flow-step {
  display: inline-block;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--aka);
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 10px;
}
.flow-text {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0;
}
.flow-dur {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  background: var(--bg-lb);
  color: var(--navy);
  border-radius: 999px;
  align-self: start;
  width: max-content;
}

/* ---------- Timeline (Day in life) ---------- */
.timeline {
  display: grid;
  gap: 16px;
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: calc(90px + 16px + 11px);
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: auto 22px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
}
.timeline-time {
  font-family: var(--en);
  font-weight: 900;
  font-size: 12.5px;
  color: var(--aka);
  padding-top: 18px;
  letter-spacing: .04em;
  white-space: nowrap;
  text-align: right;
  min-width: 90px;
}
.timeline-icon {
  position: relative;
  left: auto;
  top: 14px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border: 2px solid var(--aka);
  border-radius: 50%;
  z-index: 2;
}
.timeline-icon img { display: none; }
.timeline-content {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-xs);
}
.timeline-content h4 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 14.5px;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.5;
}
.timeline-content p {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.85;
  margin: 0;
}

/* ---------- Spec table ---------- */
.spec-table {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.spec-table th, .spec-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.85;
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th {
  background: var(--bg-paper);
  font-weight: 700;
  color: var(--navy);
  width: 35%;
  font-size: 13px;
}
.spec-table td { color: var(--ink-2); }
.spec-table td strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
}
.spec-table .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 4px;
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s;
}
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  font-family: var(--en);
  font-weight: 900;
  color: var(--aka);
  font-size: 16px;
  flex-shrink: 0;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: var(--bg-lg);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  transition: all .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--navy);
  color: #FFFFFF;
}
.faq-item p {
  padding: 0 20px 20px 50px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.95;
  margin: 0;
}

/* ---------- Apply ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.apply-trusts {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.apply-trusts li {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 700;
  padding: 8px 0;
}
.apply-summary {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}
.apply-summary h4 {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--aka);
  font-weight: 700;
  margin: 0 0 12px;
}
.apply-summary dl { margin: 0; display: grid; gap: 8px; }
.apply-summary dl > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12.5px;
  gap: 12px;
}
.apply-summary dl > div:last-child { border-bottom: 0; }
.apply-summary dt { color: var(--ink-4); }
.apply-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}

.apply-form {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-lg);
}
.apply-form-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 4px;
}
.apply-form-sub {
  font-size: 12.5px;
  color: var(--ink-4);
  margin: 0 0 24px;
}
.form-row { display: grid; gap: 7px; margin-bottom: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.form-grid-2 .form-row { margin-bottom: 0; }
.form-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
}
.form-row label .req {
  font-size: 9.5px;
  color: #FFFFFF;
  background: var(--aka);
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 700;
}
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 14px;
  background: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink-1);
  outline: none;
  transition: all .15s;
  min-height: 48px;
  width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, .08);
}
.form-row textarea { resize: vertical; min-height: 80px; }

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.slot {
  border: 1px solid var(--line-strong);
  background: #FFFFFF;
  padding: 12px 8px;
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  font-size: 11.5px;
  color: var(--ink-3);
  transition: all .15s;
  min-height: 56px;
}
.slot:hover:not(.disabled):not(.active) {
  border-color: var(--navy);
  background: var(--bg-lg);
}
.slot.active {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.slot.active .slot-date { color: #FFFFFF; }
.slot-date {
  display: block;
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
}
.slot-time {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  margin-top: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0 16px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.7;
  cursor: pointer;
}
.checkbox-row input {
  margin-top: 3px;
  accent-color: var(--navy);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.checkbox-row a { color: var(--navy); text-decoration: underline; }

.apply-success {
  text-align: center;
  padding: 40px 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.success-check {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: #FFFFFF;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 28px;
}
.apply-success h3 {
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 12px;
}
.apply-success p {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.95;
}
.apply-success strong {
  font-family: var(--en);
  font-weight: 900;
  color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 0 28px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand .brand-mark {
  background: #FFFFFF;
  color: var(--navy);
}
.footer-brand .brand-name { color: #FFFFFF; }
.footer-brand .brand-name small { color: rgba(255,255,255,.55); }
.footer-bio {
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin: 14px 0 0;
  max-width: 460px;
}
.footer-company-info {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.footer-company-info > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: baseline;
}
.footer-company-info dt {
  font-size: 10.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}
.footer-company-info dd {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}
.footer-company-info a {
  color: rgba(255,255,255,.82);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
}
.footer-company-info a:hover { color: #FFFFFF; }
.footer-company ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  gap: 20px;
  font-size: 12px;
}
.footer-company a:hover { color: #FFFFFF; }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ---------- Contact Form ---------- */
.contact-section { padding: 72px 0 88px; }
.contact-form {
  max-width: 880px;
  margin: 28px auto 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .contact-row { grid-template-columns: 1fr 1fr; }
}
.contact-field { display: grid; gap: 6px; }
.contact-field-full { width: 100%; }
.contact-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.contact-label em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--aka);
  color: #FFF;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: .04em;
}
.contact-label em.opt {
  background: var(--ink-6);
  color: var(--ink-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-1);
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #FFFFFF;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.8;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,.12);
}
.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230A2540' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.contact-consent {
  font-size: 12px;
  color: var(--ink-4);
  margin: 0;
}
.contact-consent a {
  color: var(--navy);
  text-decoration: underline;
}
.contact-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.contact-submit {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 16px 56px;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: var(--shadow-md);
}
.contact-submit:hover:not(:disabled) {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.contact-submit:disabled {
  background: var(--ink-5);
  cursor: not-allowed;
  box-shadow: none;
}
.contact-status {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  min-height: 22px;
}
.contact-status.is-success { color: var(--green); }
.contact-status.is-error { color: var(--aka); }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px) saturate(180%);
  border-top: 1px solid var(--line-strong);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -8px 24px -8px rgba(15,23,42,.12);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sticky-cta.sticky-cta--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.sticky-cta-l {
  font-family: var(--en);
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--ink-4);
  font-weight: 700;
}
.sticky-cta-v {
  font-family: var(--en);
  font-weight: 900;
  font-size: 18px;
  color: var(--aka);
  margin-top: 2px;
}
.sticky-cta .btn {
  flex: 1;
  min-height: 46px;
  font-size: 13.5px;
}

/* ============================================================
   Responsive: Tablet & Desktop
============================================================ */
@media (min-width: 768px) {
  body { font-size: 16px; padding-bottom: 0; }
  .sp { display: none; }
  .pc { display: inline; }
  .lp-inner { padding: 0 40px; }
  .header-inner { padding: 0 40px; height: 76px; }
  .gnav { display: flex; }

  /* Hero — single seamless image with text overlay on the empty left portion */
  .hero {
    padding: 0;
    min-height: 720px;
    background-color: #FAF6F0;
    background-image: url('images/hero-isometric.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-inner {
    display: block;
    position: relative;
    padding: 110px 22px 90px;
  }
  .hero-left {
    max-width: 500px;
  }
  .hero-right { display: none; }
  .hero-top-row { display: contents; }
  .hero-floating-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
  }
  .hero-cta-wrap { flex-direction: row; }
  .hero-cta { flex: 1; }
  .hero-title { font-size: clamp(34px, 4.5vw, 48px); }

  /* Sections */
  .bg-lg, .bg-lb, .cta-block { padding: 88px 0; }
  section:not(.hero):not(.bg-lg):not(.bg-lb):not(.cta-block):not(.section-problems) { padding: 88px 0; }
  .section-problems { padding: 88px 0 40px; }

  .intro { margin-bottom: 56px; }
  .intro-title { font-size: clamp(28px, 3.5vw, 36px); }

  /* Points (Why) */
  .points-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  /* Problems */
  .problems-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  /* Banner */
  .banner-area { padding: 80px 40px; }
  .banner-num { font-size: 80px; vertical-align: -12px; }
  .banner-sub { font-size: 20px; }
  .banner-sub small { font-size: 20px; }

  /* Detail rows */
  .detail-row { margin-bottom: 56px; }
  .detail-content {
    flex-direction: row !important;
    display: flex;
    align-items: center;
    gap: 56px;
  }
  .detail-row-reverse .detail-content { flex-direction: row-reverse !important; }
  .detail-image, .detail-text { flex: 1; }
  .detail-image { aspect-ratio: 5 / 4; }
  .detail-title { font-size: 26px; }

  /* Simulator */
  .sim-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA */
  .cta-buttons { flex-direction: row; max-width: 560px; }
  .cta-button { flex: 1; }

  /* Support */
  .support-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Flow */
  .flow-item { grid-template-columns: 80px 1fr auto; align-items: center; }
  .flow-icon { width: 72px; height: 72px; }
  .flow-content { gap: 6px; }
  .flow-dur { margin-top: 0; }

  /* Timeline */
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 120px 22px 1fr; gap: 20px; }
  .timeline-time { min-width: 120px; }
  .timeline::before { left: calc(120px + 20px + 11px); }

  /* Apply */
  .apply-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .apply-form { padding: 36px 32px; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr; gap: 56px; }

  /* Hide sticky on desktop */
  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 52px; line-height: 1.35; }
  .intro-title { font-size: 36px; }
}

/* =========================================================
   Popup Modal (5秒後表示)
   ========================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: popupFadeIn 0.3s ease-out;
  backdrop-filter: blur(4px);
}
.popup-overlay[hidden] { display: none; }
@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.popup-dialog {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(10, 37, 64, 0.35);
  animation: popupSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.popup-close:hover { background: #F4F5F7; color: var(--navy); }
.popup-badge {
  display: inline-block;
  background: #FFF4E6;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.popup-title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.popup-title .aka { color: var(--aka); }
.popup-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.popup-text strong {
  color: var(--aka);
  font-weight: 800;
}
.popup-bullets {
  list-style: none;
  padding: 16px 18px;
  margin: 0 0 22px;
  background: #F7F9FC;
  border-radius: 10px;
  border-left: 3px solid var(--aka);
}
.popup-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 6px;
}
.popup-bullets li:last-child { margin-bottom: 0; }
.popup-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aka);
  font-weight: 900;
  font-size: 14px;
}
.popup-bullets strong { color: var(--aka); }
.popup-cta {
  display: block;
  background: var(--aka);
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 16px rgba(215, 46, 46, .25);
}
.popup-cta:hover {
  background: #B82424;
  transform: translateY(-1px);
}
.popup-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 4px;
  letter-spacing: .02em;
}
.popup-dismiss {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.popup-dismiss:hover { color: var(--navy); }

@media (max-width: 480px) {
  .popup-dialog { padding: 30px 22px 22px; }
  .popup-title { font-size: 19px; }
}

/* =========================================================
   Day in life: 2-column with photo on right
   ========================================================= */
.day-section { padding-top: 56px; padding-bottom: 56px; }
.day-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro-left { text-align: left; margin: 0 0 28px; max-width: none; }
.day-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(15,23,42,.25);
}
.day-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.day-photo figcaption {
  padding: 12px 16px;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}

@media (min-width: 1024px) {
  .day-section { padding-top: 88px; padding-bottom: 88px; }
  .day-grid {
    flex-direction: row;
    gap: 56px;
    align-items: stretch;
  }
  .day-left { flex: 1 1 0; min-width: 0; }
  .day-right {
    flex: 0 0 380px;
    position: relative;
    display: flex;
  }
  .day-photo {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .day-photo img {
    flex: 1 1 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
    min-height: 0;
  }
  .day-photo figcaption { flex-shrink: 0; }
}

/* =========================================================
   Scheduler Embed
   ========================================================= */
.scheduler-embed {
  margin-top: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #FFFFFF;
}
.scheduler-embed iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}
.scheduler-fallback {
  font-size: 12px;
  color: var(--ink-4);
  margin: 10px 2px 0;
  line-height: 1.7;
}
.scheduler-fallback a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}
.scheduler-fallback a:hover { color: var(--aka); }
@media (max-width: 767px) {
  .scheduler-embed iframe {
    height: 520px;
  }
  .apply-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

/* =========================================================
   Mobile Hero Overrides (placed last so they win cascade)
   ========================================================= */
@media (max-width: 1023px) {
  .hero {
    min-height: calc(100dvh - 60px);
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    background-image: none;
  }
  .hero::after { display: none; }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 65% 55% at 10% 15%, rgba(215,46,46,0.10) 0%, transparent 70%),
      radial-gradient(ellipse 50% 45% at 90% 60%, rgba(196,120,40,0.12) 0%, transparent 65%),
      radial-gradient(ellipse 75% 40% at 50% 95%, rgba(230,160,60,0.10) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 80% 8%, rgba(210,90,30,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 55% 50% at 25% 50%, rgba(196,154,63,0.09) 0%, transparent 65%);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows:
      1.4fr     /* 1: top breathing room */
      auto      /* 2: badge + banner */
      0.5fr     /* 3: gap */
      auto      /* 4: title (image starts) */
      auto      /* 5: lead  (image ends) */
      0px       /* 6: image = ticker */
      auto      /* 7: marquee ticker */
      0.2fr     /* 8: gap before CTAs */
      auto;     /* 9: CTAs */
  }

  .hero-left { display: contents; }

  /* Row assignments */
  .hero-top-row   { grid-row: 2; }
  .hero-title     { grid-row: 4; grid-column: 1; z-index: 1; padding: 0 18px; }
  .hero-lead      { grid-row: 5; grid-column: 1; z-index: 1; padding: 0 18px; }
  .hero-subtitle  { grid-row: 7; }
  .hero-cta-wrap  { grid-row: 9; padding: 0 18px 16px; }

  /* Image spans title + lead rows */
  .hero-right {
    grid-row: 4 / 6;
    grid-column: 1;
    z-index: 0;
    margin: 0;
    align-self: stretch;
    overflow: hidden;
    display: flex !important;
    pointer-events: none;
  }
  .hero-right picture {
    display: block !important;
    width: 100%;
    height: 100%;
  }
  .hero-right img {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.4;
  }

  /* Badge left-aligned, campaign banner full-bleed */
  .hero-top-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 18px;
  }
  .hero-badge {
    flex: none;
    margin-bottom: 0;
    gap: 6px;
  }
  .hero-badge p { font-size: 10px; line-height: 1.3; }
  .hero-badge .num { font-size: 15px; }
  .wreath { width: 28px; height: 36px; }

  /* Campaign banner: full-bleed strip */
  .hero-floating-stat {
    flex: none;
    width: calc(100% + 36px);
    margin-left: -18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 0;
    transform: none;
    box-sizing: border-box;
    text-align: center;
    animation: none;
    box-shadow: none;
  }
  .floating-stat-tag {
    display: inline-block;
    font-size: 8px;
    padding: 2px 7px;
    margin-bottom: 0;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .floating-stat-num {
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
  }
  .floating-stat-label {
    font-size: 8px;
    line-height: 1.3;
    text-align: left;
  }

  /* --- Marquee ticker --- */
  .hero-subtitle {
    font-size: 9px;
    margin: 0;
    letter-spacing: .22em;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    border-top: 1px solid rgba(100,116,139,0.12);
    border-bottom: 1px solid rgba(100,116,139,0.12);
    color: var(--ink-5);
  }
  .subtitle-static { display: none; }
  .subtitle-marquee {
    display: inline-block;
    animation: heroMarquee 24s linear infinite;
  }
  @keyframes heroMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .hero-title {
    font-size: 22px;
    line-height: 1.42;
    margin: 0;
    padding-top: 18px;
    padding-bottom: 4px;
    text-shadow:
      0 0 8px rgba(255,255,255,1),
      0 0 16px rgba(255,255,255,0.9),
      0 0 32px rgba(255,255,255,0.7);
  }
  .hero-lead {
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0;
    padding-bottom: 14px;
    text-shadow:
      0 0 6px rgba(255,255,255,1),
      0 0 12px rgba(255,255,255,0.85);
  }

  /* CTAs at bottom, LINEで相談 must be in first view */
  .hero-cta {
    padding: 11px 14px;
    min-height: 46px;
    font-size: 14px;
  }
  .hero-cta span { font-size: 9.5px; margin-top: 2px; }
  .hero-cta-wrap { gap: 6px; }
}
