:root{
  --bg:#f5f4f2;
  --bg-soft:#fbfaf8;
  --surface:#ffffff;
  --ink:#161315;
  --muted:#5f5a57;
  --line:#ddd8d4;
  --line-strong:#cfc8c2;
  --red:#c90f18;
  --red-dark:#a50912;
  --red-soft:#f6e8ea;
  --dark:#0f1318;
  --dark-soft:#1a2028;
  --container:1180px;
  --shadow:0 18px 50px rgba(16,18,22,.08);
  --shadow-soft:0 10px 24px rgba(16,18,22,.05);
  --radius:4px;
}
*{box-sizing:border-box}
[hidden]{display:none!important}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Noto Sans JP","Hiragino Sans","Yu Gothic",sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea,select{font:inherit}
button{border:0;background:none;color:inherit}
input,textarea,select{appearance:none}
::selection{background:#f3d7db;color:#2b1215}
:focus-visible{
  outline:3px solid rgba(201,15,24,.45);
  outline-offset:3px;
}
.container{width:min(calc(100% - 48px),var(--container));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #ece8e5;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:92px;gap:24px}
.brand img{width:280px;max-width:min(60vw,280px)}
.global-nav{display:flex;align-items:center;gap:24px;font-size:14px;font-weight:800}
.global-nav a{white-space:nowrap;position:relative}
.global-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.global-nav a:not(.nav-cta):hover::after,
.global-nav a[aria-current="page"]:not(.nav-cta)::after{transform:scaleX(1)}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:var(--radius);
  background:var(--red);
  color:#fff;
  box-shadow:0 10px 24px rgba(201,15,24,.18);
}
.menu-button{display:none;border:1px solid var(--line-strong);background:#fff;padding:10px 12px;font-weight:800;border-radius:var(--radius);cursor:pointer}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 26px;
  border-radius:var(--radius);
  font-weight:900;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover{transform:translateY(-2px)}
.button-primary{background:var(--red);color:#fff;box-shadow:0 14px 34px rgba(201,15,24,.22)}
.button-primary:hover{background:var(--red-dark)}
.button-secondary{background:rgba(255,255,255,.95);border:1px solid #bdb7b3}
.button-secondary:hover{box-shadow:var(--shadow-soft)}
.button-white{background:#fff;color:var(--ink);min-width:280px;box-shadow:0 14px 34px rgba(0,0,0,.12)}
.button-full{width:100%}
.text-link{display:inline-block;font-weight:900;border-bottom:1px solid var(--red);padding-bottom:5px}

.eyebrow,.section-kicker{
  margin:0 0 4px;
  font-size:13px;
  line-height:1;
  font-weight:900;
  letter-spacing:.22em;
  color:var(--red);
}
.eyebrow{margin-bottom:18px}
.section-kicker.light{color:#f1c6ca}

.section-title-block .section-kicker,
.archive-hero .section-kicker,
.archive-contact-inner .section-kicker,
.contact-title-centered .section-kicker{margin-bottom:2px}
.section-title-block h1,
.section-title-block h2,
.archive-hero h1{margin-top:0}

.section{padding:104px 0}
.section h2{margin:0;font-size:clamp(38px,4vw,60px);line-height:1.24;letter-spacing:-.05em}
.section p{color:var(--muted)}
.section-title-block{position:relative;padding-left:24px}
.section-heading-accent::before,
.section-title-block.section-heading-accent::before,
.contact-title-centered::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:8px;
  height:84px;
  background:var(--red);
}
.section-heading-row{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:38px}
.section-heading-row.simple{margin-bottom:28px}

.section-heading-subtitle{margin:5px 0 0!important;font-size:14px;font-weight:700;color:var(--muted)!important;letter-spacing:.01em}
.single-line-heading{white-space:nowrap}


.hero{position:relative;overflow:hidden;background:#fff}
.hero-slides{position:absolute;inset:0}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease}
.hero-slide.is-active{opacity:1}
.hero-visual{position:absolute;inset:0;background-size:cover;background-position:center}
.hero-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0 39%,rgba(255,255,255,.93) 47%,rgba(255,255,255,.70) 57%,rgba(8,11,15,.15) 68%,rgba(6,8,10,.73) 85%,rgba(4,5,8,.92) 100%);
}
.hero-inner{position:relative;min-height:700px;display:flex;align-items:center;padding:74px 0 84px}
.hero-copy{position:relative;z-index:2;max-width:660px;padding-top:18px}
.hero h1{margin:0 0 24px;font-size:clamp(54px,4.7vw,76px);line-height:1.14;letter-spacing:-.06em;font-weight:900}
.hero h1 span{display:block;white-space:nowrap}
.hero-lead{margin:0;font-size:17px;font-weight:700;max-width:560px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:34px}
.hero-caption{
  position:absolute;
  right:0;
  bottom:96px;
  z-index:2;
  width:360px;
  min-height:196px;
  display:grid;
  grid-template-columns:36px 1fr;
  gap:16px;
  padding:26px 28px;
  background:rgba(10,13,18,.88);
  color:#fff;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow);
}
.hero-number{font-size:38px;line-height:1;color:#eef1f4;font-weight:700}
.hero-caption strong{display:block;min-height:2.7em;font-size:28px;line-height:1.35}
.hero-caption p{margin:10px 0 0;min-height:3em;font-size:14px;line-height:1.5;color:#d8dbe1}
.hero-controls{position:absolute;right:10px;bottom:28px;z-index:2;display:flex;align-items:center;gap:10px}
.hero-controls button{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.55);background:rgba(0,0,0,.24);color:#fff;cursor:pointer}
.slide-dots{display:flex;gap:8px}
.slide-dot{width:9px;height:9px;border-radius:50%;background:#fff;opacity:.85;cursor:pointer}
.slide-dot.is-active{width:22px;border-radius:999px;background:var(--red);opacity:1}

.metrics{background:#fff;border-bottom:1px solid var(--line)}
.metrics-inner{display:grid;grid-template-columns:160px 1fr;align-items:stretch;padding-top:0}
.metrics-label{display:flex;flex-direction:column;justify-content:center;gap:4px;padding:18px 26px 18px 0;border-right:1px solid var(--line)}
.metrics-label span{color:var(--red);font-size:13px;font-weight:900;line-height:1.35;letter-spacing:.08em}
.metrics-label small{color:var(--muted);font-size:10px;font-weight:900;letter-spacing:.16em}
.metrics-grid{display:grid;grid-template-columns:repeat(4,1fr);min-width:0}
.metric{position:relative;padding:20px 22px 28px;text-align:center}
.metric:not(:last-child)::after{content:"";position:absolute;right:0;top:28%;width:1px;height:44%;background:var(--line)}
.metric div{line-height:1;color:var(--red)}
.metric span{font-size:60px;font-weight:900;letter-spacing:-.07em}
.metric b{font-size:22px;margin-left:6px;font-weight:900}
.metric small{font-size:16px;font-weight:900;margin-right:4px}
.metric p{margin:13px 0 0;font-size:14px;font-weight:700;color:var(--ink)}

.case-grid,.case-archive-grid,.column-grid,.column-archive-grid,.benefit-grid,.consult-flow-grid{display:grid;gap:24px}
.case-grid{grid-template-columns:repeat(3,1fr)}
.case-archive-grid{grid-template-columns:repeat(3,1fr)}
.case-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.case-image{position:relative;aspect-ratio:16/9;background:#eee;background-size:cover;background-position:center;overflow:hidden}
.case-image img{width:100%;height:100%;object-fit:cover}
.case-body{display:flex;flex:1;flex-direction:column;padding:24px 24px 26px}
.case-tag{margin:0 0 10px;font-size:12px;font-weight:900;letter-spacing:.08em;color:var(--red)}
.case-body h3{margin:0 0 12px;font-size:25px;line-height:1.42;letter-spacing:-.03em}
.cases-archive .case-body h3{font-size:21px;line-height:1.48}
.case-body p{margin:0;color:var(--muted)}
.case-body a{margin-top:auto;padding-top:18px;font-weight:900;color:var(--red)}
.case-body .coming-soon-label{display:inline-flex;align-self:flex-start;margin-top:auto;padding:18px 0 0;color:var(--muted);font-size:14px;font-weight:900;letter-spacing:.02em}

.services{background:var(--bg-soft)}
.service-heading{margin-bottom:12px}
.service-lead{margin:0;max-width:760px;font-size:16px}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.service-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  padding:22px 22px 26px;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover,.service-card:focus,.service-card.is-active{
  transform:translateY(-4px);
  border-color:#d5c5c7;
  box-shadow:0 20px 50px rgba(25,18,18,.12);
}
.service-card:hover .service-thumb,.service-card:focus-within .service-thumb{transform:scale(1.035);filter:brightness(.94) contrast(1.04)}
.service-card:hover .service-title-link,.service-card:focus-within .service-title-link{color:var(--red);text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:5px}
.service-thumb{aspect-ratio:16/9;border-radius:var(--radius) var(--radius) 0 0;background:#eee center/cover no-repeat;margin-bottom:0;transition:transform .28s ease, filter .28s ease}
.card-label{display:flex;align-self:stretch;justify-content:center;align-items:center;width:100%;margin-bottom:18px;padding:11px 12px;border-radius:0 0 var(--radius) var(--radius);background:var(--red-soft);color:var(--red);font-size:13px;font-weight:900;text-align:center;line-height:1.35}
.service-title-row{display:grid;grid-template-columns:70px minmax(0,1fr);column-gap:14px;align-items:start;margin:0 0 12px}
.service-index{margin:2px 0 0;font-size:52px;line-height:.95;color:#6f6966;font-weight:900;letter-spacing:-.06em}
.service-card h3{margin:0;font-size:25px;line-height:1.28;letter-spacing:-.03em}
.service-card p{margin:0;color:var(--muted)}
.service-card ul{margin:18px 0 0;padding-left:1.25em;color:var(--ink)}
.service-card li+li{margin-top:6px}
.service-thumb-link{display:block;margin:0;color:inherit;text-decoration:none;border-radius:var(--radius) var(--radius) 0 0;overflow:hidden}
.service-thumb-link:focus-visible{outline:3px solid rgba(201,15,24,.32);outline-offset:3px}
.service-title-link{display:flex;flex-direction:column;justify-content:flex-start;min-height:calc(1.28em * 2);color:inherit;text-decoration:none;transition:color .2s ease}
.service-title-link span{display:block;white-space:nowrap}
.service-title-link:hover,.service-title-link:focus{color:var(--red);text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:5px}

.integration{background:var(--bg-soft)}
.integration-dark{background:linear-gradient(135deg,#10161d 0,#17222c 55%,#0c1117 100%);color:#fff}
.integration-dark .section-kicker{color:#f1c6ca}
.integration-dark h2,.integration-dark .domains{color:#fff!important}
.integration-dark .integration-summary p{color:#e8edf2}
.integration-dark .system-diagram-panel{background:#fff;color:var(--ink);border-color:rgba(255,255,255,.16);box-shadow:0 24px 64px rgba(0,0,0,.24)}
.integration-dark .system-diagram-panel p{color:var(--muted)}
.integration-dark .diagram-heading{color:var(--ink)}
.integration-dark .integration-link{color:#fff;border-bottom-color:rgba(255,255,255,.75)}
.integration-dark .integration-link:hover{color:#f1c6ca}
.integration-head{display:block;margin-bottom:36px}
.integration-head h2{font-size:clamp(38px,4vw,60px);line-height:1.16;letter-spacing:-.05em}
.integration-summary{max-width:920px;margin-top:18px;padding-bottom:0}
.integration-summary .domains{margin:0 0 14px;font-weight:900;color:var(--ink)}
.system-diagram-panel{display:grid;grid-template-columns:340px 1fr;gap:28px;align-items:center;padding:28px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow)}
.diagram-note{display:inline-block;margin:0 0 16px;padding:8px 12px;border-radius:999px;background:var(--red-soft);color:var(--red)!important;font-size:12px;font-weight:900}
.diagram-heading{margin:0 0 14px;font-size:34px;line-height:1.35;letter-spacing:-.04em}
.diagram-heading span{display:block;white-space:nowrap}
.system-diagram-intro p{margin:0 0 16px}
.diagram-mini-points{display:flex;gap:10px;flex-wrap:wrap}
.diagram-mini-points span{display:inline-flex;padding:7px 12px;border-radius:999px;background:#f2efec;font-size:12px;font-weight:900;color:var(--ink)}
.system-diagram-wrap{background:radial-gradient(circle at 50% 18%,#faf8f6 0,#f6f2ef 38%,#f0ece8 100%);padding:10px}
.system-diagram-svg{display:block;width:100%;height:auto}
.diagram-paths path{fill:none;stroke:#c90f18;stroke-width:5;stroke-linecap:round;opacity:.92}
.out-path{stroke-dasharray:12 9}
.tech-node rect,.output-node rect{fill:#fff;stroke:#ebe6e1;stroke-width:2}
.tech-icon *,.output-node path,.output-node circle{fill:none;stroke:#c90f18;stroke-width:6;stroke-linecap:round;stroke-linejoin:round}
.node-title{font-size:28px;font-weight:900;fill:#161315}
.node-sub{font-size:15px;fill:#5e5957}
.hub-ring{fill:rgba(255,255,255,.16);stroke:rgba(255,255,255,.48);stroke-width:4}
.hub-mark{fill:none;stroke:#fff;stroke-width:8;stroke-linecap:round}
.hub-title{font-size:34px;font-weight:900;fill:#fff}
.hub-sub{font-size:16px;fill:#f0e6e8}
.hub-tags rect{fill:rgba(255,255,255,.18)}
.hub-tags text{font-size:12px;font-weight:900;text-anchor:middle;fill:#fff}
.output-node circle{stroke:#d9dde3}
.output-main{font-size:20px;font-weight:900;fill:#161315}
.output-small{font-size:14px;fill:#5e5957}
.integration-link{margin-top:28px}

.accountability{background:linear-gradient(135deg,#11161d 0,#18212a 100%);color:#fff}
.accountability-heading-row{display:block;margin-bottom:38px}
.accountability-copy{min-width:0}
.accountability-copy::before{top:2px!important;height:84px!important}
.accountability-copy h2{font-size:clamp(38px,4vw,60px);line-height:1.16;letter-spacing:-.05em;white-space:nowrap}
.accountability-lead{max-width:920px;margin:18px 0 0;color:#e5ebf0!important}
.accountability-flow{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:14px;align-items:stretch}
.flow-card{
  height:100%;
  padding:24px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.flow-card span{display:block;margin-bottom:12px;font-size:40px;line-height:1;font-weight:900;color:#f0c6ca}
.flow-card h3{margin:0 0 12px;font-size:24px;line-height:1.4}
.flow-card p{margin:0;color:#d5dce3}
.flow-arrow{align-self:center;font-size:28px;font-weight:900;color:#f0c6ca}

.columns{background:#fff}
.column-grid{grid-template-columns:repeat(3,1fr)}
.column-grid article,.column-archive-card{
  min-height:100%;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.column-grid a,.column-grid .column-preview-static,.column-archive-card a,.column-archive-card .column-archive-static{display:flex;flex-direction:column;height:100%}
.column-thumb{aspect-ratio:16/9;background:#f0ece8 center/cover no-repeat}
.column-grid article > a > div:last-child,.column-grid article > .column-preview-static > div:last-child,.column-archive-body{display:flex;flex:1;flex-direction:column;padding:20px 22px 24px}
.column-grid time,.column-archive-body time{font-size:13px;font-weight:800;color:var(--muted)}
.column-grid h3,.column-archive-body h2{margin:12px 0 0;font-size:24px;line-height:1.46;letter-spacing:-.03em}
.column-preparing-label{display:inline-flex;align-self:flex-start;margin-top:auto;padding-top:18px;color:var(--muted);font-size:14px;font-weight:900;letter-spacing:.02em}
.column-category{margin:0 0 6px;font-size:12px;font-weight:900;letter-spacing:.08em;color:var(--red)}
.column-archive-grid{grid-template-columns:repeat(3,1fr)}
.column-archive-photo{aspect-ratio:16/9;background:#f0ece8}
.column-archive-photo img{width:100%;height:100%;object-fit:cover}
.column-archive-body p{margin:0;color:var(--muted)}
.column-archive-body > p:last-of-type{margin-top:12px}
.column-archive-body span{margin-top:auto;padding-top:18px;font-weight:900;color:var(--red)}
.column-archive-body .column-preparing-label{color:var(--muted)}
.contact-section,.archive-contact-cta{
  background:var(--red);
  color:#fff;
}
.contact-inner,.archive-contact-inner{display:flex;justify-content:space-between;align-items:center;gap:26px;padding:86px 0}
.contact-section p,.archive-contact-cta p{color:#f8ecee}
.contact-section h2,.archive-contact-cta h2{margin:0;font-size:clamp(38px,4vw,60px);line-height:1.24;letter-spacing:-.05em}
.contact-section-centered .contact-inner,
.contact-section .contact-inner-centered,
.archive-contact-inner{flex-direction:column;text-align:center;justify-content:center}
.contact-title-centered,.archive-contact-inner{max-width:860px;margin:0 auto}
.contact-title-centered::before{left:50%;transform:translateX(calc(-50% - 340px));display:none}
.contact-title-centered p:last-child{margin-top:14px}

.archive-hero{
  padding:76px 0 60px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.archive-hero-cream{background:var(--bg-soft)}
.archive-hero-inner{display:grid;grid-template-columns:1fr 220px;gap:32px;align-items:end}
.archive-hero h1{margin:0;font-size:clamp(46px,4.2vw,64px);line-height:1.16;letter-spacing:-.05em}
.archive-hero p{margin:16px 0 0;color:var(--muted);max-width:760px}
.archive-stat{
  justify-self:end;
  min-width:180px;
  padding:22px 24px;
  border:1px solid var(--line);
  background:var(--bg-soft);
  text-align:center;
}
.archive-stat strong{display:block;font-size:58px;line-height:1;color:var(--red);letter-spacing:-.06em}
.archive-stat span{display:block;margin-top:10px;font-size:13px;font-weight:900;color:var(--ink)}
.archive-lead{max-width:780px}

.case-filter-bar{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px}
.case-filter{
  padding:11px 16px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:var(--ink);
  font-size:14px;
  font-weight:800;
  border-radius:999px;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}
.case-filter:hover,.case-filter.is-active{background:var(--red);border-color:var(--red);color:#fff}
.case-empty{margin-top:24px;padding:20px;border:1px dashed var(--line-strong);text-align:center;color:var(--muted);background:#fff}

.consult-hero{background:#fff;padding:88px 0 68px;border-bottom:1px solid var(--line)}
.consult-hero-inner{display:grid;grid-template-columns:1.02fr .98fr;gap:36px;align-items:center}
.consult-copy h1{margin:0 0 20px;font-size:clamp(54px,4.6vw,68px);line-height:1.14;letter-spacing:-.05em}
.consult-copy h1 span{display:block;white-space:nowrap}
.consult-copy p{margin:0 0 18px;font-size:16px;max-width:590px}
.consult-badges{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:22px 0 0}
.consult-badges li{padding:8px 12px;border-radius:999px;background:var(--red-soft);color:var(--red);font-size:13px;font-weight:900}
.consult-visual{aspect-ratio:4/3;background:#f0ece8 center/cover no-repeat}
.benefit-grid{grid-template-columns:repeat(3,1fr)}
.benefit-card{
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.benefit-card span{display:block;margin-bottom:12px;font-size:40px;line-height:1;color:var(--red);font-weight:900}
.benefit-card h3{margin:0 0 12px;font-size:24px;line-height:1.4}
.benefit-card p{margin:0}
.consult-flow-grid{grid-template-columns:repeat(4,1fr)}
.consult-flow-grid article{
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.consult-flow-grid span{display:block;margin-bottom:10px;font-size:38px;line-height:1;color:var(--red);font-weight:900}
.consult-flow-grid h3{margin:0 0 12px;font-size:24px;line-height:1.4}
.consult-flow-grid p{margin:0}
.consult-form-layout{display:grid;grid-template-columns:.88fr 1.12fr;gap:28px;align-items:start}
.consult-info-card,.consult-form-card{
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.guide-list{margin:22px 0 0;padding-left:1.25em}
.guide-list li+li{margin-top:8px}
.consult-form{display:grid;gap:18px}
.form-row{display:grid;gap:18px}
.form-row.two-col{grid-template-columns:repeat(2,1fr)}
.consult-form label{display:grid;gap:8px;font-weight:700;color:var(--ink)}
.consult-form input,.consult-form textarea,.consult-form select{
  width:100%;
  border:1px solid var(--line-strong);
  background:#fff;
  padding:14px 16px;
  color:var(--ink);
  border-radius:var(--radius);
}
.consult-form textarea{resize:vertical}
.consult-form select{background-image:linear-gradient(45deg,transparent 50%,var(--ink) 50%),linear-gradient(135deg,var(--ink) 50%,transparent 50%);background-position:calc(100% - 20px) calc(50% - 2px),calc(100% - 14px) calc(50% - 2px);background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:42px}
.consult-form [aria-invalid="true"]{border-color:var(--red);background:#fff8f8;box-shadow:0 0 0 2px rgba(201,15,24,.08)}
.field-error{display:block;margin:-10px 0 0;color:var(--red);font-size:13px;font-weight:800;line-height:1.6}
.field-counter{display:block;margin:-12px 0 0;color:var(--muted);font-size:12px;font-weight:700;text-align:right}
.field-counter.is-over{color:var(--red);font-weight:900}
.form-status[data-state="notice"]{color:var(--muted)!important}
.consult-form button:disabled{cursor:not-allowed;opacity:.68;box-shadow:none}


.company-info{background:var(--bg-soft);border-top:1px solid var(--line)}
.company-info-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:72px;align-items:start}
.company-info-list{margin:0;border-top:1px solid var(--line-strong)}
.company-info-list > div{display:grid;grid-template-columns:180px 1fr;gap:24px;padding:20px 0;border-bottom:1px solid var(--line)}
.company-info-list dt{font-weight:900;color:var(--ink)}
.company-info-list dd{margin:0;color:var(--muted)}
.company-info-list a{color:var(--red);font-weight:800}

.site-footer{background:#fff;color:var(--ink)}
.footer-main{border-top:1px solid var(--line)}
.footer-inner{display:flex;justify-content:space-between;gap:32px;align-items:center;padding:36px 0}
.footer-inner > div:first-child{max-width:680px}
.footer-inner > img{max-width:420px}
.footer-main img{width:280px;max-width:100%;display:block}
.footer-company-copy{font-size:12px;line-height:1.8;color:var(--muted);margin:14px 0 0}
.site-footer nav{display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:14px 28px}
.site-footer nav a{font-size:14px;font-weight:800;color:var(--ink)}
.footer-bottom{padding:18px 0;border-top:1px solid var(--line);font-size:13px;color:var(--muted)}

@media (max-width: 1100px){
  .hero-inner{min-height:660px}
  .hero-copy{max-width:610px}
  .hero-caption{width:320px}
  .integration-head,.accountability-heading-row,.consult-hero-inner,.consult-form-layout,.company-info-layout{grid-template-columns:1fr}
  .system-diagram-panel{grid-template-columns:1fr}
  .accountability-flow{grid-template-columns:1fr;gap:16px}
  .flow-arrow{display:none}
  .single-line-heading{white-space:normal}
  .consult-visual{order:-1}
}

@media (max-width: 960px){
  .global-nav{position:fixed;top:92px;left:0;right:0;display:none;flex-direction:column;align-items:flex-start;gap:0;padding:12px 24px 20px;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 20px 40px rgba(0,0,0,.08)}
  .global-nav.is-open{display:flex}
  .global-nav a{display:block;width:100%;padding:14px 0}
  .global-nav a:not(.nav-cta)::after{display:none}
  .nav-cta{width:100%;margin-top:10px}
  .menu-button{display:inline-flex}
  .case-grid,.service-grid,.column-grid,.case-archive-grid,.column-archive-grid,.benefit-grid,.consult-flow-grid{grid-template-columns:repeat(2,1fr)}
  .metrics-inner{grid-template-columns:1fr}
  .metrics-label{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:10px;padding:14px 0;border-right:0;border-bottom:1px solid var(--line)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .metric:nth-child(2)::after{display:none}
  .metric:nth-child(odd)::after{display:block}
}

@media (max-width: 780px){
  .container{width:min(calc(100% - 32px),var(--container))}
  .section{padding:80px 0}
  .section-heading-row{flex-direction:column;align-items:flex-start;gap:16px}
  .hero-inner{min-height:auto;display:block;padding:58px 0 28px}
  .hero-copy{max-width:100%;padding-top:10px}
  .hero h1{font-size:clamp(38px,12vw,54px)}
  .hero h1 span{white-space:normal}
  .hero-lead{font-size:16px;max-width:none}
  .hero-actions{gap:12px}
  .hero-actions .button{width:100%}
  .hero-caption{position:relative;right:auto;bottom:auto;width:100%;margin-top:28px}
  .hero-controls{position:relative;right:auto;bottom:auto;justify-content:flex-end;margin-top:18px}
  .metrics-inner{padding-top:0}
  .metric{padding:18px 18px 24px}
  .metric span{font-size:48px}
  .integration-summary .domains{font-size:14px;line-height:1.7}
  .diagram-heading{font-size:30px}
  .diagram-heading span,.section h2 span,.consult-copy h1 span{white-space:normal}
  .archive-hero-inner{grid-template-columns:1fr}
  .archive-stat{justify-self:start}
  .contact-inner,.archive-contact-inner{padding:72px 0}
  .footer-inner{flex-direction:column}
  .site-footer nav{justify-content:flex-start}
}

@media (max-width: 640px){
  .header-inner{height:82px}
  .brand img{width:220px}
  .global-nav{top:82px}
  .section-title-block{padding-left:18px}
  .section-heading-accent::before,
  .section-title-block.section-heading-accent::before{width:6px;height:70px}
  .hero-visual::after{background:linear-gradient(180deg,rgba(255,255,255,.97) 0 44%,rgba(255,255,255,.88) 56%,rgba(13,17,21,.68) 100%)}
  .hero-copy{padding-top:0}
  .hero-caption{grid-template-columns:28px 1fr;padding:20px}
  .hero-caption strong{font-size:22px}
  .metrics-grid{grid-template-columns:1fr 1fr}
  .metric:not(:last-child)::after{display:none}
  .case-grid,.service-grid,.column-grid,.case-archive-grid,.column-archive-grid,.benefit-grid,.consult-flow-grid,.form-row.two-col{grid-template-columns:1fr}
  .service-title-row{grid-template-columns:62px minmax(0,1fr);column-gap:12px}
  .service-index{font-size:46px}
  .service-card h3{font-size:23px}
  .system-diagram-panel{padding:18px}
  .system-diagram-wrap{padding:0}
  .contact-section h2,.archive-contact-cta h2{font-size:36px}
  .consult-copy h1{font-size:42px}
  .consult-info-card,.consult-form-card{padding:22px}
  .button,.button-white{width:100%;min-width:0}
  .company-info-list > div{grid-template-columns:1fr;gap:6px}
  .site-footer nav{flex-direction:column;align-items:flex-start;gap:10px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .button:hover,.service-card:hover{transform:none}
}


/* ===== v17: content expansion and SEO-oriented page structure ===== */
.breadcrumb{display:flex;align-items:center;gap:10px;padding-top:18px;font-size:13px;color:var(--muted)}
.breadcrumb a{font-weight:700}.breadcrumb span[aria-hidden="true"]{color:#aaa}.breadcrumb [aria-current="page"]{color:var(--ink)}
.page-hero{padding:72px 0 64px;border-bottom:1px solid var(--line)}
.page-hero-layout{display:grid;grid-template-columns:1fr auto;gap:40px;align-items:end}
.page-hero h1{margin:0;font-size:clamp(46px,4.2vw,64px);line-height:1.12;letter-spacing:-.05em}
.page-hero-lead{max-width:820px;margin:18px 0 0;color:var(--muted);font-size:17px}
.page-hero-aside{min-width:230px;padding:22px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft)}
.page-hero-aside strong,.page-hero-aside span{display:block}.page-hero-aside span{margin-top:6px;color:var(--muted);font-size:13px}
.section-intro{max-width:820px;margin:12px 0 0!important;font-size:16px}

.trouble-section{background:#fff}
.trouble-heading .section-kicker{color:var(--red)!important}
.trouble-copy h2,.trouble-summary .section-intro,.trouble-card h3,.trouble-card-body>p:last-child{line-break:strict;word-break:auto-phrase;text-wrap:pretty}
.trouble-layout{display:block}
.trouble-copy{display:block;max-width:none;margin-bottom:32px}
.trouble-heading{min-width:0;max-width:none}
.trouble-summary{min-width:0;padding-bottom:0;margin-top:14px;max-width:none}
.trouble-copy h2{font-size:clamp(38px,4vw,60px);line-height:1.24;letter-spacing:-.05em;max-width:none}
.trouble-summary .section-intro{max-width:none;width:100%;margin-top:0!important}
.trouble-section .button{margin-top:24px}
.trouble-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;align-items:stretch}
.trouble-card{display:grid;grid-template-columns:minmax(220px,42%) minmax(0,1fr);min-height:244px;padding:0;overflow:hidden;background:var(--surface);border:1px solid var(--line);border-top:3px solid var(--red);box-shadow:0 12px 26px rgba(16,18,22,.055)}
.trouble-card-visual{display:flex;align-items:center;justify-content:center;width:100%;min-height:0;margin:0;background:var(--bg-soft);overflow:hidden}
.trouble-card-visual img{width:100%;height:100%;object-fit:contain}
.trouble-card-body{display:flex;flex-direction:column;justify-content:center;min-width:0;padding:22px 20px}
.trouble-card-label{margin:0 0 8px;color:var(--red);font-size:12.5px;line-height:1.4;font-weight:900;letter-spacing:.05em}
.trouble-card h3{margin:0 0 10px;font-size:20px;line-height:1.52;letter-spacing:-.01em}
.trouble-card-body>p:last-child{margin:0;color:var(--muted);font-size:14px;line-height:1.72}

.scope-section{background:var(--bg-soft)}
.scope-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.scope-grid article{min-height:190px;padding:22px 18px;background:#fff;border:1px solid var(--line)}
.scope-grid span{display:block;margin-bottom:20px;color:var(--red);font-size:30px;line-height:1;font-weight:900}
.scope-grid h3{margin:0 0 10px;font-size:20px;line-height:1.35}.scope-grid p{margin:0;font-size:14px;color:var(--muted)}
.home-collapsible{margin-top:24px}
.home-collapsible > summary{display:inline-flex;align-items:center;gap:10px;min-height:46px;padding:12px 18px;border:1px solid var(--line-strong);background:#fff;color:var(--ink);font-weight:900;cursor:pointer;box-shadow:var(--shadow-soft);list-style:none;user-select:none}
.home-collapsible > summary::-webkit-details-marker{display:none}
.home-collapsible > summary::after{content:"＋";display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--red);color:#fff;font-size:15px;line-height:1}
.home-collapsible[open] > summary::after{content:"−"}
.home-collapsible > summary:hover,.home-collapsible > summary:focus-visible{border-color:var(--red);color:var(--red);outline:none}
.home-collapsible-panel{margin-top:18px}
.home-collapsible .platform-note{margin-top:18px}
.scope-grid-full{margin-top:36px}.boundary-note{margin-top:28px;padding:24px;border-left:6px solid var(--red);background:#fff}.boundary-note p{margin:6px 0 0;color:var(--muted)}

.director-section{background:#fff}
.director-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:56px;align-items:stretch}
.director-profile-panel{padding:30px;background:linear-gradient(145deg,#121820,#222b36);color:#fff;box-shadow:var(--shadow)}
.director-profile-panel.large{padding:42px}
.director-role{margin:0;color:#efbec3!important;font-size:12px;font-weight:900;letter-spacing:.2em}
.director-monogram{display:flex;align-items:center;justify-content:center;width:112px;height:112px;margin:24px 0;border:1px solid rgba(255,255,255,.35);font-size:42px;font-weight:900;letter-spacing:.08em}
.director-photo{display:block;width:128px;height:128px;margin:24px 0;object-fit:cover;border:1px solid rgba(255,255,255,.35);box-shadow:0 18px 34px rgba(0,0,0,.25)}.director-profile-panel.large .director-photo{width:168px;height:168px}
.director-profile-heading{display:grid;grid-template-columns:128px minmax(0,1fr);gap:22px;align-items:center;margin:24px 0 24px}
.director-profile-heading .director-photo{margin:0}
.director-profile-copy{min-width:0}.director-position{margin:0 0 8px;color:#efbec3!important;font-size:17px;font-weight:900;letter-spacing:.04em}
.director-profile-heading .director-name-ja{margin:0;font-size:28px;line-height:1.25;letter-spacing:-.04em;color:#fff}
.director-profile-heading .director-age{color:#fff}
.director-age{font-size:.68em;color:#efbec3;font-weight:900;white-space:nowrap}
.director-name-ja,.director-profile-panel h2{margin:0 0 10px;font-size:30px;font-weight:900}.director-title{margin:0 0 18px;color:#efbec3!important;font-weight:800}
.director-profile-panel>p:not(.director-role):not(.director-name-ja):not(.director-title){color:#e4e9ee}
.director-profile-detail{margin-top:14px!important;line-height:1.85}
.director-experience{margin-top:18px}.director-experience-label{margin:0 0 9px!important;color:#efbec3!important;font-size:12px;font-weight:900;letter-spacing:.12em}.director-experience-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}.director-experience-grid span{display:block;padding:10px 10px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.035);color:#dce2e8;font-size:11px;line-height:1.55}.director-experience-grid b{display:block;margin:0 0 4px;color:#fff;font-size:12px;font-weight:900;letter-spacing:.02em}
.director-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:24px}.director-metrics span{padding:14px 8px;border:1px solid rgba(255,255,255,.16);text-align:center;font-size:12px;color:#dce2e8}.director-metrics b{display:block;color:#fff;font-size:17px}
.team-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:28px 0}.team-grid article{padding:20px;border-top:3px solid var(--red);background:var(--bg-soft)}.team-grid h3{margin:0 0 8px;font-size:20px}.team-grid p{margin:0;color:var(--muted)}

.pricing-preview{background:var(--bg-soft)}
.pricing-factor-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.pricing-factor-grid article{padding:22px;background:#fff;border:1px solid var(--line)}
.pricing-factor-grid h3{margin:0 0 8px;font-size:20px}.pricing-factor-grid p{margin:0;color:var(--muted)}
.cost-example-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px}.cost-example-grid article{padding:24px;background:var(--dark);color:#fff}.cost-example-grid h3{margin:0 0 10px;font-size:22px}.cost-example-grid p{margin:0;color:#dbe1e7}.cost-label{color:#efbec3!important;font-size:12px;font-weight:900;letter-spacing:.15em}

.faq-preview{background:var(--bg-soft);border-top:0}.faq-preview-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:56px;align-items:start}.faq-preview-layout>.section-title-block,.faq-preview-layout>.faq-preview-main{min-width:0}.faq-preview-main .preview-role{margin:0 0 10px;text-align:left}.faq-preview .section-title-block .text-link{display:block;margin-top:6px;text-align:right;border-bottom:0;padding-bottom:0;text-decoration:underline;text-decoration-color:var(--red);text-decoration-thickness:1px;text-underline-offset:6px}
.faq-list{display:grid;gap:12px}.faq-list details{border:1px solid var(--line);background:#fff}.faq-list summary{position:relative;padding:20px 54px 20px 22px;font-weight:900;cursor:pointer;list-style:none}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary::after{content:"＋";position:absolute;right:20px;top:50%;transform:translateY(-50%);color:var(--red);font-size:22px}.faq-list details[open] summary::after{content:"−"}.faq-list details p{margin:0;padding:0 22px 22px;color:var(--muted)}
.faq-page-layout{display:grid;grid-template-columns:300px 1fr;gap:42px;align-items:start}.faq-aside{position:sticky;top:120px;padding:22px;background:#fff;border:1px solid var(--line)}.faq-aside h2{margin:0 0 14px;font-size:20px}.faq-aside a{display:block;padding:10px 0;border-bottom:1px solid var(--line);font-weight:700}

.service-detail-list{display:grid;gap:22px}.service-detail-block{display:grid;grid-template-columns:1.1fr .9fr;gap:42px;padding:36px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)}.service-detail-index{margin:0!important;color:var(--red)!important;font-size:48px;font-weight:900;line-height:1}.service-detail-block h2{margin:6px 0 12px;font-size:36px;line-height:1.25}.service-detail-block p{color:var(--muted)}.service-detail-block ul{margin:0;padding:20px 20px 20px 40px;background:var(--bg-soft)}.service-detail-block li+li{margin-top:10px}
.webinar-section{background:var(--dark);color:#fff}.webinar-layout{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:center}.webinar-section p{color:#dbe1e7}.webinar-list{display:flex;flex-wrap:wrap;gap:12px}.webinar-list span{padding:11px 15px;border:1px solid rgba(255,255,255,.25);font-weight:800}
.pricing-section{background:var(--bg-soft)}

.director-page-layout{display:grid;grid-template-columns:.78fr 1.22fr;gap:52px;align-items:start}.responsibility-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:28px}.responsibility-list article{padding:22px;border:1px solid var(--line);background:#fff}.responsibility-list span{display:block;color:var(--red);font-size:32px;font-weight:900}.responsibility-list h3{margin:8px 0;font-size:21px}.responsibility-list p{margin:0;color:var(--muted)}
.team-structure-section{background:var(--bg-soft)}.team-structure-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:32px}.team-structure-grid article{padding:24px;background:#fff;border-top:4px solid var(--red)}.team-structure-grid h3{margin:0 0 8px;font-size:22px}.team-structure-grid p{margin:0;color:var(--muted)}

.legal-content{max-width:900px}.legal-content h2{margin:42px 0 12px;font-size:26px}.legal-content h2:first-child{margin-top:0}.legal-content p,.legal-content li{color:var(--muted)}.legal-content a{color:var(--red);font-weight:800}.legal-note{margin-top:42px;padding:20px;border-left:5px solid var(--red);background:#fff}

.case-detail-hero{padding:58px 0;background:#fff;border-bottom:1px solid var(--line)}.case-detail-hero-layout{display:grid;grid-template-columns:1fr .86fr;gap:42px;align-items:center}.case-detail-category{margin:0 0 14px;color:var(--red);font-size:13px;font-weight:900;letter-spacing:.12em}.case-detail-hero h1{margin:0 0 18px;font-size:clamp(40px,4vw,60px);line-height:1.22;letter-spacing:-.05em}.case-detail-hero p{color:var(--muted)}.case-detail-hero img{width:100%;aspect-ratio:16/9;object-fit:cover}.case-detail-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px}.case-detail-meta span{padding:7px 10px;border-radius:999px;background:var(--red-soft);color:var(--red);font-size:12px;font-weight:900}
.case-detail-content{padding-top:72px;padding-bottom:90px}.case-summary-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.case-summary-grid article,.case-detail-section,.case-detail-two article{padding:28px;background:#fff;border:1px solid var(--line)}.case-summary-grid span{display:block;color:var(--red);font-size:34px;font-weight:900}.case-summary-grid h2{margin:6px 0 12px;font-size:24px}.case-summary-grid p,.case-detail-section p,.case-detail-two p{margin:0;color:var(--muted)}.case-detail-section{margin-top:22px}.case-detail-heading p{margin:0 0 4px!important;color:var(--red)!important;font-size:12px;font-weight:900;letter-spacing:.18em}.case-detail-heading h2{margin:0 0 14px;font-size:30px}.case-detail-two{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:22px}.case-diagram{display:grid;grid-template-columns:1.2fr auto 1fr auto .9fr;gap:18px;align-items:center;margin-top:28px;padding:28px;background:var(--bg-soft);border:1px solid var(--line)}.case-diagram-inputs{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.case-diagram-node,.case-diagram-hub,.case-diagram-output{padding:16px;text-align:center;background:#fff;border:1px solid var(--line);font-weight:900}.case-diagram-hub{background:var(--dark);color:#fff}.case-diagram-hub small{font-weight:400;color:#dbe1e7}.case-diagram-arrow{color:var(--red);font-size:26px;font-weight:900}.case-detail-page-cta{margin-top:0}.case-detail-page-cta .button{margin-top:18px}

.required{display:inline-flex;margin-left:7px;padding:2px 7px;border-radius:999px;background:var(--red-soft);color:var(--red);font-size:11px}.form-check-group{margin:0;padding:16px;border:1px solid var(--line-strong)}.form-check-group legend{padding:0 8px;font-weight:800}.form-check-group label{display:inline-flex;grid-template-columns:auto 1fr;align-items:center;margin:6px 20px 6px 0;font-weight:500}.form-check-group input,.privacy-consent input{appearance:auto;width:auto}.privacy-consent{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center!important;gap:10px!important;font-weight:500!important}.privacy-consent a,.contact-privacy-note a{color:var(--red);font-weight:800}.contact-privacy-note{margin-top:28px;padding:18px;border-left:4px solid var(--red);background:var(--bg-soft)}.contact-privacy-note p{margin:6px 0 0}.form-status{margin:0!important;color:var(--red)!important;font-weight:800;text-align:center}
.contact-email-fallback{margin:4px 0 0!important;color:var(--muted)!important;font-size:14px;text-align:center}.contact-email-fallback a{color:var(--red);font-weight:900;text-decoration:underline;text-underline-offset:4px}
.footer-bottom-inner{display:flex;justify-content:space-between;gap:20px}.footer-bottom-inner a{font-weight:700}

@media (max-width:1100px){.scope-grid{grid-template-columns:repeat(3,1fr)}.director-layout,.faq-preview-layout,.director-page-layout{grid-template-columns:1fr}.page-hero-layout{grid-template-columns:1fr}.page-hero-aside{justify-self:start}.director-profile-panel{max-width:none}.faq-page-layout{grid-template-columns:1fr}.faq-aside{position:static}.service-detail-block{grid-template-columns:1fr}.webinar-layout{grid-template-columns:1fr}.case-diagram{grid-template-columns:1fr}.case-diagram-arrow{transform:rotate(90deg);text-align:center}}
@media (max-width:980px){.trouble-card-grid{grid-template-columns:1fr}.trouble-card{grid-template-columns:minmax(240px,38%) minmax(0,1fr)}}

@media (max-width:780px){.scope-grid,.pricing-factor-grid,.cost-example-grid,.team-structure-grid{grid-template-columns:repeat(2,1fr)}.trouble-card{grid-template-columns:220px minmax(0,1fr);min-height:226px}.trouble-card h3{font-size:18px}.trouble-card-body>p:last-child{font-size:13.5px}.director-metrics,.responsibility-list,.case-summary-grid,.case-detail-two{grid-template-columns:1fr 1fr}.case-detail-hero-layout{grid-template-columns:1fr}.case-detail-hero img{order:-1}.case-detail-page-cta .archive-contact-inner{padding:56px 24px}.case-detail-page-cta h2{font-size:34px}}
@media (max-width:640px){.scope-grid,.pricing-factor-grid,.cost-example-grid,.team-grid,.team-structure-grid,.responsibility-list,.case-summary-grid,.case-detail-two{grid-template-columns:1fr}.trouble-copy{margin-bottom:28px}.trouble-card-grid{grid-template-columns:1fr}.trouble-card{grid-template-columns:1fr;min-height:0}.trouble-card-visual{min-height:220px;aspect-ratio:4/3}.trouble-card-body{padding:18px 16px 20px}.trouble-card h3{font-size:17px}.director-profile-heading{grid-template-columns:1fr;gap:16px}.director-metrics{grid-template-columns:1fr}.page-hero{padding:54px 0 46px}.page-hero h1{font-size:40px}.service-detail-block{padding:24px}.case-detail-content{padding-top:48px}.case-diagram-inputs{grid-template-columns:1fr}.footer-bottom-inner{flex-direction:column}}
.case-diagram-heading{margin-top:30px}


/* v18: wayfinding, page roles, reading progress */
html{scroll-padding-top:158px}
[id]{scroll-margin-top:158px}
.reading-progress{position:fixed;left:0;top:0;width:100%;height:3px;background:var(--red);z-index:100;pointer-events:none;transform:scaleX(0);transform-origin:left center;will-change:transform;contain:paint}
.page-context-nav{position:sticky;top:92px;z-index:44;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 4px 12px rgba(15,18,22,.03)}
.page-context-inner{min-height:52px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.page-context-current{display:flex;align-items:center;gap:8px;min-width:max-content;font-size:13px;color:var(--muted)}
.page-context-current .context-label{font-size:10px;letter-spacing:.16em;font-weight:900;color:var(--red)}
.page-context-current a{font-weight:800;color:var(--muted)}
.page-context-current strong{color:var(--ink);font-size:14px}
.page-context-links{display:flex;align-items:center;justify-content:flex-end;gap:6px;overflow-x:auto;scrollbar-width:none;padding:7px 0}
.page-context-links::-webkit-scrollbar{display:none}
.page-context-links a{position:relative;display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;white-space:nowrap;font-size:12px;font-weight:800;color:var(--muted);transition:.2s ease}
.page-context-links a:hover,.page-context-links a.is-active,.page-context-links a[aria-current="location"]{background:var(--red-soft);color:var(--red)}
.preview-role{margin:0 0 12px;color:var(--red)!important;font-size:11px!important;font-weight:900;letter-spacing:.12em}
.section-tracker{scroll-margin-top:158px}
.anchor-marker{display:block;position:relative;top:-158px;visibility:hidden}

.next-reading{padding:58px 0;background:#eeeae6;border-top:1px solid var(--line)}
.next-reading-inner{display:grid;grid-template-columns:200px 1fr;gap:30px;align-items:start}
.next-reading-heading p{margin:0 0 5px;font-size:11px;font-weight:900;letter-spacing:.18em;color:var(--red)}
.next-reading-heading h2{margin:0;font-size:32px;line-height:1.2}
.next-reading-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.next-reading-grid>a{position:relative;min-height:160px;padding:22px 54px 22px 22px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft);transition:.2s ease}
.next-reading-grid>a:hover{transform:translateY(-2px);border-color:#d6c6c8}
.next-reading-label{display:block;margin-bottom:8px;font-size:11px;font-weight:900;letter-spacing:.1em;color:var(--red)}
.next-reading-grid h3{margin:0 0 8px;font-size:22px;line-height:1.35}
.next-reading-grid p{margin:0;color:var(--muted);font-size:14px}
.next-reading-arrow{position:absolute;right:22px;top:50%;transform:translateY(-50%);color:var(--red);font-size:24px;font-weight:900}

/* The completion page uses the archive vocabulary without the archive two-column statistic. */
.thanks-hero{padding:72px 0 64px;background:#fff}
.thanks-hero-inner{display:block;max-width:920px;margin:0 auto}
.thanks-hero .section-kicker{margin:0 0 2px}
.thanks-hero h1{max-width:820px;font-size:clamp(44px,4vw,60px)}
.thanks-hero .page-hero-lead{max-width:820px;margin-top:20px;font-size:17px;line-height:1.9}
.thanks-hero .button{width:auto;margin-top:28px}
.thanks-page .next-reading-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.thanks-page .next-reading-grid>a{min-height:178px}

.faq-category-index{margin-bottom:34px;padding:26px;background:#fff;border:1px solid var(--line)}
.faq-category-index h2{margin:0 0 16px;font-size:28px}
.faq-category-links{display:flex;flex-wrap:wrap;gap:10px}
.faq-category-links a{display:inline-flex;padding:9px 14px;border-radius:999px;border:1px solid var(--line-strong);font-size:13px;font-weight:800;background:#fff;white-space:nowrap}
.faq-category-links a:hover{border-color:var(--red);color:var(--red)}
.faq-group{margin-top:28px}
.faq-group:first-of-type{margin-top:0}
.faq-group-heading{display:flex;align-items:baseline;gap:16px;margin-bottom:14px}
.faq-group-heading p{margin:0;color:var(--red);font-size:11px;font-weight:900;letter-spacing:.14em}
.faq-group-heading h2{margin:0;font-size:30px}

/* Home page is an overview: compact previews avoid duplicating the service page. */
.home-page .scope-grid article{min-height:170px}
.home-page .pricing-factor-grid article{min-height:130px}

@media (max-width:960px){
  html{scroll-padding-top:145px}
  [id],.section-tracker{scroll-margin-top:145px}
  .page-context-inner{align-items:flex-start;flex-direction:column;gap:0;padding-top:8px;padding-bottom:7px}
  .page-context-links{width:100%;justify-content:flex-start}
  .page-context-nav{top:82px}
  .anchor-marker{top:-145px}
}
@media (max-width:780px){
  .next-reading-inner{grid-template-columns:1fr}
  .next-reading-grid{grid-template-columns:1fr}
}
@media (max-width:1100px){
  .thanks-page .next-reading-inner{grid-template-columns:1fr}
}
@media (max-width:780px){
  .thanks-page .next-reading-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  html{scroll-padding-top:142px}
  [id],.section-tracker{scroll-margin-top:142px}
  .page-context-current{max-width:100%;overflow:hidden}
  .page-context-current strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .page-context-links a{padding:0 10px;font-size:11px}
  .next-reading{padding:46px 0}
  .next-reading-grid>a{min-height:145px}
  .thanks-hero{padding:52px 0 48px}
  .thanks-hero h1{font-size:38px;line-height:1.2}
  .thanks-hero .page-hero-lead{font-size:16px;line-height:1.85}
  .thanks-hero .button{width:100%;margin-top:24px}
  .thanks-page .next-reading-grid>a{min-height:0}
  .faq-group-heading{display:block}
  .faq-group-heading h2{margin-top:4px;font-size:26px}
}
@media (prefers-reduced-motion:reduce){.next-reading-grid>a:hover{transform:none}}


/* v20: visitor-facing case count, repaired FAQ hierarchy, platform support */
.archive-stat-public{display:flex;flex-direction:column;justify-content:center;min-height:176px}
.archive-stat-public span{margin-top:5px;font-size:17px;line-height:1.35}
.archive-stat-public small{display:block;margin-top:10px;color:var(--muted);font-size:12px;font-weight:700;line-height:1.5}

.faq-page-layout{grid-template-columns:300px minmax(0,1fr)}
.faq-category-index{position:sticky;top:166px;margin-bottom:0;align-self:start}
.faq-groups{display:grid;gap:50px;min-width:0}
.faq-groups .faq-group{margin:0;min-width:0}
.faq-groups .faq-list{width:100%}
.faq-groups .faq-list details{width:100%}

.platform-overview{background:#fff}
.platform-detail{background:var(--bg-soft)}
.platform-chip-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.platform-chip{display:flex;min-width:0;min-height:78px;align-items:center;gap:12px;padding:13px 12px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft)}
.platform-chip .platform-logo-box{flex:0 0 130px;width:130px;height:46px;display:flex;align-items:center;justify-content:center;min-width:0}
.platform-chip img{display:block;flex:0 0 auto;border-radius:0;object-fit:contain;object-position:center;background:transparent}
.platform-chip span:not(.platform-logo-box){min-width:0;font-size:13px;font-weight:900;line-height:1.3;overflow-wrap:anywhere}
.platform-note{margin:18px 0 0;color:var(--muted);font-size:13px}
.platform-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.platform-card{display:flex;align-items:center;gap:18px;min-height:126px;padding:20px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.platform-card .platform-logo-box{flex:0 0 150px;width:150px;height:76px;display:flex;align-items:center;justify-content:center;min-width:0}
.platform-card img{display:block;border-radius:0;object-fit:contain;object-position:center;background:transparent;flex:0 0 auto}
.platform-card h3{margin:0 0 5px;font-size:20px;line-height:1.3}
.platform-card p{margin:0;color:var(--muted);font-size:13px}
.platform-extra-note{margin:14px 0 0;color:var(--muted);font-size:12px;line-height:1.7}
.platform-detail-note{margin-top:24px;padding:22px 24px;border-left:5px solid var(--red);background:#fff}
.platform-detail-note p{margin:7px 0 0;color:var(--muted)}
.platform-chip img.platform-logo{width:var(--chip-logo-w,112px);height:var(--chip-logo-h,36px)}
.platform-card img.platform-logo{width:var(--card-logo-w,136px);height:var(--card-logo-h,54px)}
.platform-logo--youtube{--chip-logo-w:120px;--chip-logo-h:31px;--card-logo-w:136px;--card-logo-h:36px}
.platform-logo--zoom{--chip-logo-w:122px;--chip-logo-h:31px;--card-logo-w:138px;--card-logo-h:36px}
.platform-logo--teams{--chip-logo-w:46px;--chip-logo-h:46px;--card-logo-w:64px;--card-logo-h:64px}
.platform-logo--webex{--chip-logo-w:88px;--chip-logo-h:58px;--card-logo-w:118px;--card-logo-h:76px}
.platform-logo--vimeo{--chip-logo-w:108px;--chip-logo-h:31px;--card-logo-w:124px;--card-logo-h:36px}
.platform-logo--peatix{--chip-logo-w:112px;--chip-logo-h:34px;--card-logo-w:130px;--card-logo-h:40px}
.platform-logo--uliza{--chip-logo-w:106px;--chip-logo-h:31px;--card-logo-w:124px;--card-logo-h:38px}
.platform-logo--niconico{--chip-logo-w:116px;--chip-logo-h:28px;--card-logo-w:134px;--card-logo-h:34px}
.platform-logo--pia{--chip-logo-w:96px;--chip-logo-h:40px;--card-logo-w:116px;--card-logo-h:48px}


@media (max-width:980px){
  .platform-chip-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1100px){
  .faq-page-layout{grid-template-columns:1fr}
  .faq-category-index{position:static}
  .platform-card-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:780px){
  .platform-chip-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .archive-stat-public{min-height:auto}
  .platform-chip-grid,.platform-card-grid{grid-template-columns:1fr}
  .platform-chip{min-height:70px;padding:11px 12px}
  .platform-chip .platform-logo-box{flex-basis:118px;width:118px;height:42px;justify-content:center}
  .platform-card{min-height:0}
  .platform-card .platform-logo-box{flex-basis:132px;width:132px;height:70px;justify-content:center}
  .platform-chip img.platform-logo{transform:scale(.92)}
  .platform-card img.platform-logo{transform:scale(.94)}
}


/* ===== v21: clarify site-wide navigation vs. current-page navigation ===== */
.page-context-nav{
  background:#f7f4f1;
  border-top:1px solid #eee9e4;
  border-bottom:1px solid var(--line);
  box-shadow:none;
}
.page-context-inner{
  display:grid;
  grid-template-columns:minmax(250px,auto) minmax(0,1fr);
  gap:0;
  min-height:58px;
}
.page-context-current{
  min-width:0;
  padding:8px 24px 8px 0;
  border-right:1px solid var(--line);
  color:var(--muted);
}
.page-context-current .context-label{
  display:flex;
  flex:0 0 auto;
  flex-direction:column;
  justify-content:center;
  gap:1px;
  min-width:58px;
  margin-right:3px;
  line-height:1.05;
}
.page-context-current .context-label span{
  font-size:10px;
  letter-spacing:.16em;
  font-weight:900;
  color:var(--red);
}
.page-context-current .context-label small{
  font-size:9px;
  letter-spacing:.05em;
  font-weight:800;
  color:var(--muted);
}
.page-context-current strong{
  padding:3px 0;
  color:var(--ink);
  font-size:14px;
}
.page-context-links{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:14px;
  min-width:0;
  padding-left:20px;
  overflow:visible;
}
.page-context-section-label{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1px;
  min-width:74px;
  line-height:1.05;
}
.page-context-section-label span{
  font-size:9px;
  letter-spacing:.13em;
  font-weight:900;
  color:var(--ink);
}
.page-context-section-label small{
  font-size:9px;
  letter-spacing:.05em;
  font-weight:800;
  color:var(--muted);
}
.page-context-link-list{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:5px;
  min-width:0;
  overflow-x:auto;
  padding:8px 0;
  scrollbar-width:none;
  overscroll-behavior-inline:contain;
}
.page-context-link-list::-webkit-scrollbar{display:none}
.page-context-link-list a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 11px;
  border:1px solid transparent;
  border-radius:999px;
  white-space:nowrap;
  font-size:11px;
  font-weight:800;
  color:var(--muted);
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.page-context-link-list a:hover{
  border-color:var(--line-strong);
  background:#fff;
  color:var(--ink);
}
.page-context-link-list a.is-active,
.page-context-link-list a[aria-current="location"]{
  border-color:#e8b9be;
  background:var(--red-soft);
  color:var(--red);
}

@media (max-width:1100px){
  .page-context-inner{grid-template-columns:minmax(220px,auto) minmax(0,1fr)}
  .page-context-links{gap:9px;padding-left:14px}
  .page-context-section-label{min-width:66px}
  .page-context-link-list a{padding:0 9px;font-size:10.5px}
}

@media (max-width:960px){
  .page-context-inner{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding-top:0;
    padding-bottom:0;
  }
  .page-context-current{
    width:100%;
    min-height:38px;
    padding:5px 0;
    border-right:0;
  }
  .page-context-current .context-label{
    flex-direction:row;
    align-items:baseline;
    min-width:auto;
    margin-right:5px;
  }
  .page-context-current .context-label small::before{content:" / ";color:#b7afa9}
  .page-context-links{
    width:100%;
    grid-template-columns:auto minmax(0,1fr);
    gap:9px;
    padding:0;
    border-top:1px solid var(--line);
  }
  .page-context-section-label{
    min-width:auto;
    flex-direction:row;
    align-items:baseline;
    padding-left:0;
  }
  .page-context-section-label small::before{content:" / ";color:#b7afa9}
  .page-context-link-list{
    justify-content:flex-start;
    padding:6px 0;
  }
}

@media (max-width:640px){
  .page-context-current{font-size:11px}
  .page-context-current strong{font-size:12px}
  .page-context-links{display:block}
  .page-context-section-label{
    padding:5px 0 0;
  }
  .page-context-link-list{
    width:100%;
    padding:5px 0 7px;
  }
  .page-context-link-list a{min-height:30px;padding:0 9px;font-size:10px}
}


/* v23: footer navigation without duplicated contact CTA */
.site-footer nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:12px 22px;
}
.site-footer nav a{
  white-space:nowrap;
}
@media (max-width:960px){
  .site-footer nav{
    justify-content:flex-start;
  }
}
@media (max-width:640px){
  .site-footer nav{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    gap:0;
  }
  .site-footer nav a{
    padding:10px 0;
  }
}


/* ===== v24: heading hierarchy and lower-friction contact flow ===== */
.strategic-heading{font-size:clamp(38px,4vw,60px)!important;line-height:1.16!important;letter-spacing:-.05em!important}
.pricing-one-line{white-space:nowrap}
.services-page .page-hero h1.service-page-title{font-size:clamp(44px,3.7vw,56px);white-space:nowrap}
.engagement-process{background:#fff}
.engagement-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:34px}
.engagement-process-grid article{padding:24px;background:var(--bg-soft);border:1px solid var(--line)}
.engagement-process-grid span{display:block;margin-bottom:14px;color:var(--red);font-size:34px;line-height:1;font-weight:900}
.engagement-process-grid h3{margin:0 0 10px;font-size:21px;line-height:1.35}
.engagement-process-grid p{margin:0;color:var(--muted);font-size:14px}
.engagement-note{margin:22px 0 0;padding:18px 20px;border-left:5px solid var(--red);background:var(--red-soft);color:var(--ink)!important}
.contact-reassurance{margin-top:24px;padding:20px;border-left:5px solid var(--red);background:var(--red-soft)}
.contact-reassurance p{margin:6px 0 0;color:var(--muted)}

@media (max-width:1100px){
  .pricing-one-line,.services-page .page-hero h1.service-page-title{white-space:normal}
  .engagement-process-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .strategic-heading{font-size:36px!important;white-space:normal!important}
  .engagement-process-grid{grid-template-columns:1fr}
}

/* ===== v25: keep selected home-section headings on one line ===== */
.home-one-line-heading{
  font-size:clamp(38px,3.25vw,50px)!important;
  line-height:1.16!important;
  letter-spacing:-.05em!important;
  white-space:nowrap;
}
@media (max-width:1100px){
  .home-one-line-heading{white-space:normal}
}


/* ===== v26: compact global navigation and separated wayfinding layers ===== */
:root{
  --site-header-height:68px;
  --in-page-nav-height:46px;
  --in-page-content-gap:28px;
}
html{scroll-padding-top:124px}
[id]{scroll-margin-top:124px}

.site-header{
  min-height:var(--site-header-height);
  background:rgba(255,255,255,.98);
  backdrop-filter:none;
}
.header-inner{
  height:var(--site-header-height);
  gap:20px;
}
.brand img{width:235px;max-width:min(55vw,235px)}
.global-nav{gap:18px;font-size:13px}
.global-nav a:not(.nav-cta)::after{bottom:-5px}
.nav-cta{min-height:42px;padding:0 16px}

/* CURRENT is now only a compact breadcrumb and scrolls away with the page. */
.breadcrumb-bar{
  background:#fbfaf8;
  border-bottom:1px solid var(--line);
}
.breadcrumb-inner{
  min-height:32px;
  display:flex;
  align-items:center;
  gap:7px;
  overflow-x:auto;
  white-space:nowrap;
  scrollbar-width:none;
  color:var(--muted);
  font-size:11px;
}
.breadcrumb-inner::-webkit-scrollbar{display:none}
.breadcrumb-label{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  margin-right:3px;
  color:var(--red);
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
}
.breadcrumb-label small{
  color:var(--muted);
  font-size:9px;
  font-weight:800;
  letter-spacing:.03em;
}
.breadcrumb-inner a{font-weight:700;color:var(--muted)}
.breadcrumb-inner strong{font-weight:900;color:var(--ink)}
.breadcrumb-separator{color:#b8b0aa}

/* The page index appears after the page hero, then becomes sticky only when reached. */
.in-page-nav{
  position:sticky;
  top:var(--site-header-height);
  z-index:44;
  background:rgba(255,255,255,.98);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  box-shadow:0 5px 14px rgba(15,18,22,.04);
}
.in-page-inner{
  min-height:var(--in-page-nav-height);
  display:flex;
  align-items:center;
  gap:18px;
}
.in-page-label{
  flex:0 0 auto;
  color:var(--ink);
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}
.in-page-link-list{
  display:flex;
  align-items:center;
  gap:5px;
  min-width:0;
  overflow-x:auto;
  padding:6px 0;
  scrollbar-width:none;
  overscroll-behavior-inline:contain;
}
.in-page-link-list::-webkit-scrollbar{display:none}
.in-page-link-list a{
  display:inline-flex;
  align-items:center;
  min-height:31px;
  padding:0 11px;
  border:1px solid transparent;
  border-radius:999px;
  white-space:nowrap;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.in-page-link-list a:hover{
  border-color:var(--line-strong);
  background:#fff;
  color:var(--ink);
}
.in-page-link-list a.is-active,
.in-page-link-list a[aria-current="location"]{
  border-color:#e8b9be;
  background:var(--red-soft);
  color:var(--red);
}

/* Dedicated pages introduced by the information architecture. */
.company-page #company-profile .company-info-layout{display:block}
.company-page #company-profile .company-info-list{max-width:900px;margin:0 auto}
.strengths-page .page-hero,.company-page .page-hero{padding:64px 0 54px}
.company-info h2 a{display:inline-block}
.company-info-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:18px}
.company-info-more-link{white-space:nowrap}
.home-page .section-title-block > .section-kicker:not(.light){color:var(--red)}


/* v80: Company profile label readability. */
.company-info-list dt.nowrap-label{white-space:nowrap}
.company-page #company-profile .company-info-list > div{grid-template-columns:260px 1fr}
@media (max-width:640px){
  .company-info-list dt.nowrap-label{white-space:normal}
  .company-page #company-profile .company-info-list > div{grid-template-columns:1fr}
}

/* One compact white footer, with the legal row separated only by a fine rule. */
.site-footer{background:#fff;border-top:1px solid var(--line)}
.footer-main{border-top:0}
.footer-inner{padding:26px 0 18px;gap:28px}
.footer-main img{width:240px}
.footer-company-copy{margin-top:2px;line-height:1.65}
.footer-company-copy span{display:block;white-space:nowrap}
.footer-bottom{padding:10px 0 12px;background:#fff;border-top:1px solid var(--line)}
.footer-bottom-inner{font-size:11px}

@media (max-width:1100px){
  .global-nav{gap:13px;font-size:12px}
  .nav-cta{padding:0 13px}
}
@media (max-width:960px){
  .global-nav{top:var(--site-header-height)}
  .in-page-nav{top:var(--site-header-height)}
  .in-page-inner{gap:10px}
  .footer-inner{align-items:flex-start}
}
@media (max-width:640px){
  :root{--site-header-height:64px}
  html{scroll-padding-top:116px}
  [id]{scroll-margin-top:116px}
  .header-inner{height:var(--site-header-height)}
  .brand img{width:210px;max-width:62vw}
  .breadcrumb-inner{min-height:30px;font-size:10px}
  .breadcrumb-label small{display:none}
  .in-page-inner{gap:8px}
  .in-page-label{font-size:10px}
  .in-page-link-list a{min-height:30px;padding:0 9px;font-size:10px}
  .footer-inner{padding:22px 0 14px}
  .footer-company-copy span{white-space:normal}
  .footer-bottom{padding:9px 0 11px}
}


/* ===== v27: unified hero spacing and precise in-page navigation ===== */
/* Keep the distance from CURRENT to the page title consistent across all page types. */
.breadcrumb-bar + main > .page-hero,
.breadcrumb-bar + main > .archive-hero,
.breadcrumb-bar + main > .consult-hero,
.breadcrumb-bar + main > .case-detail > .case-detail-hero{
  padding-top:48px;
}

/* Browser-native anchor offsets remain as a no-JavaScript fallback. */
html{scroll-padding-top:calc(var(--site-header-height) + var(--in-page-nav-height) + var(--in-page-content-gap))}
[id]{scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height) + var(--in-page-content-gap))}

@media (max-width:640px){
  .breadcrumb-bar + main > .page-hero,
  .breadcrumb-bar + main > .archive-hero,
  .breadcrumb-bar + main > .consult-hero,
  .breadcrumb-bar + main > .case-detail > .case-detail-hero{
    padding-top:38px;
  }
}


/* v27 refinement: align the actual page-title line, not only the hero box. */
.archive-hero-inner{align-items:start}
.archive-hero .section-kicker{margin-top:0}
.consult-copy{align-self:start}
.consult-copy .section-kicker{margin:0 0 2px;font-size:13px;line-height:1}
.case-detail-hero-layout > div:first-child{align-self:start}
.case-detail-category{margin:0 0 2px;line-height:1}


/* ===== v28: navigation breathing room and compact case-count summary ===== */
/* Leave a small visual pause between the sticky page index and the target content. */
:root{--in-page-content-gap:28px}
html{scroll-padding-top:calc(var(--site-header-height) + var(--in-page-nav-height) + var(--in-page-content-gap))}
[id]{scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height) + var(--in-page-content-gap))}

/* Replace the isolated square counter with a compact, visitor-facing summary. */
.cases-page .archive-hero-inner{
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:36px;
}
.archive-stat.archive-stat-public{
  justify-self:end;
  align-self:end;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:14px;
  min-width:0;
  min-height:0;
  padding:12px 17px 12px 15px;
  border:1px solid var(--line);
  border-left:5px solid var(--red);
  background:#fff;
  box-shadow:var(--shadow-soft);
  text-align:left;
}
.archive-stat-public strong{
  display:flex;
  align-items:baseline;
  gap:3px;
  margin:0;
  line-height:1;
  color:var(--red);
  white-space:nowrap;
}
.archive-stat-public .case-count-number{
  display:inline;
  margin:0;
  font-size:43px;
  line-height:.9;
  letter-spacing:-.07em;
}
.archive-stat-public .case-count-unit{
  display:inline;
  margin:0;
  font-size:15px;
  line-height:1;
  letter-spacing:0;
}
.archive-stat-public .case-count-copy{
  padding-left:14px;
  border-left:1px solid var(--line);
}
.archive-stat-public .case-count-copy span{
  display:block;
  margin:0;
  color:var(--ink);
  font-size:15px;
  font-weight:900;
  line-height:1.25;
}
.archive-stat-public .case-count-copy small{
  display:block;
  margin:4px 0 0;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  line-height:1.35;
  white-space:nowrap;
}

@media (max-width:780px){
  .cases-page .archive-hero-inner{grid-template-columns:1fr;gap:22px}
  .archive-stat.archive-stat-public{justify-self:start}
}
@media (max-width:480px){
  .archive-stat.archive-stat-public{width:100%;grid-template-columns:auto 1fr}
  .archive-stat-public .case-count-copy small{white-space:normal}
}

/* ===== v29: unified page introductions and tighter reading rhythm ===== */
/* The English kicker above every top-level page title uses the brand red. */
.page-hero .section-kicker,
.archive-hero .section-kicker,
.consult-hero .section-kicker{
  color:var(--red)!important;
}

/* Standard content pages share one introduction height, so the page index
   appears at the same vertical position when moving between pages. */
@media (min-width:781px){
  .breadcrumb-bar + main > .page-hero,
  .breadcrumb-bar + main > .archive-hero{
    display:flex;
    align-items:center;
    height:230px;
    min-height:230px;
    padding-top:40px;
    padding-bottom:40px;
  }
  .breadcrumb-bar + main > .page-hero > .container,
  .breadcrumb-bar + main > .archive-hero > .container{
    width:min(calc(100% - 48px),var(--container));
  }
}

/* Keep the title and its explanatory sentence visually connected. */
.page-hero .page-hero-lead,
.archive-hero .page-hero-lead,
.archive-hero .archive-lead,
.archive-hero-inner > div > .page-hero-lead{
  margin-top:8px!important;
  margin-bottom:0!important;
  line-height:1.7;
}
.strengths-page .page-hero,
.company-page .page-hero{
  padding-top:40px;
  padding-bottom:40px;
}

/* The first content block no longer begins after an oversized blank area. */
.in-page-nav + .section{
  padding-top:82px;
}
.in-page-nav + .case-detail-content{
  padding-top:58px;
}

/* The large home-page section title is no longer a special hover link;
   the explicit “すべての事例を見る” link remains the navigation cue. */
.section-heading-row .section-title-block > h2{
  color:inherit;
}

@media (max-width:780px){
  .breadcrumb-bar + main > .page-hero,
  .breadcrumb-bar + main > .archive-hero{
    min-height:0;
    height:auto;
    padding-top:36px;
    padding-bottom:34px;
  }
  .in-page-nav + .section{padding-top:66px}
  .in-page-nav + .case-detail-content{padding-top:46px}
}



/* ===== v30: strict page-intro geometry and expanded company information ===== */
:root{
  --page-intro-height:230px;
  --page-intro-padding-y:40px;
  --page-intro-line-width:8px;
  --page-intro-indent:24px;
  --page-intro-title-gap:7px;
}

/* Top-level content pages use one exact geometry from CURRENT to the page index. */
@media (min-width:781px){
  .breadcrumb-bar + main > .page-hero,
  .breadcrumb-bar + main > .archive-hero{
    display:block;
    height:var(--page-intro-height);
    min-height:var(--page-intro-height);
    padding:var(--page-intro-padding-y) 0;
    box-sizing:border-box;
  }
  .breadcrumb-bar + main > .page-hero > .container,
  .breadcrumb-bar + main > .archive-hero > .container{
    height:100%;
  }
  .page-hero-layout,
  .archive-hero-inner{
    height:100%;
    align-items:start;
  }
  .page-hero-aside,
  .archive-stat.archive-stat-public{
    align-self:center;
  }
}

/* The English kicker, Japanese title and red bar share the same strict origin. */
.page-hero .section-title-block,
.archive-hero .section-title-block{
  position:relative;
  display:grid;
  grid-template-rows:auto auto;
  align-content:start;
  gap:var(--page-intro-title-gap);
  margin:0;
  padding:0 0 0 var(--page-intro-indent);
}
.page-hero .section-title-block.section-heading-accent::before,
.archive-hero .section-title-block.section-heading-accent::before{
  top:0;
  bottom:0;
  left:0;
  width:var(--page-intro-line-width);
  height:auto;
}
.page-hero .section-title-block > .section-kicker,
.archive-hero .section-title-block > .section-kicker{
  margin:0!important;
  padding:0!important;
  line-height:1;
  text-indent:0;
  color:var(--red)!important;
}
.page-hero .section-title-block > h1,
.archive-hero .section-title-block > h1{
  margin:0!important;
  padding:0!important;
  font-size:clamp(46px,4.2vw,64px);
  line-height:1.08;
  letter-spacing:-.05em;
  text-indent:0;
}
.services-page .page-hero h1.service-page-title{
  font-size:clamp(46px,4.2vw,64px);
  white-space:nowrap;
}
.page-hero .page-hero-lead,
.archive-hero .page-hero-lead,
.archive-hero .archive-lead,
.archive-hero-inner > div > .page-hero-lead{
  margin:9px 0 0!important;
  line-height:1.55;
}
@media (min-width:1101px){
  .strengths-page #strengths-overview .page-hero-lead{white-space:nowrap;max-width:none}
}

/* Company page: concise corporate information without a visitor map. */
.company-profile-section{background:var(--bg-soft);border-top:1px solid var(--line)}
.company-section-heading{margin-bottom:30px}
.company-section-heading .section-kicker{margin:0 0 8px;color:var(--red)}
.company-section-heading h2{margin:0;font-size:clamp(36px,3.2vw,50px);line-height:1.2;letter-spacing:-.04em}
.company-section-heading > p:last-child{max-width:820px;margin:10px 0 0;color:var(--muted)}
.company-profile-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:58px;align-items:start}
.company-profile-layout .company-section-heading{margin:0}
.company-profile-layout .company-info-list{margin:0;max-width:none}
.company-business-section{background:#fff}
.company-business-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.company-business-grid article,
.company-policy-grid article{
  min-height:100%;
  padding:24px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.company-business-grid span{display:block;margin-bottom:10px;color:var(--red);font-size:31px;font-weight:900;line-height:1}
.company-business-grid h3,
.company-policy-grid h3{margin:0 0 10px;font-size:21px;line-height:1.4}
.company-business-grid p,
.company-policy-grid p{margin:0;color:var(--muted)}
.company-record-section{background:var(--dark);color:#fff}
.company-record-section .company-section-heading h2{color:#fff}
.company-record-section .company-section-heading > p:last-child{color:#d8dfe5}
.company-record-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(255,255,255,.14)}
.company-record-grid article{padding:30px 20px;text-align:center}
.company-record-grid article:not(:last-child){border-right:1px solid rgba(255,255,255,.14)}
.company-record-grid strong{display:block;color:#f1c7cb;font-size:38px;line-height:1.1;letter-spacing:-.05em}
.company-record-grid span{display:block;margin-top:10px;color:#fff;font-size:13px;font-weight:800}
.company-policy-section{background:var(--bg-soft)}
.company-policy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.company-meeting-section{background:#fff}
.company-meeting-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:58px;align-items:start}
.company-meeting-layout .company-section-heading{margin:0}
.company-meeting-note{padding:28px 30px;border-left:5px solid var(--red);background:var(--bg-soft)}
.company-meeting-note h3{margin:0 0 10px;font-size:24px;line-height:1.4}
.company-meeting-note p{margin:0;color:var(--muted)}

@media (max-width:1100px){
  .company-profile-layout,
  .company-meeting-layout{grid-template-columns:1fr;gap:24px}
  .company-business-grid{grid-template-columns:repeat(2,1fr)}
  .company-record-grid{grid-template-columns:repeat(2,1fr)}
  .company-record-grid article:nth-child(2){border-right:0}
  .company-record-grid article:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.14)}
}
@media (max-width:780px){
  :root{
    --page-intro-padding-y:36px;
    --page-intro-indent:18px;
    --page-intro-line-width:6px;
    --page-intro-title-gap:6px;
  }
  .page-hero .section-title-block > h1,
  .archive-hero .section-title-block > h1,
  .services-page .page-hero h1.service-page-title{
    font-size:40px;
    white-space:normal;
  }
  .company-business-grid,
  .company-policy-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .company-record-grid{grid-template-columns:1fr}
  .company-record-grid article{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.14)}
  .company-record-grid article:last-child{border-bottom:0}
  .company-meeting-note{padding:22px}
}

/* ===== v31: concise breadcrumb and visitor-facing case count ===== */
/* CURRENT was redundant beside the Japanese explanation. Keep only a concise current-location label. */
.breadcrumb-label{
  display:inline-flex;
  align-items:center;
  gap:0;
  margin-right:4px;
  color:var(--red);
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
}
.breadcrumb-label small{display:none!important}

/* Cases uses the same one-column page-intro origin as all other top-level pages. */
.cases-page .archive-hero-inner{display:block;position:relative}
.cases-page .archive-hero-inner > div:first-child{max-width:820px}

/* Move the useful number to the list itself, where it explains scope without distorting the page title. */
.case-list-summary{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin:0 0 18px;
  color:var(--muted);
  font-size:13px;
}
.case-list-summary strong{color:var(--ink);font-size:16px}
.case-list-summary span{font-size:12px}
@media (max-width:640px){
  .case-list-summary{align-items:flex-start;flex-direction:column;gap:2px}
}

/* ===== v32: remove provisional title illustrations and unify typography / surfaces ===== */
/* Natural Japanese tracking: no artificial tightening on page-level titles. */
.page-hero .section-title-block > h1,
.archive-hero .section-title-block > h1,
.services-page .page-hero h1.service-page-title,
.case-detail-hero h1,
.consult-copy h1{
  letter-spacing:0;
}

/* The first katakana glyph has a visible side bearing in the chosen font.
   Compensate optically without changing the shared structural origin. */
@media (min-width:781px){
  .services-page .page-hero h1.service-page-title{
    position:relative;
    left:-.04em;
  }
}

/* The first content surface below the page index uses one neutral tone.
   Subsequent sections may still alternate intentionally for hierarchy. */
.strengths-page .in-page-nav + .trouble-section,
.company-page .in-page-nav + .company-profile-section{
  background:var(--bg);
}

/* ===== v33: optical Japanese spacing and a consistent service-page intro ===== */
/* Page-level headings all use the same nominal tracking. Proportional Japanese
   alternates reduce the extra visual air around kana without page-specific hacks. */
.page-hero .section-title-block > h1,
.archive-hero .section-title-block > h1,
.services-page .page-hero h1.service-page-title,
.case-detail-hero h1,
.consult-copy h1{
  letter-spacing:0;
  font-kerning:normal;
  font-feature-settings:"palt" 1;
}

/* The home hero was deliberately tighter than the lower-page titles.
   Relax it while retaining the compact, high-impact two-line composition. */
.hero h1{
  letter-spacing:-.025em;
  font-kerning:normal;
  font-feature-settings:"palt" 1;
}

/* Major section headings: retain authority, but remove the slightly compressed feel. */
.section h2,
.integration-head h2,
.accountability-copy h2,
.contact-section h2,
.archive-contact-cta h2,
.strategic-heading,
.company-section-heading h2,
.service-detail-block h2,
.faq-group-heading h2,
.case-detail-heading h2,
.next-reading-heading h2{
  letter-spacing:-.02em!important;
  font-kerning:normal;
  font-feature-settings:"palt" 1;
}

/* Services now follows the same single-column title block used by other pages. */
.services-page .page-hero-layout{
  grid-template-columns:1fr;
}
.services-page .page-hero h1.service-page-title{
  position:static;
  left:auto;
}
.support-mode-note{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin:0 0 22px;
  padding:17px 22px;
  border:1px solid var(--line);
  border-left:5px solid var(--red);
  background:var(--surface);
  box-shadow:var(--shadow-soft);
}
.support-mode-note strong{font-size:17px;line-height:1.4}
.support-mode-note span{color:var(--muted);font-size:13px;font-weight:700;white-space:nowrap}
@media (max-width:780px){
  .support-mode-note{align-items:flex-start;flex-direction:column;gap:3px}
  .support-mode-note span{white-space:normal}
}

/* ===== v34: vertically center the fixed-height page intro content ===== */
/* Keep the established 230px intro height, while balancing the visible
   whitespace above and below the English kicker, Japanese title and lead. */
@media (min-width:781px){
  .breadcrumb-bar + main > .page-hero > .container,
  .breadcrumb-bar + main > .archive-hero > .container{
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .breadcrumb-bar + main > .page-hero > .container.page-hero-layout,
  .breadcrumb-bar + main > .archive-hero > .container.archive-hero-inner{
    align-items:stretch;
  }

  .page-hero-layout > div,
  .archive-hero-inner > div:first-child{
    width:100%;
  }
}



/* ===== v35: evidence-first navigation and natural mobile heading wraps ===== */
.keep-together{
  display:inline-block;
  white-space:nowrap;
}

@media (max-width:640px){
  .hero h1{font-size:clamp(28px,8.2vw,32px)}
  .hero h1 .hero-heading-line{white-space:nowrap}
}

@media (max-width:360px){
  .header-inner{gap:12px}
  .brand img{width:170px;max-width:55vw}
  .service-title-row{grid-template-columns:1fr;row-gap:8px}
  .service-index{font-size:36px}
  .service-card h3{font-size:21px}
  .service-title-link span{white-space:normal}
}

/* v52: keep the services page hero lead on one line on desktop. */
.services-page .page-hero-lead{max-width:none;white-space:nowrap}
@media (max-width:900px){
  .services-page .page-hero-lead{white-space:normal}
}


/* v54: risk-boundary and partner positioning copy blocks */
.partner-section{background:var(--bg-soft)}
.partner-grid article{min-height:190px}
.related-support-grid{grid-template-columns:repeat(3,1fr)}
.related-support-grid article{display:flex;flex-direction:column}
.related-support-grid .text-link{margin-top:auto;padding-top:18px}
@media (max-width:780px){.related-support-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.related-support-grid{grid-template-columns:1fr}}
.integration-value-grid{margin-top:26px;margin-bottom:22px}
@media (max-width:720px){.partner-grid article{min-height:0}}

/* v55: top CTA subnote for event/production company inquiries */
.cta-subnote{display:inline-block;margin-top:8px;font-size:14px;font-weight:700;color:rgba(255,255,255,.86)}


/* Special column */
.special-badge{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:999px;background:var(--red);color:#fff;font-size:13px;font-weight:900;letter-spacing:.08em}
.special-badge.small{padding:8px 14px;font-size:12px}
.special-column-preview{padding:56px 0;background:var(--bg-soft)}
.special-column-preview-inner{display:grid;grid-template-columns:1fr minmax(320px,460px);gap:28px;align-items:center}
.special-column-preview-copy h2{margin:10px 0 14px;font-size:clamp(32px,3vw,48px);line-height:1.25;letter-spacing:-.04em}
.special-column-preview-copy p{margin:0 0 18px;color:var(--muted);max-width:720px}
.special-column-preview-thumb{display:block;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.special-column-preview-thumb img{display:block;width:100%;height:auto}
.article-hero{padding-top:54px;padding-bottom:46px}
.article-hero-grid{display:grid;grid-template-columns:1fr minmax(360px,520px);gap:32px;align-items:center}
.article-hero-image{border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.article-hero-image img{display:block;width:100%;height:auto}
.article-meta{display:flex;gap:14px;align-items:center;margin-top:18px;color:var(--muted);font-size:14px;font-weight:700}
.article-meta span{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:#f8ebec;color:var(--red)}
.article-detail{padding-top:58px;padding-bottom:80px}
.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:28px;align-items:start}
.article-main{min-width:0}
.article-intro-box{padding:28px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.article-intro-box p{margin:0;font-size:18px;line-height:1.95;color:var(--text)}
.article-section{margin-top:24px;padding:28px;background:#fff;border:1px solid var(--line)}
.article-section p{margin:0 0 16px;color:var(--muted);line-height:1.95}
.article-section p:last-child{margin-bottom:0}
.article-scope-grid{margin-top:18px}
.article-closing{margin-top:18px!important}
.article-sidebar{display:grid;gap:18px;position:sticky;top:110px}
.article-side-card{padding:24px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.article-side-kicker{margin:0 0 8px;font-size:11px;font-weight:900;letter-spacing:.18em;color:var(--red)}
.article-side-card h2{margin:0 0 14px;font-size:24px;line-height:1.35}
.article-side-card ul{margin:0;padding-left:20px;color:var(--muted)}
.article-side-card li+li{margin-top:10px}
.article-side-links{list-style:none;padding-left:0}
.article-side-links li+li{margin-top:10px}
.column-pinned-card{display:grid;grid-template-columns:1fr minmax(300px,460px);gap:28px;align-items:center;margin-bottom:28px;padding:28px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.column-pinned-copy .column-category{margin:12px 0 4px;font-size:12px;font-weight:900;letter-spacing:.12em;color:var(--red)}
.column-pinned-copy h2{margin:0 0 14px;font-size:clamp(34px,3.4vw,48px);line-height:1.22;letter-spacing:-.04em}
.column-pinned-copy p{margin:0 0 18px;color:var(--muted)}
.column-pinned-thumb{display:block;border:1px solid var(--line);overflow:hidden;background:var(--bg-soft)}
.column-pinned-thumb img{display:block;width:100%;height:auto}
@media (max-width:980px){.special-column-preview-inner,.article-hero-grid,.column-pinned-card{grid-template-columns:1fr}.article-layout{grid-template-columns:1fr}.article-sidebar{position:static}.special-column-preview-thumb,.article-hero-image,.column-pinned-thumb{max-width:760px}.special-column-preview-copy h2,.column-pinned-copy h2{font-size:36px}}
@media (max-width:640px){.article-intro-box p,.article-section p{font-size:16px;line-height:1.85}.article-section,.article-intro-box,.article-side-card,.column-pinned-card{padding:22px}.special-column-preview{padding:42px 0}.article-hero .section-title-block>h1{font-size:38px}.column-pinned-copy h2{font-size:30px}}


/* v58 special column layout repairs */
.article-hero{padding-top:48px;padding-bottom:40px}
.article-hero-grid{grid-template-columns:minmax(0,1.15fr) minmax(300px,420px);gap:40px;align-items:center}
.article-hero-copy{min-width:0}
.article-hero-copy .section-title-block{margin-top:0}
.article-hero-copy .section-kicker{margin-bottom:12px}
.article-hero-copy .section-title-block>h1{font-size:clamp(42px,4.6vw,72px);line-height:1.08;letter-spacing:-.05em}
.article-hero-copy .page-hero-lead{max-width:760px;margin-top:18px}
.article-hero-image{justify-self:end;width:100%;max-width:420px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.article-hero-image img{display:block;width:100%;height:auto}
.article-layout{grid-template-columns:minmax(0,1fr) 290px;gap:24px}
.article-sidebar{gap:16px}
.article-side-card h2{font-size:22px}
.article-side-card ul{line-height:1.7}
.article-side-links li a{display:inline-block;line-height:1.6}
/* stronger unity for column archive cards */
.column-archive-body{padding:20px 22px 24px}
.column-archive-body .column-category{margin-bottom:8px}
.column-archive-body h2{margin-top:10px;font-size:22px;line-height:1.42}
.column-archive-body>p:last-of-type{margin-top:10px}
.column-archive-body span{padding-top:16px}
.column-archive-photo{position:relative;overflow:hidden}
.column-archive-photo::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--red);z-index:2}
@media (max-width:1080px){.article-hero-grid{grid-template-columns:minmax(0,1fr) 340px;gap:28px}.article-layout{grid-template-columns:1fr 270px}}
@media (max-width:980px){.article-hero{padding-top:40px}.article-hero-grid{grid-template-columns:1fr}.article-hero-image{justify-self:start;max-width:520px;width:min(100%,520px)}.article-layout{grid-template-columns:1fr}.article-sidebar{position:static}}
@media (max-width:640px){.article-hero-copy .section-title-block>h1{font-size:38px;line-height:1.1}.article-hero-copy .section-kicker{margin-bottom:10px}.column-archive-body{padding:18px 18px 22px}.column-archive-body h2{font-size:20px}}

/* v59: repair special-column hero against shared archive-hero fixed-height rules */
@media (min-width:781px){
  .breadcrumb-bar + main > .article-hero.archive-hero{
    display:block!important;
    height:auto!important;
    min-height:0!important;
    padding:56px 0 48px!important;
  }
  .breadcrumb-bar + main > .article-hero.archive-hero > .container.article-hero-grid{
    display:grid!important;
    height:auto!important;
    width:min(calc(100% - 48px),var(--container));
    grid-template-columns:minmax(0,1fr) minmax(300px,420px);
    gap:40px;
    align-items:center;
  }
}
.article-hero.archive-hero .section-title-block{
  max-width:none;
}
.article-hero.archive-hero .section-title-block.section-heading-accent::before{
  top:0;
  bottom:0;
}
.article-hero.archive-hero .section-title-block > h1{
  font-size:clamp(44px,4.3vw,68px)!important;
  line-height:1.12!important;
  letter-spacing:-.02em!important;
  white-space:normal!important;
}
.article-hero.archive-hero .page-hero-lead{
  max-width:820px!important;
  margin-top:16px!important;
}
.article-hero-image{
  align-self:center;
}
@media (max-width:980px){
  .breadcrumb-bar + main > .article-hero.archive-hero > .container.article-hero-grid{
    grid-template-columns:1fr!important;
  }
  .article-hero.archive-hero .section-title-block > h1{
    font-size:clamp(40px,8vw,56px)!important;
  }
}
@media (max-width:640px){
  .article-hero.archive-hero .section-title-block > h1{
    font-size:36px!important;
    line-height:1.16!important;
  }
}

/* v61: add the same thumbnail-left red overlay to homepage column cards */
.column-grid .column-thumb{position:relative;overflow:hidden}
.column-grid .column-thumb::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--red);z-index:2}


/* v62: column card unity without thumbnail red line */
.column-grid article,
.column-archive-card{
  border:1px solid #d8d0c8;
  box-shadow:0 12px 28px rgba(21,18,15,.10);
}
.column-grid article:hover,
.column-archive-card:hover{
  border-color:#c9beb5;
  box-shadow:0 16px 34px rgba(21,18,15,.13);
}
.column-thumb::before,
.column-archive-photo::before{
  content:none!important;
  display:none!important;
}
.column-thumb,
.column-archive-photo{
  border-bottom:1px solid #ded6ce;
}


/* v64: special column anchor alignment and column-list target separation */
html.special-column-page{
  --in-page-content-gap:0px;
}
html.special-column-page [id]{
  scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height));
}
html.special-column-page .article-section[id]{
  scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height) - 28px);
}
.column-archive-grid[id]{
  scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height));
}

/* v67: case detail image usage note */
.case-detail-visual{margin:0}.case-detail-visual img{display:block}.case-image-note{margin:10px 0 0;color:var(--muted);font-size:12px;line-height:1.7}@media (max-width:780px){.case-detail-hero .case-detail-visual{order:-1}}

@media (max-width:480px){
  .platform-card{align-items:flex-start;gap:14px}
  .platform-card img.platform-logo{transform:scale(.92);transform-origin:center center}
}
.form-honeypot{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}
.case-list-image-note{margin:18px 0 0;color:var(--muted);font-size:12px;line-height:1.8;text-align:right}
@media (max-width: 640px){.case-list-image-note{text-align:left}}

/* v78-v80: Home company overview heading/link alignment and compact summary grid. */
.home-page .company-info-layout{
  column-gap:72px;
  row-gap:30px;
}
.home-page .company-info-heading{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:72px;
  align-items:end;
  width:100%;
}
.home-page .company-info-more-link{
  justify-self:end;
  align-self:end;
  margin-bottom:8px;
}
.home-page .company-info .company-info-list.home-company-summary-list{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-template-rows:repeat(2,auto);
  grid-auto-flow:column;
  gap:0 48px;
  border-top:0;
}
.home-page .home-company-summary-list > div{
  grid-template-columns:120px 1fr;
  gap:20px;
  padding:18px 0;
}
@media (max-width:900px){
  .home-page .company-info-layout{
    row-gap:24px;
  }
  .home-page .company-info-heading{
    grid-template-columns:1fr;
    gap:16px;
  }
  .home-page .company-info-more-link{
    justify-self:start;
    margin-bottom:0;
  }
  .home-page .company-info .company-info-list.home-company-summary-list{
    grid-column:auto;
    grid-template-columns:1fr;
    grid-template-rows:auto;
    grid-auto-flow:row;
    gap:0;
  }
}

/* ===== v83: section English kickers unified to brand red ===== */
/* Keep the small English labels above major Japanese headings in the brand red,
   including dark-section labels previously using the light modifier. */
.section-title-block > .section-kicker,
.webinar-section .section-title-block > .section-kicker,
.accountability .section-title-block > .section-kicker.light{
  color:var(--red)!important;
}
.contact-title-centered > .section-kicker.light,
.archive-contact-inner > .section-kicker.light{
  color:#f1c6ca!important;
}

/* v85: column archive category filtering */
.column-filter-wrap{
  margin:34px 0 28px;
}
.column-filter-label{
  margin:0 0 12px;
  color:var(--ink);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}
.column-filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.column-filter{
  padding:10px 15px;
  border:1px solid var(--line-strong);
  border-radius:999px;
  background:#fff;
  color:var(--ink);
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}
.column-filter:hover,
.column-filter.is-active{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}
.column-empty{
  margin:18px 0 0;
  padding:18px 20px;
  border:1px dashed var(--line-strong);
  background:#fff;
  color:var(--muted);
  text-align:center;
}
.column-migration-note{
  margin:16px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}
.column-archive-photo-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#f8f5f2 0%,#ece5df 100%);
}
.column-archive-photo-fallback span{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(201,15,24,.22);
  border-radius:999px;
  background:#fff;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}
.column-migration-status{
  margin-top:10px!important;
  color:var(--red)!important;
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
}
@media (max-width:640px){
  .column-filter-bar{gap:8px}
  .column-filter{font-size:12px;padding:9px 12px}
}

/* v86: column-list anchor lands above filter label, not on the card grid */
.column-filter-wrap[id]{
  scroll-margin-top:calc(var(--site-header-height) + var(--in-page-nav-height) + 18px);
}

/* v87 article columns */
.article-section ul,.article-section ol{margin:0 0 16px 1.2em;color:var(--muted);line-height:1.9;padding-left:1em}
.article-section li+li{margin-top:8px}
.article-section blockquote{margin:0 0 18px;padding:18px 20px;border-left:4px solid var(--red);background:#faf7f4;color:var(--text)}
.article-section blockquote p{color:var(--text)}
.article-contact-box,.article-note-box{margin-top:18px;padding:20px;border:1px solid var(--line);background:#faf7f4}
.article-contact-box p,.article-note-box p{margin:0 0 14px!important;color:var(--text)!important;font-weight:700}
.article-contact-box .button{margin-top:2px}
.column-migration-status.is-migrated{color:var(--red);background:#fff7f7;border-color:#f2c6c9}

/* Provisional-publication rhythm: preserve the established white/cream alternation
   after unpublished sections are omitted, without changing shared color tokens. */
.home-page #platforms.platform-overview{background:var(--bg)}
.services-page #related-support.partner-section{background:var(--bg)}
.technical-director-page #director-career.boundary-section{background:#fff}

/* v88: migrated column article inline images and SEO theme chips */
.article-inline-figure{margin:20px 0 22px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.article-inline-figure img{display:block;width:100%;height:auto}
.article-inline-figure figcaption{padding:11px 14px;color:var(--muted);font-size:13px;line-height:1.7;border-top:1px solid var(--line);background:#faf7f4}
.article-inline-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:20px 0 22px}
.article-inline-gallery .article-inline-figure{margin:0;box-shadow:none}
.article-seo-box{margin-top:18px;padding:18px 20px;border:1px solid #ead5d6;background:#fff7f7}
.article-seo-box-title{margin:0 0 12px!important;color:var(--red)!important;font-size:13px!important;font-weight:900;letter-spacing:.08em}
.article-seo-box ul{display:flex;flex-wrap:wrap;gap:8px;margin:0!important;padding:0!important;list-style:none!important}
.article-seo-box li{margin:0!important;padding:6px 10px;border:1px solid rgba(201,15,24,.18);border-radius:999px;background:#fff;color:var(--text);font-size:12px;font-weight:800;line-height:1.3}
@media (max-width:640px){.article-inline-gallery{grid-template-columns:1fr}.article-seo-box{padding:16px}}

/* ===== v94-v95: home hero optical spacing and FAQ/column section separation ===== */
/* Relax the main hero heading so the Japanese title does not look overly compressed. v95 keeps the white gradient range close to the pre-v94 balance. */
.hero h1{
  letter-spacing:0;
  line-height:1.16;
}
.hero-copy{
  max-width:700px;
}
.hero-visual::after{
  background:linear-gradient(90deg,rgba(255,255,255,.99) 0 39%,rgba(255,255,255,.93) 47%,rgba(255,255,255,.70) 57%,rgba(8,11,15,.15) 68%,rgba(6,8,10,.73) 85%,rgba(4,5,8,.92) 100%);
}

/* v127: keep FAQ and column previews visually continuous without a divider line. */
.columns{
  background:#fff;
  border-top:0;
}

@media (max-width:780px){
  .hero h1{
    letter-spacing:-.01em;
  }
  .hero-copy{
    max-width:100%;
  }
  .hero-visual::after{
    background:linear-gradient(180deg,rgba(255,255,255,.97) 0 44%,rgba(255,255,255,.88) 56%,rgba(13,17,21,.68) 100%);
  }
}


/* ===== v106: compact collapsed home sections ===== */
#scope.scope-section,
#platforms.platform-overview{
  padding:70px 0;
}
#scope .section-heading-row,
#platforms .section-heading-row{
  align-items:flex-end;
  margin-bottom:12px;
  gap:24px;
}
#scope .section-title-block,
#platforms .section-title-block{
  min-width:0;
}
#scope .section-intro,
#platforms .section-intro{
  max-width:none;
  margin-top:6px!important;
  white-space:nowrap;
  font-size:15px;
  line-height:1.55;
}
#scope .section-heading-row > .text-link,
#platforms .section-heading-row > .text-link{
  align-self:flex-end;
  margin-bottom:4px;
  white-space:nowrap;
}
#scope .home-collapsible,
#platforms .home-collapsible{
  margin-top:8px;
}
#scope .home-collapsible > summary,
#platforms .home-collapsible > summary{
  min-height:36px;
  padding:8px 14px;
  font-size:13px;
  line-height:1.3;
  box-shadow:none;
}
#scope .home-collapsible > summary::after,
#platforms .home-collapsible > summary::after{
  width:18px;
  height:18px;
  font-size:12px;
}
#scope .home-collapsible-panel,
#platforms .home-collapsible-panel{
  margin-top:14px;
}
#platforms .home-collapsible .platform-note{
  margin-top:12px;
}

@media (max-width:1100px){
  #scope .section-intro,
  #platforms .section-intro{
    white-space:normal;
  }
}

@media (max-width:780px){
  #scope.scope-section,
  #platforms.platform-overview{
    padding:58px 0;
  }
  #scope .section-heading-row,
  #platforms .section-heading-row{
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
  }
  #scope .section-title-block,
  #platforms .section-title-block{
    width:100%;
    max-width:100%;
  }
  #scope .section-heading-row > .text-link,
  #platforms .section-heading-row > .text-link{
    align-self:flex-start;
    margin-bottom:0;
  }
}

/* v111: technical-director page rewrite */
.director-small-note{margin:12px 0 0!important;padding:10px 12px;border-left:4px solid var(--red);background:var(--red-soft);color:var(--ink)!important;font-size:13px;font-weight:900;line-height:1.7}
.director-principle-note{max-width:980px}
.director-principle-note p{font-size:16px}
.director-tool-grid article .text-link{display:inline-block;margin-top:14px}
.director-voice-grid article{border-top:4px solid var(--red)}
.director-voice-grid h3{font-size:22px;line-height:1.55}
.director-career-grid article p+p{margin-top:10px}
@media (max-width:640px){.director-voice-grid h3{font-size:20px}.director-small-note{font-size:12px}}


/* v112: technical-director page layout refinements */
.technical-director-page .page-hero-lead,
.technical-director-page .section-intro{max-width:none;width:100%}
.technical-director-page .section-title-block{max-width:none}
.technical-director-page #director-overview .section-title-block > h1{font-size:clamp(44px,3.8vw,60px);line-height:1.1}
.technical-director-page .director-detail .section-title-block > h2{font-size:clamp(40px,3.4vw,54px);line-height:1.18}
.director-tool-grid article{display:flex;flex-direction:column}
.director-tool-thumb{display:block;margin:-24px -24px 18px;overflow:hidden;border-bottom:1px solid var(--line);background:var(--bg-soft)}
.director-tool-thumb img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;transition:transform .25s ease,filter .25s ease}
.director-tool-thumb:hover img{transform:scale(1.025);filter:contrast(1.03)}
.director-tool-grid article .text-link{margin-top:auto;padding-top:14px}
@media (min-width:781px){
  .breadcrumb-bar + main.technical-director-page > #director-overview{height:auto;min-height:318px;padding:50px 0 46px}
  .breadcrumb-bar + main.technical-director-page > #director-overview > .container,
  .technical-director-page #director-overview .page-hero-layout{height:auto}
}
@media (max-width:780px){
  .technical-director-page #director-overview .section-title-block > h1{font-size:40px}
}
@media (max-width:640px){
  .director-tool-thumb{margin:-24px -24px 16px}
}

.network-reality-layout{display:grid;grid-template-columns:1.08fr .92fr;gap:24px;align-items:stretch;margin-top:28px}
.network-reality-layout .boundary-note{max-width:none;height:100%}
.network-example-card{padding:28px;border:1px solid var(--line);border-top:4px solid var(--red);background:#fff;box-shadow:var(--shadow-sm)}
.network-example-label{margin:0 0 12px!important;color:var(--red)!important;font-size:12px;font-weight:900;letter-spacing:.08em}
.network-example-card h3{margin:0 0 16px;font-size:23px;line-height:1.5}
.network-example-card p{color:var(--muted)}
.network-example-card p:last-child{margin-bottom:0}
@media (max-width:900px){.network-reality-layout{grid-template-columns:1fr}}

/* v114: technical-director page refinements */
.technical-director-page h1,
.technical-director-page h2,
.technical-director-page h3{text-wrap:balance}
.technical-director-page .section-intro,
.technical-director-page .director-detail > p,
.technical-director-page .special-column-preview p,
.technical-director-page .archive-contact-inner p{text-wrap:pretty}
.technical-director-page #director-overview .section-title-block > h1{font-size:clamp(40px,3.35vw,54px);line-height:1.08}
.technical-director-page .section-title-block > h2{font-size:clamp(32px,2.95vw,46px);line-height:1.16;letter-spacing:-.045em}
.technical-director-page .section-title-block > .section-intro{margin-top:16px;max-width:none;width:100%}
.technical-director-page .section-title-block > p:not(.section-kicker){max-width:none}
.technical-director-page .special-column-preview-copy h2{font-size:clamp(32px,2.75vw,44px);line-height:1.2;letter-spacing:-.04em}
.technical-director-page .archive-contact-inner h2{font-size:clamp(34px,3vw,46px);line-height:1.18;letter-spacing:-.045em}

.director-page-layout{align-items:start;gap:42px}
.director-profile-panel.large{padding:38px}
.director-identity-row{display:grid;grid-template-columns:168px 1fr;gap:24px;align-items:center;margin:20px 0 16px}
.director-profile-panel.large .director-photo{width:168px;height:168px;margin:0}
.director-identity-copy h2{margin:0 0 10px;font-size:34px;line-height:1.12}
.director-age{font-size:.72em;color:#efbec3;font-weight:800}
.director-identity-note{margin:0;color:#e4e9ee!important}
.director-profile-panel > p:not(.director-role):not(.director-title):not(.director-identity-note){margin-top:0}
.director-metrics{margin-top:22px}

.network-reality-layout-enhanced{grid-template-columns:1fr 1fr;gap:26px;align-items:start}
.network-reality-copy{display:grid;gap:18px}
.network-reality-summary{margin-top:0;padding:24px 24px 22px}
.network-focus-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.network-focus-grid article{padding:22px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft)}
.network-focus-grid h3{margin:0 0 14px;font-size:22px}
.network-focus-grid p{margin:0;color:var(--muted)}
.network-chip-list{display:flex;flex-wrap:wrap;gap:10px;margin:0;padding:0;list-style:none}
.network-chip-list li{padding:10px 14px;border:1px solid #f1cdd2;background:var(--red-soft);color:var(--red);font-size:13px;font-weight:900;letter-spacing:.04em}
.network-reality-visual{display:grid;gap:18px}
.network-visual-card{margin:0;padding:18px;border:1px solid var(--line);background:#fff;box-shadow:var(--shadow-soft)}
.network-visual-card img{display:block;width:100%;height:auto;border:1px solid var(--line);background:var(--bg-soft)}
.network-visual-card figcaption{margin-top:12px;color:var(--muted);font-size:14px;line-height:1.7}
.network-example-card{padding:24px 26px}
.network-example-card h3{font-size:24px;line-height:1.45}

.incident-list article{display:flex;flex-direction:column;gap:10px}
.incident-list h3{font-size:22px;line-height:1.35}
.incident-list p{margin:0;color:var(--muted)}
.incident-list p strong{color:var(--ink)}

@media (max-width:1100px){
  .director-identity-row{grid-template-columns:148px 1fr;gap:18px}
  .director-profile-panel.large .director-photo{width:148px;height:148px}
}
@media (max-width:900px){
  .network-reality-layout-enhanced,
  .network-focus-grid{grid-template-columns:1fr}
}
@media (max-width:780px){
  .technical-director-page #director-overview .section-title-block > h1{font-size:36px}
  .technical-director-page .section-title-block > h2{font-size:34px}
  .director-profile-panel.large{padding:28px}
  .director-identity-row{grid-template-columns:1fr;gap:16px}
  .director-profile-panel.large .director-photo{width:144px;height:144px}
}

/* v120 services page refinements */
.service-menu-heading-nowrap{white-space:nowrap;font-size:clamp(30px,2.6vw,36px)}
.partner-section .section-title-block{max-width:none}
.partner-section .section-intro{max-width:none;width:100%}
@media (max-width:640px){.service-menu-heading-nowrap{white-space:normal;font-size:28px}}

@media (max-width:640px){.director-experience-grid{grid-template-columns:1fr}.director-experience-grid span{font-size:12px}}

/* ===== v134: FAQ readability and compact desktop category index ===== */
#faq-overview .page-hero-layout{
  grid-template-columns:minmax(0,1fr);
}
#faq-overview .page-hero-layout > div{
  min-width:0;
}
#faq-overview .page-hero-lead{
  width:100%;
  max-width:none;
}
@media (min-width:1101px){
  .faq-category-index h2{
    white-space:nowrap;
  }
  .faq-category-links{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }
  .faq-category-links a{
    display:flex;
    width:100%;
    padding:8px 12px;
    justify-content:flex-start;
  }
}


/* ===== v148: Japanese line wrapping on the home page ===== */
/* Keep Japanese phrases and punctuation together where the browser supports
   phrase-aware wrapping, while retaining normal fallback behavior. */
.home-page .section h2,
.home-page .section h3{
  line-break:strict;
  word-break:auto-phrase;
  text-wrap:balance;
}
.home-page .section p{
  line-break:strict;
  word-break:auto-phrase;
  text-wrap:pretty;
}

/* ===== completion page: opt out of the fixed archive-intro layout ===== */
@media (min-width:781px){
  .thanks-page .breadcrumb-bar + main > .thanks-hero{
    height:auto;
    min-height:0;
    padding:72px 0 64px;
  }
  .thanks-page .breadcrumb-bar + main > .thanks-hero > .thanks-hero-inner{
    display:block;
    height:auto;
    align-items:initial;
  }
  .thanks-page .thanks-hero .button{
    width:fit-content;
    min-width:280px;
  }
}
@media (max-width:780px){
  .thanks-page .thanks-hero .button{
    width:100%;
    min-width:0;
  }
}
