/* ============================================
   Hoiku Office LP
   navy / green / orange / white
   ============================================ */
:root {
  --navy: #1e3a5f;
  --navy-deep: #15294a;
  --orange: #f08a24;
  --orange-dark: #d97613;
  --orange-light: #fef3e6;
  --green: #3aa66b;
  --green-light: #e9f6ef;
  --pink: #e8608a;
  --pink-light: #fdeff4;
  --gray-bg: #f6f8fa;
  --cream: #fdf9f2;
  --line: #e3e9ef;
  --text: #2b3a4a;
  --text-weak: #64748b;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(30, 58, 95, .08);
  --shadow-lg: 0 20px 60px rgba(30, 58, 95, .16);
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }
.sp { display: none; }

/* ---------- scroll reveal ---------- */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--i, 0) * .1s);
}
.reveal-right { transform: translateX(40px); }
.reveal.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0, 0); }
.delay-3 { transition-delay: .35s; }
.delay-4 { transition-delay: .5s; }
.delay-5 { transition-delay: .65s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-right { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- marker ---------- */
.marker, .marker-orange, .marker-pink {
  background: linear-gradient(transparent 62%, rgba(240,138,36,.35) 62%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s cubic-bezier(.22,1,.36,1) .4s;
}
.marker-pink { background-image: linear-gradient(transparent 62%, rgba(232,96,138,.3) 62%); }
.marker-orange { background-image: linear-gradient(transparent 62%, rgba(240,138,36,.55) 62%); }
.is-visible .marker, .is-visible .marker-orange, .is-visible .marker-pink,
.marker.is-visible, .marker-orange.is-visible, .marker-pink.is-visible { background-size: 100% 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 999px; cursor: pointer; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; padding: 14px 32px;
  box-shadow: 0 8px 24px rgba(240,138,36,.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(240,138,36,.5); }
.btn-sub { display: block; font-size: 11px; font-weight: 500; opacity: .9; margin-top: 2px; }
.btn-ghost {
  border: 2px solid rgba(30,58,95,.25); color: var(--navy); padding: 14px 32px; background: #fff;
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-3px); }
.btn-ghost-navy { border: 2px solid var(--navy); color: var(--navy); padding: 12px 28px; }
.btn-ghost-navy:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-xl { padding: 22px 56px; font-size: 20px; }
.btn-block { width: 100%; }
.btn-header { padding: 10px 22px; font-size: 14px; }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(30,58,95,.1); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 28px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo-text { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: var(--navy); }
.header-logo-text em { color: var(--orange); }
.header-nav { display: flex; gap: 24px; margin-left: auto; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--navy); position: relative; }
.header-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 150px 0 120px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; animation: blobFloat 12s ease-in-out infinite alternate; }
.blob-1 { width: 480px; height: 480px; background: var(--orange-light); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: var(--green-light); bottom: -100px; left: -120px; animation-delay: -4s; }
.blob-3 { width: 260px; height: 260px; background: #eaf1f8; top: 40%; left: 34%; animation-delay: -8s; }
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px, -30px) scale(1.12); }
}
.dot-grid {
  position: absolute; top: 120px; left: 4%; width: 200px; height: 200px;
  background-image: radial-gradient(rgba(30,58,95,.14) 2px, transparent 2px);
  background-size: 20px 20px;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 16px; box-shadow: var(--shadow); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head); font-weight: 900; font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.45; color: var(--navy); margin-bottom: 22px;
}
.hero-line { display: block; overflow: hidden; }
.hero-line span { display: inline-block; transform: translateY(110%); animation: lineUp .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero-line:nth-child(1) span { animation-delay: .1s; }
.hero-line:nth-child(2) span { animation-delay: .28s; }
.hero-line:nth-child(3) span { animation-delay: .46s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero-title .marker { background-size: 0% 100%; animation: markerIn 1s cubic-bezier(.22,1,.36,1) 1.1s forwards; }
@keyframes markerIn { to { background-size: 100% 100%; } }
.hero-sub { font-size: 17px; color: var(--text); margin-bottom: 20px; }
.hero-price { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-price-badge { background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 12px; }
.hero-price-num { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: 20px; }
.hero-price-num strong { font-size: 40px; color: var(--orange); }
.hero-price-note { font-size: 13px; color: var(--text-weak); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero mock */
.hero-mock { position: relative; }
.mock-window {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden;
}
.mock-titlebar {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  background: var(--gray-bg); border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #d5dde5; }
.mock-titlebar .mock-dot:first-child { background: #f5b8b0; }
.mock-title { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy); margin-left: 8px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; }
.mock-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 2px 8px rgba(30,58,95,.05);
}
.float-card { animation: cardFloat 5s ease-in-out infinite; animation-delay: calc(var(--i) * -.7s); }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.mock-card-label { font-size: 11px; color: var(--text-weak); font-weight: 500; display: flex; align-items: center; }
.mock-card-value { font-size: 13px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mock-card-value strong { font-size: 18px; }
.mock-card-pink { border-color: rgba(232,96,138,.4); background: var(--pink-light); }
.mock-card-green { border-color: rgba(58,166,107,.4); background: var(--green-light); }
.mock-logo { height: 16px; width: auto; }
.text-red { color: #e05252; }
.text-green { color: var(--green); }
.chip { display: inline-block; font-size: 10px; font-weight: 700; border-radius: 999px; padding: 2px 9px; line-height: 1.6; }
.chip-orange { background: var(--orange-light); color: var(--orange-dark); }
.chip-red { background: #fdeaea; color: #d64545; }
.chip-green { background: var(--green-light); color: var(--green); }
.chip-pink { background: var(--pink-light); color: var(--pink); }
.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(214,69,69,.35); } 50% { box-shadow: 0 0 0 6px rgba(214,69,69,0); } }
.mock-btn {
  display: inline-block; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 8px; padding: 5px 12px;
}
.mock-btn-pink { background: var(--pink); }
.mini-bar { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.mini-bar i { width: 5px; background: #cdd9e4; border-radius: 2px; animation: barGrow 1.2s ease-out both; }
.mini-bar i:nth-child(1) { height: 5px; } .mini-bar i:nth-child(2) { height: 8px; }
.mini-bar i:nth-child(3) { height: 7px; } .mini-bar i:nth-child(4) { height: 11px; }
.mini-bar i.hi { height: 16px; background: var(--green); }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }
.hero-mock-shadow {
  position: absolute; inset: auto 10% -26px 10%; height: 40px;
  background: radial-gradient(ellipse, rgba(30,58,95,.18), transparent 70%);
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ---------- sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-gray { background: var(--gray-bg); }
.section-cream { background: var(--cream); }
.section-navy { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); }
.section-pinklight { background: var(--pink-light); }
.section-greenlight { background: var(--green-light); }
.section-eyebrow {
  text-align: center; font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: .12em; margin-bottom: 14px;
}
.eyebrow-light { color: #ffc98a; }
.section-title {
  font-family: var(--font-head); font-weight: 900; text-align: center;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.55; color: var(--navy); margin-bottom: 22px;
}
.title-light { color: #fff; }
.section-lead { text-align: center; font-size: 16px; margin-bottom: 48px; }
.lead-light { color: rgba(255,255,255,.88); }
.section-cta { text-align: center; margin-top: 48px; }

/* ---------- pain cards ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease, opacity .8s, translate .8s;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pain-icon { font-size: 26px; line-height: 1.3; }
.pain-card p { font-size: 14.5px; }
.pain-card strong { color: var(--orange-dark); }

/* ---------- story ---------- */
.story-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.story-point {
  background: var(--gray-bg); border-radius: var(--radius); padding: 24px;
  border-top: 4px solid var(--orange); text-align: center;
}
.story-num { font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--orange); display: block; margin-bottom: 8px; }
.story-point p { font-size: 14.5px; }

/* ---------- compare ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.compare-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.compare-other { border: 1px solid var(--line); opacity: .88; }
.compare-office { border: 2px solid var(--orange); position: relative; }
.compare-card h3 {
  font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.compare-card ul li { padding: 8px 0 8px 26px; border-bottom: 1px dashed var(--line); font-size: 14.5px; position: relative; }
.compare-other ul li::before { content: "・"; position: absolute; left: 8px; color: var(--text-weak); }
.compare-office ul li::before { content: "✓"; position: absolute; left: 4px; color: var(--orange); font-weight: 900; }
.compare-note { margin-top: 14px; font-size: 13px; color: var(--text-weak); }
.compare-office .compare-note strong { color: var(--navy); }
.compare-arrow { display: flex; align-items: center; }
.compare-arrow span {
  background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; text-align: center;
  border-radius: 999px; padding: 12px 14px; line-height: 1.5;
}

/* ---------- flow ---------- */
.flow-wrap { margin-bottom: 40px; }
.flow-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px 44px; padding: 10px 0; }
.flow-node {
  position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 14px; padding: 14px 18px 12px; font-size: 14px; font-weight: 700;
  min-width: 128px; text-align: center;
  opacity: 0; transform: translateY(16px) scale(.94);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1), background .3s, border-color .3s;
  transition-delay: calc(var(--i) * .12s);
}
.flow-wrap.is-visible .flow-node { opacity: 1; transform: translateY(0) scale(1); }
.flow-node::after {
  content: "→"; position: absolute; right: -32px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.55); font-size: 18px; font-weight: 400;
}
.flow-node:last-child::after { content: none; }
.flow-step {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 900;
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
}
.flow-node-hl { background: rgba(240,138,36,.22); border-color: var(--orange); }
.flow-node-pink { background: rgba(232,96,138,.22); border-color: var(--pink); }
.flow-node-pink .flow-step { background: var(--pink); }
.flow-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flow-point {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 20px;
  color: rgba(255,255,255,.92); font-size: 14px;
}
.flow-point strong { color: #ffc98a; }
.flow-point-num { color: var(--orange); font-weight: 900; font-size: 18px; }

/* ---------- pricing ---------- */
.pricing-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.pricing-card {
  background: #fff; border: 2px solid var(--orange); border-radius: 22px;
  padding: 38px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  border-radius: 50%; background: var(--orange-light);
}
.pricing-head { position: relative; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.pricing-logo { height: 40px; width: auto; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; }
.pricing-unit { font-size: 13px; font-weight: 700; color: var(--text-weak); }
.pricing-num { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: 22px; }
.pricing-num strong { font-size: 52px; color: var(--orange); }
.pricing-tax { font-size: 13px; color: var(--text-weak); }
.pricing-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pbadge { background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 14px; }
.pbadge-pink { background: var(--pink); }
.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-bottom: 28px; }
.pricing-features li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 500; }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pricing-example { background: var(--gray-bg); border-radius: var(--radius); padding: 28px; }
.pricing-example-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pricing-example-row {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 10px; padding: 12px 16px; margin-bottom: 8px;
  font-size: 14px; border: 1px solid var(--line);
}
.pricing-example-row strong { color: var(--orange-dark); font-size: 16px; }
.pricing-notes { font-size: 12px; color: var(--text-weak); margin-top: 16px; line-height: 1.9; }

/* ---------- simulator ---------- */
.sim-card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden;
}
.sim-controls { padding: 36px; border-right: 1px dashed var(--line); }
.sim-field { margin-bottom: 30px; }
.sim-field label, .sim-label { display: block; font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 12px; }
.sim-staff-row { display: flex; align-items: center; gap: 16px; }
input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 999px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--fill, 15%), #e8edf2 var(--fill, 15%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--orange); cursor: pointer;
  box-shadow: 0 3px 10px rgba(240,138,36,.4); transition: transform .2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sim-staff-num { display: flex; align-items: baseline; gap: 4px; font-weight: 700; color: var(--navy); }
.sim-staff-num input {
  width: 70px; font-size: 22px; font-weight: 900; color: var(--navy); text-align: center;
  border: 2px solid var(--line); border-radius: 10px; padding: 6px; font-family: var(--font-head);
}
.sim-staff-num input:focus { outline: none; border-color: var(--orange); }
.sim-radios { display: grid; gap: 8px; }
.sim-radio { display: block; cursor: pointer; }
.sim-radio input { display: none; }
.sim-radio span {
  display: flex; justify-content: space-between; align-items: center;
  border: 2px solid var(--line); border-radius: 12px; padding: 11px 16px;
  font-size: 14px; font-weight: 500; transition: all .25s ease;
}
.sim-radio span em { font-weight: 700; color: var(--text-weak); }
.sim-radio input:checked + span {
  border-color: var(--green); background: var(--green-light); color: var(--navy); font-weight: 700;
  transform: translateX(4px);
}
.sim-radio input:checked + span em { color: var(--green); }
.sim-result { padding: 36px; background: linear-gradient(170deg, #fff, var(--cream)); display: flex; flex-direction: column; }
.sim-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.sim-service { display: flex; align-items: center; gap: 8px; }
.sim-service img { height: 22px; width: auto; }
.sim-free { font-size: 11px; font-weight: 700; color: var(--pink); background: var(--pink-light); border-radius: 999px; padding: 2px 10px; }
.sim-amount { font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.sim-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0 6px; font-weight: 700; color: var(--navy); }
.sim-total-num { font-family: var(--font-head); }
.sim-total-num strong { font-size: 40px; color: var(--orange); font-variant-numeric: tabular-nums; transition: transform .2s; }
.sim-total-num strong.tick { transform: scale(1.08); }
.sim-total-num small { font-size: 12px; color: var(--text-weak); margin-left: 4px; }
.sim-sub { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--text-weak); margin-bottom: 22px; }
.sim-sub strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.sim-caption { text-align: center; margin-top: 30px; font-size: 14.5px; }
.sim-caption strong { color: var(--orange-dark); }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, opacity .8s, translate .8s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-wide { grid-column: 1 / -1; }
.cat-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  font-size: 24px; margin-bottom: 14px;
}
.cat-icon-orange { background: var(--orange-light); }
.cat-icon-green { background: var(--green-light); }
.cat-icon-navy { background: #eaf1f8; }
.cat-icon-pink { background: var(--pink-light); }
.cat-card h3 { font-family: var(--font-head); font-size: 19px; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cat-logos { display: inline-flex; gap: 8px; }
.cat-logos img { height: 18px; width: auto; }
.cat-copy { font-size: 13.5px; font-weight: 700; color: var(--orange-dark); margin-bottom: 12px; }
.cat-card ul li { font-size: 13.5px; padding: 5px 0 5px 20px; position: relative; border-bottom: 1px dashed var(--line); }
.cat-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.cat-ul-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

/* ---------- details ---------- */
.detail-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 80px;
}
.detail-row:last-child { margin-bottom: 0; }
.detail-row-rev .detail-text { order: 2; }
.detail-row-rev .detail-mock { order: 1; }
.detail-tag {
  display: inline-block; font-size: 12px; font-weight: 700; color: #fff;
  border-radius: 999px; padding: 5px 14px; margin-bottom: 14px;
}
.tag-orange { background: var(--orange); }
.tag-green { background: var(--green); }
.tag-navy { background: var(--navy); }
.tag-pink { background: var(--pink); }
.detail-text h3 { font-family: var(--font-head); font-size: 24px; color: var(--navy); line-height: 1.6; margin-bottom: 12px; }
.detail-text p { font-size: 15px; }
.mock-sm { max-width: 480px; margin: 0 auto; }
.shift-table, .kintai-table, .doc-list, .job-mock { padding: 16px; }
.shift-head, .shift-line { display: grid; grid-template-columns: 60px repeat(5, 1fr); gap: 6px; align-items: center; margin-bottom: 6px; }
.shift-head span { font-size: 11px; font-weight: 700; color: var(--text-weak); text-align: center; }
.shift-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.shift-line i {
  height: 24px; border-radius: 6px; font-size: 10px; font-weight: 700;
  display: grid; place-items: center; font-style: normal;
}
.s-early { background: #cfe8db; } .s-late { background: #f8dcbb; }
.s-off { background: var(--gray-bg); color: var(--text-weak); }
.shift-alert { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.kintai-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr; gap: 6px; align-items: center; padding: 8px 4px; border-bottom: 1px dashed var(--line); font-size: 12px; }
.kintai-head { font-weight: 700; color: var(--text-weak); font-size: 11px; }
.doc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 4px; border-bottom: 1px dashed var(--line); font-size: 13px; font-weight: 500; }
.job-from { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.job-arrow { color: var(--pink); font-weight: 900; }
.job-card { background: var(--pink-light); border: 1px solid rgba(232,96,138,.35); border-radius: 12px; padding: 16px; }
.job-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.job-meta { font-size: 12px; color: var(--text-weak); margin-bottom: 10px; }

/* ---------- audit ---------- */
.audit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.audit-item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 10px; padding: 16px 14px; font-size: 13.5px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow); text-align: center;
  transition: transform .3s ease, opacity .8s, translate .8s;
}
.audit-item:hover { transform: translateY(-4px); }

/* ---------- color / market ---------- */
.link-head { text-align: center; margin-bottom: 18px; }
.link-logo { height: 44px; width: auto; }
.color-flow { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.color-flow-item .chip { font-size: 13px; padding: 10px 18px; box-shadow: var(--shadow); }
.color-flow-arrow { color: var(--pink); font-weight: 900; font-size: 20px; }
.market-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market-plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow); position: relative;
}
.market-plan h3 { font-family: var(--font-head); font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.market-price { font-family: var(--font-head); color: var(--navy); margin-bottom: 8px; }
.market-price strong { font-size: 32px; color: var(--green); }
.market-price small { font-size: 11px; color: var(--text-weak); margin-left: 4px; }
.market-plan p:last-child { font-size: 12.5px; color: var(--text-weak); }
.market-plan-hl { border: 2px solid var(--green); }
.market-hl-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 3px 14px;
}

/* ---------- series ---------- */
.series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.series-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; box-shadow: var(--shadow); text-align: center;
  transition: transform .3s ease, opacity .8s, translate .8s;
}
.series-card:hover { transform: translateY(-5px); }
.series-card img { height: 32px; width: auto; margin-bottom: 14px; }
.series-card p { font-size: 12.5px; color: var(--text-weak); text-align: left; }
.series-card p strong { color: var(--pink); }
.series-office { border: 2px solid var(--orange); transform: scale(1.03); }
.series-soon { opacity: .75; }
.series-tag { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700; color: #fff; border-radius: 999px; padding: 3px 12px; }
.series-tag.tag-orange { background: var(--orange); }
.series-tag.tag-navy { background: var(--navy); }

/* ---------- security ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.sec-card { background: #fff; border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow); }
.sec-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.sec-card h3 { font-family: var(--font-head); font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.sec-card p { font-size: 13px; color: var(--text-weak); }
.sec-count { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); text-align: center; }
.sec-count-title { font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sec-count-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.sec-count-table span { background: var(--gray-bg); border-radius: 8px; padding: 8px; font-size: 12.5px; font-weight: 500; }
.sec-count-note { font-size: 14px; }
.sec-count-note strong { color: var(--orange-dark); }

/* ---------- target ---------- */
.target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.target-card {
  background: var(--gray-bg); border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform .3s ease, background .3s, opacity .8s, translate .8s;
}
.target-card:hover { transform: translateY(-5px); background: var(--orange-light); }
.target-icon { font-size: 34px; display: block; margin-bottom: 12px; }
.target-card h3 { font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.target-card p { font-size: 13.5px; color: var(--text-weak); text-align: left; }

/* ---------- offer ---------- */
.section-offer { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); overflow: hidden; }
.offer-bg { position: absolute; inset: 0; pointer-events: none; }
.blob-o1 { width: 400px; height: 400px; background: rgba(240,138,36,.18); top: -120px; right: -100px; }
.blob-o2 { width: 320px; height: 320px; background: rgba(58,166,107,.15); bottom: -100px; left: -80px; animation-delay: -5s; }
.section-offer .container { position: relative; }
.offer-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.offer-point {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); padding: 22px 14px; text-align: center;
  color: #fff; font-size: 13.5px; font-weight: 700; line-height: 1.7;
}
.offer-point span { display: block; font-size: 28px; margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 52px 20px 24px;
  font-weight: 700; color: var(--navy); font-size: 15px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; color: var(--orange); font-weight: 900; margin-right: 8px; }
.faq-item summary::after {
  content: "＋"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-weight: 400; font-size: 20px; transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 20px 24px; font-size: 14px; color: var(--text); }
.faq-item p::before { content: "A. "; color: var(--green); font-weight: 900; }

/* ---------- final CTA ---------- */
.section-final { background: linear-gradient(180deg, var(--cream), #fff); padding: 120px 0; }
.final-cta { display: flex; flex-direction: column; align-items: center; gap: 18px; }

/* ---------- footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 56px 0 32px; text-align: center; }
.footer-series { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-series img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .8; transition: opacity .3s; }
.footer-series a:hover img { opacity: 1; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; margin-bottom: 20px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; opacity: .6; }

/* ---------- sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(30,58,95,.12);
  transform: translateY(110%); transition: transform .4s cubic-bezier(.22,1,.36,1);
  display: none;
}
.sticky-cta.is-shown { transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid, .story-points, .flow-points, .sec-grid, .target-grid, .market-plans { grid-template-columns: 1fr 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .audit-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrap, .sim-card { grid-template-columns: 1fr; }
  .sim-controls { border-right: none; border-bottom: 1px dashed var(--line); }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow { justify-content: center; }
  .detail-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 64px; }
  .detail-row-rev .detail-text { order: 1; }
  .detail-row-rev .detail-mock { order: 2; }
  .offer-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sp { display: inline; }
  .section { padding: 68px 0; }
  .hero { padding: 110px 0 90px; }
  .header-nav { display: none; }
  .pain-grid, .story-points, .flow-points, .sec-grid, .target-grid, .market-plans,
  .series-grid, .cat-grid, .cat-ul-2col, .pricing-features, .sec-count-table { grid-template-columns: 1fr; }
  .audit-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .flow-track { flex-direction: column; align-items: center; gap: 30px; }
  .flow-node { width: 100%; max-width: 280px; }
  .flow-node::after { content: "↓"; right: 50%; top: auto; bottom: -28px; transform: translateX(50%); }
  .flow-node:last-child::after { content: none; }
  .btn-xl { padding: 18px 32px; font-size: 17px; width: 100%; }
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}
