/* ============================================================
   PD Tokyo "Clarity" design system (overhaul 2026-06-17, rev2)
   Trust-first Japanese B2B. Readability-first: high contrast,
   larger type, clear section separation. Light theme locked.
   ============================================================ */

:root {
  --max: 1120px;
  --gutter: clamp(18px, 4vw, 40px);

  --ink: #131c25;        /* headings, near-black cool */
  --body: #283340;       /* body text, high contrast on white */
  --ink-2: #45525f;      /* secondary text */
  --muted: #596571;      /* captions; AA contrast on paper/alt */
  --line: #e2e7ee;
  --line-2: #c7d0da;
  --paper: #ffffff;      /* page + cards: white for max legibility */
  --alt: #eef2f7;        /* alternating section, clearly distinct */
  --navy: #102234;       /* hero base */
  --navy-2: #1d3a56;

  --acc: #2f5fa6;
  --acc-ink: #214579;
  --acc-soft: #eaf1fa;

  --radius: 16px;
  --radius-sm: 10px;
  --pill: 999px;
  --ease: cubic-bezier(.16,1,.3,1);
}

.t-web      { --acc:#bb4126; --acc-ink:#8f3119; --acc-soft:#fbece6; }
.t-facility { --acc:#0c6f7b; --acc-ink:#08515b; --acc-soft:#e6f4f6; }
.t-viz      { --acc:#2f5fa6; --acc-ink:#214579; --acc-soft:#eaf1fa; }
.t-brand    { --acc:#1f3448; --acc-ink:#142533; --acc-soft:#eaeef2; }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
[id] { scroll-margin-top: 82px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-size: 17.5px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.latin { font-family: "Outfit", "Noto Sans JP", sans-serif; }

/* layout */
.wrap { width: min(var(--max), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section { padding: clamp(52px, 7vw, 92px) 0; }
.section--tight { padding: clamp(36px, 5vw, 60px) 0; }
.section--alt { background: var(--alt); }

/* type */
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-family: "Outfit", sans-serif; font-size: 13.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--acc-ink);
  padding: 6px 13px; border-radius: var(--pill); background: var(--acc-soft);
}
.h-sec { margin: 0; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.45; font-weight: 800; color: var(--ink); letter-spacing: .01em; }
.h-sec strong { color: var(--acc-ink); }
.lead { margin: 16px 0 0; max-width: 42em; color: var(--ink-2); font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.95; }
.note { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ---------- Japanese line-breaking (kinsoku + phrase-aware wrap) ---------- */
body { line-break: strict; word-break: normal; overflow-wrap: anywhere; }
h1, h2, h3, .h-sec, .hero h1, .hero__sub, .lead,
.consult h2, .cta-band h2, .value b, .value p, .use b, .use p,
.step b, .step p, .media-tile .cap b, .media-tile .cap p,
.reframe .x, .reframe .o, .faq summary, .faq details > p, .consult p {
  word-break: auto-phrase;   /* break at natural Japanese phrase boundaries */
}
.hero h1, .h-sec, .consult h2, .cta-band h2 { text-wrap: balance; }
/* clause unit: prefer breaking between 文節, fall back to internal wrap only if a clause cannot fit */
.nobr { display: inline-block; }
.hero__sub, .lead, .value p, .use p, .media-tile .cap p,
.reframe .x, .reframe .o, .step p, .faq details > p, .consult p, p { text-wrap: pretty; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 66px; padding-inline: var(--gutter);
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.nav .brand-name { font-family: "Outfit", "Noto Sans JP", sans-serif; font-weight: 800; font-size: 20px; line-height: 1; color: var(--ink); letter-spacing: .01em; }
.nav .brand-name .jp { font-family: "Noto Sans JP", sans-serif; }
.nav .brand-mark { height: 23px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn--primary { color: #fff; }
.nav-links .btn--primary:hover { color: #fff; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-home { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1.5px solid var(--line-2); border-radius: var(--pill); color: var(--ink) !important; font-weight: 700 !important; }
.nav-home::before { content: "\2190"; color: var(--acc); font-weight: 800; }
.nav-home:hover { border-color: var(--acc); color: var(--acc-ink) !important; }
@media (max-width: 1100px) {
  .nav { height: 62px; }
  .nav .brand-name { font-size: 18px; }
  .nav-toggle { display: inline-flex; flex: 0 0 auto; }
  .nav-links {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 42px rgba(16,34,52,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s var(--ease);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a,
  .nav-links a.hide-sp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 9px 11px;
    border-radius: 7px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
  }
  .nav-links a:hover { background: var(--alt); }
  .nav-links .btn {
    width: 100%;
    justify-content: center;
    margin-top: 3px;
    color: #fff;
  }
  html:not(.js) .nav { height: auto; min-height: 62px; flex-wrap: wrap; padding-block: 9px; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .nav-links {
    position: static;
    flex: 1 0 100%;
    display: flex;
    flex-wrap: wrap;
    max-height: none;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  html:not(.js) .nav-links a { width: auto; }
}

@media (max-width: 560px) {
  .nobr { display: inline; }
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 26px; border-radius: var(--radius-sm); font-size: 15.5px; font-weight: 700; text-decoration: none; transition: transform .15s var(--ease), background .2s, border-color .2s, color .2s; cursor: pointer; border: 2px solid transparent; }
.btn--primary { background: var(--acc); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: var(--paper); }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc-ink); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); }

/* shared composition blocks */
.hero-split {
  min-height: min(720px, calc(100dvh - 66px));
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 82px) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
  overflow: hidden;
}
.hero-split__grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(420px,1.12fr); gap: clamp(34px, 6vw, 76px); align-items: center; }
.hero-split__copy { position: relative; z-index: 2; }
.hero-split__label { margin: 0 0 14px; color: var(--acc-ink); font-family: "Outfit","Noto Sans JP",sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.hero-split h1 { margin: 0; color: var(--ink); font-size: clamp(34px, 4.6vw, 58px); line-height: 1.32; letter-spacing: -.02em; text-wrap: balance; }
.hero-split__lead { margin: 20px 0 0; max-width: 34em; color: var(--ink-2); font-size: clamp(16px, 1.55vw, 19px); line-height: 1.9; }
.hero-split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-split__media { position: relative; min-width: 0; }
.hero-split__frame { overflow: hidden; border-radius: 22px; background: var(--navy); box-shadow: 0 28px 68px rgba(16,34,52,.16); }
.hero-split__frame img, .hero-split__frame video { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.hero-mosaic { display:grid; grid-template-columns:1.2fr .8fr; grid-template-rows:1fr 1fr; gap:3px; aspect-ratio:16/11; background:#fff; }
.hero-mosaic img { width:100%; height:100%; object-fit:cover; }
.hero-mosaic img:first-child { grid-row:1 / 3; }
.hero-split__inset { position: absolute; right: -4%; bottom: -8%; width: 42%; overflow: hidden; border: 7px solid #fff; border-radius: 16px; background: #fff; box-shadow: 0 18px 46px rgba(16,34,52,.2); }
.hero-split__inset img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.video-sound { position: absolute; left: 14px; bottom: 14px; min-height: 42px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.5); border-radius: var(--pill); background: rgba(10,25,39,.72); color: #fff; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; backdrop-filter: blur(8px); }

.trust-strip { display: grid; grid-template-columns: .8fr 1fr 1.5fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.trust-strip > div { padding: 22px 24px; border-left: 1px solid var(--line); }
.trust-strip > div:first-child { border-left: 0; }
.trust-strip b { display: block; color: var(--ink); font-size: 18px; }
.trust-strip span { display: block; margin-top: 5px; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

.service-bento { display: grid; grid-template-columns: 1.35fr .9fr; gap: 16px; margin-top: 28px; }
.service-feature { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; }
.service-feature:first-child { grid-row: span 2; display: grid; grid-template-rows: auto 1fr; }
.service-feature__media { overflow: hidden; background: var(--alt); }
.service-feature:first-child .service-feature__media img { aspect-ratio: 16/10; }
.service-feature:not(:first-child) { display: grid; grid-template-columns: 36% 1fr; }
.service-feature:not(:first-child) .service-feature__media img { height: 100%; min-height: 240px; }
.service-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.service-feature:hover .service-feature__media img { transform: scale(1.025); }
.service-feature__body { padding: clamp(20px, 2.5vw, 28px); }
.service-feature__body small { color: var(--acc-ink); font-family: "Outfit","Noto Sans JP",sans-serif; font-weight: 700; }
.service-feature__body h3 { margin: 7px 0 9px; color: var(--ink); font-size: clamp(19px, 2vw, 25px); line-height: 1.45; }
.service-feature__body p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.8; }
.service-feature__link { display: inline-block; margin-top: 15px; color: var(--acc-ink); font-size: 14px; font-weight: 700; }

.proof-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; margin-top: 28px; }
.proof-grid__main, .proof-grid__side { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.proof-grid__side { display: grid; grid-template-rows: 1fr 1fr; }
.proof-item { display: grid; grid-template-columns: minmax(180px,.8fr) 1fr; min-height: 220px; }
.proof-grid__side .proof-item { grid-template-columns: 42% 1fr; min-height: 0; }
.proof-item + .proof-item { border-top: 1px solid var(--line); }
.proof-item img { width: 100%; height: 100%; object-fit: cover; }
.proof-item__body { padding: 22px; align-self: center; }
.proof-item__body h3 { margin: 0; color: var(--ink); font-size: 18px; }
.proof-item__body p { margin: 8px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.75; }
.proof-item__body a { display: inline-block; margin-top: 12px; color: var(--acc-ink); font-weight: 700; font-size: 14px; }

.content-split { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.fact-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.fact { padding: 18px 20px; border-left: 3px solid var(--acc); background: var(--acc-soft); }
.fact b { display: block; color: var(--ink); }
.fact span { display: block; margin-top: 4px; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.compact-definition { margin: 0; display: grid; gap: 12px; }
.compact-definition > div { padding: 0 0 12px; border-bottom: 1px solid var(--line); }
.compact-definition dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.compact-definition dd { margin: 3px 0 0; color: var(--ink); font-size: 15px; }

.form-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.75fr); gap: 24px; align-items: start; }
.form-card, .info-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: clamp(24px, 4vw, 38px); }
.secure-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.secure-fieldset:disabled { opacity: .68; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label, .field .label { color: var(--ink); font-size: 14px; font-weight: 700; }
.required-badge { display: inline-flex; align-items: center; margin-left: 7px; padding: 1px 6px; border: 1px solid var(--line-2); border-radius: var(--pill); background: var(--acc-soft); color: var(--acc-ink); font-size: 11px; font-weight: 800; line-height: 1.45; letter-spacing: .04em; vertical-align: .1em; white-space: nowrap; }
.required-badge--lead { margin-right: 7px; margin-left: 0; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: #fff; color: var(--ink); padding: 11px 13px; font: inherit; font-size: 16px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--acc); outline-offset: 2px; border-color: var(--acc); }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 18px 0; color: var(--ink-2); font-size: 14px; line-height: 1.75; }
.consent input { width: 20px; height: 20px; margin-top: 2px; }
.form-status { min-height: 26px; margin: 12px 0 0; color: var(--acc-ink); font-size: 14px; font-weight: 700; }
.form-status.is-error { color: #a12f20; }
.form-status.is-success { color: #087443; }
.verification-panel[hidden], [data-authenticated][hidden], [data-auth-gate][hidden] { display: none !important; }

@media (max-width: 900px) {
  .hero-split { min-height: auto; }
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__media { max-width: 720px; }
  .service-bento, .proof-grid, .content-split, .form-layout { grid-template-columns: 1fr; }
  .service-feature:first-child { grid-row: auto; }
  .service-feature:not(:first-child) { grid-template-columns: 38% 1fr; }
  .proof-grid__side { grid-template-rows: auto; }
}
@media (max-width: 600px) {
  .hero-split { padding: 38px 0 52px; }
  .hero-split__grid { gap: 28px; }
  .hero-split h1 { font-size: clamp(31px, 9.5vw, 42px); }
  .hero-split__frame { border-radius: 16px; }
  .hero-split__inset { right: -2%; bottom: -10%; border-width: 4px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-left: 0; border-top: 1px solid var(--line); padding: 17px 19px; }
  .trust-strip > div:first-child { border-top: 0; }
  .service-feature:not(:first-child), .proof-item, .proof-grid__side .proof-item { grid-template-columns: 1fr; }
  .service-feature:not(:first-child) .service-feature__media img { min-height: 0; aspect-ratio: 16/9; }
  .proof-item img { aspect-ratio: 16/9; }
  .fact-list { grid-template-columns: 1fr; }
  .hero-split__actions .btn { width: 100%; }
}

/* hero (full-bleed BG video + strong left scrim for legibility) */
.hero { position: relative; min-height: min(82vh, 720px); display: flex; align-items: center; overflow: hidden; background: var(--navy); color: #fff; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,17,27,.94) 0%, rgba(9,17,27,.76) 38%, rgba(9,17,27,.34) 72%, rgba(9,17,27,.5) 100%),
    linear-gradient(0deg, rgba(9,17,27,.5) 0%, rgba(9,17,27,0) 44%); }
.hero__inner { position: relative; z-index: 2; width: min(var(--max), calc(100% - (var(--gutter) * 2))); margin-inline: auto; padding-block: clamp(56px, 12vh, 116px); }
.hero__col { max-width: 33em; }
.hero__tag { display: inline-block; margin-bottom: 18px; padding: 6px 16px; border-radius: var(--pill); background: var(--acc); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.hero h1 { margin: 0; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.4; font-weight: 800; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.45); }
.hero__sub { margin: 20px 0 0; font-size: clamp(17px, 1.7vw, 20px); line-height: 2; color: rgba(255,255,255,.94); max-width: 30em; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.hero__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* value strip */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.value .n { font-family: "Outfit", sans-serif; font-weight: 700; color: var(--acc); font-size: 13px; letter-spacing: .04em; }
.value b { display: block; margin: 8px 0 6px; font-size: 18.5px; color: var(--ink); }
.value p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.85; }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

/* generic grid/card */
.grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 860px) { .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* media tiles */
.media-tile { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }
.media-tile video, .media-tile > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--navy); }
.media-tile .cap { padding: 15px 17px 17px; }
.media-tile .cap b { font-size: 16px; color: var(--ink); }
.media-tile .cap p { margin: 5px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.8; }

/* reframe */
.reframe { display: grid; gap: 12px; margin-top: 26px; }
.reframe-row { display: grid; grid-template-columns: 1fr 34px 1.4fr; gap: 12px; align-items: stretch; }
.reframe .x { display: flex; align-items: center; padding: 15px 18px; border-radius: var(--radius-sm); background: var(--alt); color: #4d5763; text-decoration: line-through; text-decoration-color: rgba(77,87,99,.5); font-size: 15.5px; }
.reframe .o { display: flex; align-items: center; padding: 15px 18px; border-radius: var(--radius-sm); background: var(--acc-soft); border: 1px solid var(--acc); color: var(--ink); font-weight: 700; font-size: 15.5px; }
.reframe .to { display: grid; place-items: center; color: var(--acc); font-weight: 800; font-size: 20px; }
@media (max-width: 760px) { .reframe-row { grid-template-columns: 1fr; gap: 6px; } .reframe .x { justify-content: center; } .reframe .to { transform: rotate(90deg); } }

/* consult keystone */
.consult { background: var(--acc-soft); border: 2px solid var(--acc); border-radius: 20px; padding: clamp(28px, 4vw, 46px); display: grid; grid-template-columns: 1.5fr auto; gap: 24px 44px; align-items: center; }
.consult h2 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.5; font-weight: 800; color: var(--ink); }
.consult h2 em { font-style: normal; color: var(--acc-ink); }
.consult p { margin: 14px 0 0; color: var(--ink-2); font-size: 16.5px; line-height: 1.9; max-width: 40em; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.chip { padding: 8px 16px; border-radius: var(--pill); background: var(--paper); border: 1.5px solid var(--acc); color: var(--acc-ink); font-size: 14px; font-weight: 700; }
.consult__action { display: grid; gap: 12px; align-content: center; }
@media (max-width: 820px) { .consult { grid-template-columns: 1fr; } }

/* price */
.price { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.price > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.price .body { padding: 17px 19px 19px; }
.price .body b { display: block; font-size: 16px; color: var(--ink); }
.price .yen { display: block; margin-top: 6px; color: var(--acc-ink); font-size: 25px; font-weight: 800; font-family: "Outfit", "Noto Sans JP", sans-serif; }
.price .body small { display: block; margin-top: 5px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding-top: 18px; border-top: 3px solid var(--acc); }
.step .n { font-family: "Outfit", sans-serif; font-size: 13px; font-weight: 700; color: var(--acc); }
.step b { display: block; margin: 8px 0 5px; font-size: 16.5px; color: var(--ink); }
.step p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.8; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }

/* faq */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 4px; font-weight: 700; font-size: 17px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: var(--pill); background: var(--acc-soft); color: var(--acc-ink); font-weight: 700; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: 0 4px 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.85; }

/* cta band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: 20px; padding: clamp(32px, 5vw, 56px); text-align: center; }
.cta-band h2 { margin: 0; font-size: clamp(23px, 3vw, 33px); font-weight: 800; color: #fff; }
.cta-band p { margin: 16px auto 0; max-width: 34em; color: rgba(255,255,255,.88); font-size: 16px; }
.cta-band .btn { margin-top: 26px; }

/* BtoB: 社内提案サマリー（決裁者向け 課題→打ち手→成果→概算） */
.summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.summary > div { padding: 20px; border-left: 1px solid var(--line); }
.summary > div:first-child { border-left: 0; }
.summary .k { font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--acc); }
.summary h4 { margin: 8px 0 6px; font-size: 15.5px; color: var(--ink); }
.summary p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.75; }
@media (max-width: 780px) { .summary { grid-template-columns: 1fr 1fr; } .summary > div:nth-child(3) { border-left: 0; } }
@media (max-width: 480px) { .summary { grid-template-columns: 1fr; } .summary > div { border-left: 0; border-top: 1px solid var(--line); } .summary > div:first-child { border-top: 0; } }

/* BtoB: 段階CTA（購買フェーズ別の導線） */
.pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.path { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 22px; }
.path .step { font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--muted); }
.path h4 { margin: 7px 0 6px; font-size: 17px; color: var(--ink); }
.path p { margin: 0 0 16px; color: var(--ink-2); font-size: 14px; }
.path .btn { margin-top: auto; }
@media (max-width: 780px) { .pathways { grid-template-columns: 1fr; } }

/* footer */
.foot { border-top: 1px solid var(--line); background: var(--paper); padding: 40px 0; color: var(--muted); font-size: 13.5px; }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--acc-ink); }
.foot__row { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }

:where(a, button, summary, [tabindex]):focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-duration: 0s !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
