:root {
  --ink: #1d1920;
  --muted: #68616c;
  --purple: #583879;
  --purple-dark: #38234f;
  --purple-soft: #f1ecf6;
  --green: #13b94d;
  --line: #e7e2e9;
  --paper: #ffffff;
  --wash: #f8f7f9;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --shadow: 0 18px 55px rgba(46, 27, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.85; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--purple); border-radius: 4px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(88,56,121,.12); backdrop-filter: blur(14px); }
.header-inner { width: min(1300px, calc(100% - 48px)); height: 88px; margin: auto; display: grid; grid-template-columns: 250px 1fr; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 76px; height: auto; }
.brand span { padding-left: 14px; border-left: 1px solid var(--line); line-height: 1.2; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.06rem; letter-spacing: .04em; white-space: nowrap; }
.brand small { display: block; margin-top: 4px; color: var(--purple); font-size: .68rem; font-weight: 700; letter-spacing: .09em; }
.global-nav { justify-self: end; display: flex; align-items: center; gap: 19px; font-size: .84rem; font-weight: 600; }
.global-nav a { position: relative; padding: 10px 0; }
.global-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: .2s ease; }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { transform: scaleX(1); }
.global-nav .nav-cta { padding: 11px 19px; color: #fff; background: var(--purple); border-radius: 999px; transition: .2s ease; }
.global-nav .nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }
.language-links { display: flex; gap: 9px; padding-left: 20px; border-left: 1px solid var(--line); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.language-links a:hover { color: var(--purple); }
.menu-button { display: none; border: 0; background: transparent; }

.hero { min-height: 720px; position: relative; overflow: hidden; background: linear-gradient(125deg,#fff 0 56%,#f2ecf7 56%); }
.hero::after { content: ""; position: absolute; right: -170px; bottom: -230px; width: 520px; height: 520px; border: 80px solid rgba(19,185,77,.11); border-radius: 50%; }
.hero-inner { width: min(1240px, calc(100% - 48px)); min-height: 720px; margin: auto; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 64px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 16px; color: var(--purple); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.2vw, 5.4rem); line-height: 1.22; letter-spacing: -.045em; font-weight: 600; }
.hero h1 em { display: block; color: var(--purple); font-style: normal; }
.hero-lead { max-width: 560px; margin: 28px 0 0; color: #544d58; font-size: 1.07rem; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 16px; padding: 12px 22px; border: 1px solid var(--purple); border-radius: 4px; color: var(--purple); font-weight: 600; transition: .2s ease; }
.button::after { content: "↗"; font-size: .92em; }
.button.primary { color: #fff; background: var(--purple); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(57,35,80,.16); }
.hero-visual { position: relative; height: 570px; }
.hero-visual .main-photo { position: absolute; top: 0; right: 0; width: 82%; height: 88%; object-fit: cover; border-radius: 2px 58px 2px 2px; box-shadow: var(--shadow); }
.hero-visual .small-photo { position: absolute; bottom: 0; left: 0; width: 43%; aspect-ratio: 1.2; object-fit: cover; border: 10px solid #fff; box-shadow: var(--shadow); }
.hero-note { position: absolute; right: 3%; bottom: 4%; width: 210px; padding: 22px 24px; color: #fff; background: var(--purple); }
.hero-note strong { display: block; font-family: var(--serif); font-size: 1.6rem; line-height: 1.35; }
.hero-note span { display: block; margin-top: 8px; font-size: .74rem; opacity: .78; }

.section { padding: 112px 0; }
.section.soft { background: var(--wash); }
.section.purple { color: #fff; background: var(--purple-dark); }
.container { width: min(1120px, calc(100% - 48px)); margin: auto; }
.section-heading { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; margin-bottom: 58px; }
.section-heading .kicker { margin: 3px 0 0; color: var(--purple); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section.purple .kicker { color: #a8ebb9; }
.section-heading h2 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1.45; letter-spacing: -.025em; }
.section-heading h2 span { color: var(--purple); }
.section.purple .section-heading h2 span { color: #7ce397; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid .lead { margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.9; }
.intro-grid .copy { margin: 0; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 30px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--purple); font-family: var(--serif); font-size: 2.25rem; line-height: 1.25; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .82rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 300px; padding: 34px; background: #fff; border: 1px solid var(--line); transition: .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card .number { display: inline-grid; width: 42px; height: 42px; place-items: center; color: var(--purple); background: var(--purple-soft); border-radius: 50%; font-size: .78rem; font-weight: 700; }
.feature-card h3 { margin: 50px 0 14px; font-family: var(--serif); font-size: 1.45rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.business-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.business-card { min-height: 380px; padding: 44px; position: relative; overflow: hidden; background: #fff; color: var(--ink); }
.business-card:first-child { background: #ebe3f2; }
.business-card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .13em; color: var(--purple); }
.business-card h3 { max-width: 400px; margin: 56px 0 16px; font-family: var(--serif); font-size: 1.75rem; line-height: 1.5; }
.business-card p { max-width: 450px; margin: 0; color: var(--muted); }
.business-card .arrow-link { position: absolute; right: 34px; bottom: 30px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(88,56,121,.3); border-radius: 50%; }
.global-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.global-photo { min-height: 520px; background: url('/assets/hero-3.jpg') center/cover; border-radius: 2px 48px 2px 2px; }
.global-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.5rem); line-height: 1.45; }
.global-copy p { margin: 24px 0 0; color: var(--muted); }
.country-list { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.country-list li { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.country-list strong { color: var(--purple); }
.cta-band { margin-top: 84px; padding: 58px 64px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #fff; background: var(--purple); }
.cta-band h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem,3vw,2.5rem); }
.cta-band p { margin: 10px 0 0; opacity: .78; }
.cta-band .button { color: #fff; border-color: rgba(255,255,255,.7); flex: 0 0 auto; }

.page-hero { padding: 88px 0 72px; background: linear-gradient(120deg,#f5f1f8 0 72%,#e8f6ed 72%); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a:hover { color: var(--purple); }
.page-hero h1 { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(2.4rem,5vw,4.4rem); line-height: 1.3; }
.page-hero p { max-width: 700px; margin: 22px 0 0; color: var(--muted); }
.page-body { padding: 84px 0 116px; }
.content-grid { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 64px; }
.side-nav { position: sticky; top: 122px; align-self: start; display: grid; gap: 5px; }
.side-nav a { padding: 10px 14px; border-left: 2px solid var(--line); color: var(--muted); font-size: .88rem; }
.side-nav a:hover, .side-nav a.active { color: var(--purple); border-color: var(--green); background: #faf8fc; }
.prose { min-width: 0; }
.prose h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(1.75rem,3vw,2.7rem); line-height: 1.5; }
.prose h3 { margin: 58px 0 18px; font-family: var(--serif); font-size: 1.45rem; }
.prose p { margin: 0 0 22px; color: #4f4853; }
.prose ul, .prose ol { padding-left: 1.4em; color: #4f4853; }
.prose li { margin-bottom: 10px; }
.quote { margin: 34px 0; padding: 28px 34px; border-left: 4px solid var(--green); background: var(--wash); font-family: var(--serif); font-size: 1.18rem; }
.profile { display: grid; grid-template-columns: 240px 1fr; gap: 42px; align-items: start; margin: 24px 0 50px; }
.profile img { width: 100%; aspect-ratio: .9; object-fit: cover; object-position: top; background: var(--wash); }
.profile h2, .profile h3 { margin-top: 0; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table th { width: 190px; color: var(--purple); font-size: .86rem; }
.operator-line { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px; }
.operator-line a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.plain-card { padding: 28px; border: 1px solid var(--line); background: #fff; }
.plain-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.plain-card p { margin: 0; font-size: .9rem; }
.school-list { display: grid; gap: 14px; }
.school { padding: 24px 28px; border: 1px solid var(--line); border-left: 4px solid var(--purple); }
.school h3 { margin: 0 0 8px; font-size: 1.08rem; }
.school p { margin: 2px 0; font-size: .88rem; }
.cert-intro { max-width: 760px; margin-bottom: 48px; }
.cert-lead { font-family: var(--serif); font-size: 1.25rem; color: var(--ink) !important; }
.cert-count { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 12px; padding: 10px 18px; color: var(--purple); background: var(--purple-soft); border-radius: 999px; font-weight: 700; }
.cert-count strong { font-family: var(--serif); font-size: 1.45rem; }
.cert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.cert-card { position: relative; display: flex; min-height: 450px; overflow: hidden; border: 1px solid var(--line); background: #2b2030; box-shadow: 0 12px 34px rgba(46,27,61,.1); transition: transform .25s ease, box-shadow .25s ease; }
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(46,27,61,.18); }
.cert-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cert-card:hover img { transform: scale(1.035); }
.cert-card::after { content: ""; position: absolute; inset: 32% 0 0; background: linear-gradient(to bottom, transparent, rgba(25,15,29,.94)); }
.cert-card-content { position: relative; z-index: 1; width: 100%; margin-top: auto; padding: 34px; color: #fff; text-align: center; }
.cert-type { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(38,24,43,.55); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 700; letter-spacing: .08em; white-space: nowrap; }
.cert-type::before { content: "◆"; color: #efcc72; font-size: .66rem; }
.cert-card .cert-school-name { max-width: none; margin: 18px auto 9px; color: #fff; font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem); line-height: 1.55; letter-spacing: -.04em; white-space: nowrap; }
.cert-card p { margin: 0; color: rgba(255,255,255,.78); font-size: .83rem; }
.cert-card .arrow-link { display: inline-block; margin-top: 17px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.62); font-size: .78rem; font-weight: 700; }
.cert-section-title { margin: 72px 0 28px !important; padding-top: 30px; border-top: 1px solid var(--line); text-align: center; }
.contact-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 34px; }
.contact-switch a { padding: 20px; border: 1px solid var(--line); font-weight: 600; text-align: center; }
.contact-switch a.active { color: #fff; background: var(--purple); border-color: var(--purple); }
.contact-frame { width: 100%; min-height: 760px; border: 0; background: var(--wash); }
.notice { padding: 26px 28px; background: #f2ecf6; color: #473458; }
.placeholder { padding: 70px 30px; border: 1px dashed #c9becf; background: var(--wash); text-align: center; }
.placeholder strong { display: block; font-family: var(--serif); font-size: 1.4rem; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.site-footer { color: #d8d0de; background: #201725; }
.footer-main { width: min(1120px, calc(100% - 48px)); margin: auto; padding: 76px 0 64px; display: grid; grid-template-columns: 1fr 2fr; gap: 90px; }
.footer-brand img { width: 130px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; margin: 24px 0 0; color: #b8adbe; font-size: .9rem; }
.footer-brand .footer-method { margin-top: 26px; color: #fff; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.footer-method span { color: #8ee3a4; font-size: .83rem; font-family: var(--sans); font-weight: 700; letter-spacing: .12em; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links h2 { margin: 0 0 18px; color: #fff; font-size: .83rem; }
.footer-links a { display: block; margin: 8px 0; color: #b8adbe; font-size: .8rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { width: min(1120px, calc(100% - 48px)); margin: auto; padding: 21px 0; display: flex; justify-content: space-between; border-top: 1px solid #423747; font-size: .7rem; letter-spacing: .05em; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; height: 76px; }
  .brand img { width: 68px; }
  .brand strong { font-size: .94rem; }
  .brand small { font-size: .62rem; }
  .language-links { display: none; }
  .menu-button { display: grid; width: 52px; height: 52px; place-content: center; gap: 5px; cursor: pointer; }
  .menu-button span { width: 24px; height: 2px; background: var(--ink); }
  .menu-button b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .global-nav { display: none; position: fixed; top: 76px; right: 0; left: 0; height: calc(100vh - 76px); padding: 42px 28px; background: #fff; flex-direction: column; align-items: stretch; gap: 8px; }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 16px 6px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .global-nav .nav-cta { margin-top: 12px; border: 0; border-radius: 3px; text-align: center; }
  .hero, .hero-inner { min-height: auto; }
  .hero { padding: 66px 0 76px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 490px; }
  .section { padding: 86px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .business-grid, .global-layout { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .side-nav { position: static; grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  .header-inner, .hero-inner, .container, .footer-main, .footer-bottom { width: min(100% - 32px, 1120px); }
  .hero { background: linear-gradient(160deg,#fff 0 64%,#f2ecf7 64%); }
  .hero h1 { font-size: 2.65rem; }
  .hero-lead { font-size: .96rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 380px; }
  .hero-visual .main-photo { width: 92%; height: 84%; border-radius: 2px 34px 2px 2px; }
  .hero-visual .small-photo { width: 49%; border-width: 6px; }
  .hero-note { width: 175px; padding: 16px 18px; }
  .hero-note strong { font-size: 1.2rem; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-grid .lead { font-size: 1.16rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid, .cards { grid-template-columns: 1fr; }
  .business-card { min-height: 330px; padding: 30px; }
  .global-photo { min-height: 350px; }
  .cta-band { margin-top: 58px; padding: 38px 28px; flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 62px 0 52px; }
  .page-body { padding: 60px 0 84px; }
  .side-nav { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile img { max-width: 280px; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 4px; border-bottom: 0; }
  .info-table td { padding-top: 4px; }
  .contact-switch { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-card { min-height: 390px; }
  .cert-card-content { padding: 28px 8px; }
  .cert-card .cert-school-name { font-size: clamp(.9rem, 3.9vw, 1.05rem); letter-spacing: -.06em; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; gap: 8px; }
}

/* 2026 complete renewal */
.header-inner { grid-template-columns: 235px 1fr; }
.global-nav { gap: 14px; }
.prose { max-width: 900px; margin: 0 auto; }
.prose.prose-wide { max-width: none; }
.content-section { margin: 0 0 104px; }
.content-section:last-child { margin-bottom: 0; }
.soft-panel { padding: 58px; background: linear-gradient(135deg,#f6f2f9,#f2f8f4); }
.source-note { margin-top: 26px !important; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted) !important; font-size: .78rem; }
.source-note a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.editorial-intro, .fujimori-lead { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; margin-bottom: 104px; }
.editorial-intro img { width: 100%; min-height: 430px; object-fit: cover; border-radius: 2px 48px 2px 2px; box-shadow: var(--shadow); }
.fujimori-lead { grid-template-columns: 266px 1fr; }
.fujimori-lead img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.editorial-intro h2, .fujimori-lead h2, .implementation-hero h2 { margin: 0 0 24px; font-size: clamp(2rem,3.6vw,3.6rem); line-height: 1.4; }
.mimamoru-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; margin-top: 42px; }
.mimamoru-flow > div { min-height: 180px; padding: 28px 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); background: #fff; text-align: center; }
.mimamoru-flow span { color: var(--green); font-weight: 700; }
.mimamoru-flow strong { margin: 10px 0 6px; color: var(--purple); font-family: var(--serif); font-size: 1.4rem; }
.mimamoru-flow small { color: var(--muted); line-height: 1.6; }
.mimamoru-flow i { color: var(--purple); font-style: normal; font-size: 1.5rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 34px; }
.benefit-grid article { min-height: 230px; padding: 28px; border: 1px solid rgba(88,56,121,.12); background: rgba(255,255,255,.84); }
.benefit-grid article:nth-child(4), .benefit-grid article:nth-child(5) { grid-column: span 1; }
.benefit-grid span { color: var(--green); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.benefit-grid h3 { margin: 36px 0 10px; font-size: 1.25rem; }
.benefit-grid p { margin: 0; font-size: .9rem; }
.benefit-grid.compact article { min-height: 170px; }
.benefit-grid.compact h3 { margin: 0 0 10px; }
.case-image { padding: 18px; background: var(--purple-soft); transform: rotate(-1.5deg); }
.case-image img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.check-list { margin: 26px 0; padding: 0 !important; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; position: absolute; left: 4px; color: var(--green); font-weight: 800; }
.biography { max-width: 900px; margin-right: auto; margin-left: auto; }
.biography p { font-size: 1.02rem; line-height: 2; }
.timeline { border-top: 1px solid var(--line); }
.timeline > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.timeline time { color: var(--purple); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.timeline p { margin: 0; }
.book-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 38px; }
.book-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: .25s ease; }
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.book-cover { height: 310px; padding: 24px; display: grid; place-items: center; background: var(--wash); }
.book-cover img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 10px 26px rgba(30,20,35,.16); }
.book-copy { flex: 1; padding: 24px; display: flex; flex-direction: column; }
.book-copy h3 { margin: 0 0 10px; font-size: 1rem; line-height: 1.55; }
.book-copy p { margin: 0 0 20px; font-size: .82rem; }
.text-link, .book-unavailable { margin-top: auto; color: var(--purple); font-size: .78rem; font-weight: 700; }
.book-unavailable { color: var(--muted); }
.implementation-hero { display: grid; grid-template-columns: 1fr 300px; gap: 70px; align-items: center; margin-bottom: 104px; padding: 58px 64px; background: linear-gradient(135deg,#f5f0f8,#edf7f0); }
.program-badge { aspect-ratio: 1; display: grid; place-content: center; padding: 28px; color: #fff; background: var(--purple); border-radius: 50%; text-align: center; box-shadow: var(--shadow); }
.program-badge strong { display: block; font-family: var(--serif); }
.program-badge b { display: block; font-size: 5rem; line-height: 1; }
.program-badge span { display: block; margin-top: 14px; font-size: .7rem; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 40px; }
.process-grid article { min-height: 285px; padding: 28px 22px; border-top: 4px solid var(--green); background: var(--wash); }
.process-grid span { color: var(--purple); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.process-grid h3 { margin: 32px 0 14px; font-size: 1.1rem; }
.process-grid p { margin: 0; font-size: .82rem; }
.evidence-panel { display: grid; grid-template-columns: 1fr 360px; gap: 70px; padding: 64px; color: #fff; background: var(--purple-dark); }
.evidence-panel h2, .evidence-panel p, .evidence-panel li { color: #fff; }
.evidence-panel .eyebrow { color: #8ee3a4; }
.evidence-panel .check-list li { border-color: rgba(255,255,255,.16); }
.metric-stack { display: grid; gap: 12px; }
.metric-stack article { padding: 22px; display: grid; grid-template-columns: 115px 1fr; align-items: center; border: 1px solid rgba(255,255,255,.2); }
.metric-stack strong { color: #8ee3a4; font-family: var(--serif); font-size: 2.4rem; }
.metric-stack span { font-size: .78rem; line-height: 1.5; }
.survey-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 36px 0; }
.survey-metrics article { padding: 30px; color: #fff; background: var(--purple); text-align: center; }
.survey-metrics strong { display: block; color: #9aeead; font-family: var(--serif); font-size: 3rem; }
.survey-metrics span { font-size: .78rem; line-height: 1.6; }
.interview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.interview-grid article { padding: 28px; border: 1px solid var(--line); }
.interview-grid h3 { margin: 0 0 16px; font-size: 1.12rem; }
.interview-grid ul { padding-left: 1.2em; font-size: .85rem; }
blockquote { margin: 0; color: var(--purple); font-family: var(--serif); font-size: 1.05rem; line-height: 1.9; }
blockquote cite { display: block; margin-top: 18px; color: var(--muted); font-family: var(--sans); font-size: .76rem; font-style: normal; }
.before-after { display: grid; grid-template-columns: 1fr 70px 1fr; gap: 20px; align-items: stretch; margin-top: 36px; }
.before-after article { padding: 36px; border: 1px solid var(--line); background: var(--wash); }
.before-after article:last-child { background: var(--purple-soft); }
.before-after span { color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .13em; }
.before-after h3 { margin: 20px 0 16px; }
.before-after ul { padding-left: 1.2em; font-size: .88rem; }
.change-arrow { display: grid; place-items: center; color: var(--purple); font-size: 2rem; }
.inquiry-section { padding: 64px; background: var(--wash); }
.privacy-consent { margin-top: 38px; padding: 28px; border: 1px solid #cfc2d8; background: #fff; }
.privacy-consent h3 { margin: 0 0 12px; }
.privacy-consent a { color: var(--purple); text-decoration: underline; }
.privacy-consent fieldset { margin: 24px 0 0; padding: 0; display: flex; gap: 28px; border: 0; }
.privacy-consent legend { margin-bottom: 12px; font-weight: 700; }
.privacy-consent label { padding: 12px 18px; border: 1px solid var(--line); cursor: pointer; }
.gated-form { position: relative; margin-top: 22px; min-height: 220px; border: 1px solid var(--line); background: #fff; }
.gated-form .contact-frame { display: none; }
.gated-form.is-open .contact-frame { display: block; }
.gated-form.is-open .form-lock-message { display: none; }
.form-lock-message { min-height: 220px; display: grid; place-content: center; gap: 8px; padding: 40px; color: var(--muted); text-align: center; }
.form-lock-message strong { color: var(--purple); font-family: var(--serif); font-size: 1.4rem; }
.team-section > .role-heading { margin-top: 56px; padding: 14px 0; border-bottom: 2px solid var(--purple); }
.people-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.people-grid.single { grid-template-columns: 1fr; }
.person-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; padding: 28px; border: 1px solid var(--line); }
.people-grid.single .person-card { max-width: 780px; }
.person-card img, .person-placeholder { width: 100%; aspect-ratio: .85; object-fit: cover; object-position: top; background: var(--wash); }
.person-card span { color: var(--purple); font-size: .7rem; font-weight: 700; letter-spacing: .09em; }
.person-card h3 { margin: 8px 0 14px; }
.person-nickname { display: inline-block; margin-left: .5em; color: var(--purple); font-family: var(--sans); font-size: .48em; font-weight: 600; letter-spacing: .06em; vertical-align: middle; }
.person-card p { margin: 0; font-size: .86rem; }
.mizuno-book-feature { position: relative; display: grid; grid-template-columns: minmax(150px,200px) 1fr; gap: clamp(22px,4vw,48px); align-items: center; box-sizing: border-box; width: 70%; margin: 28px auto 64px; padding: clamp(24px,4vw,42px); overflow: hidden; color: #fff; background: linear-gradient(128deg,#2f1b46 0%,#5f367d 72%,#734a91 100%); }
.mizuno-book-feature::after { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; bottom: -210px; border-radius: 50%; background: rgba(134,239,172,.16); }
.mizuno-book-cover { position: relative; z-index: 1; padding: 14px; background: rgba(255,255,255,.96); box-shadow: 0 20px 50px rgba(19,7,31,.34); transform: rotate(-1.5deg); }
.mizuno-book-cover img { display: block; width: 100%; height: auto; }
.mizuno-book-copy { position: relative; z-index: 1; max-width: 720px; }
.mizuno-book-copy .eyebrow { color: #9ff5ae; }
.mizuno-book-copy h3 { margin: 8px 0 18px; color: #fff; font-family: var(--serif); font-size: clamp(1.45rem,2.25vw,2.3rem); line-height: 1.35; }
.mizuno-book-copy > p:not(.eyebrow) { color: rgba(255,255,255,.86); }
.mizuno-book-copy .book-meta { margin: 18px 0 26px; font-size: .82rem; letter-spacing: .04em; }
.mizuno-book-copy .button.primary { border-color: #fff; background: #fff; color: var(--purple); }
.mizuno-book-copy .button { padding: 13px 20px; font-size: .86rem; }
.mizuno-book-copy .button.primary:hover { border-color: #9ff5ae; background: #9ff5ae; }
.person-placeholder { display: grid; place-content: center; text-align: center; }
.person-placeholder strong { color: var(--purple); font-family: var(--serif); font-size: 3rem; }
.person-placeholder span { display: block; margin-top: 8px; font-size: .55rem; }
.cert-standard { margin: 0 0 50px; padding: 42px; color: #fff; background: linear-gradient(135deg,var(--purple),var(--purple-dark)); }
.cert-standard > span { color: #8ee3a4; font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.cert-standard p { margin: 18px 0 28px; color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.cert-standard div { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cert-standard b { padding: 14px; border: 1px solid rgba(255,255,255,.25); text-align: center; }
.related-lead { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.related-lead h2 { margin-bottom: 22px; }
.related-lead p:last-child { max-width: 720px; margin-right: auto; margin-left: auto; }
.service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
.service-card { position: relative; min-height: 610px; overflow: hidden; padding: 46px 42px 40px; display: flex; flex-direction: column; color: #fff; box-shadow: 0 20px 50px rgba(46,27,61,.16); }
.service-card::before { content: ""; position: absolute; width: 290px; height: 290px; right: -120px; top: -120px; border: 58px solid rgba(255,255,255,.08); border-radius: 50%; }
.service-recruiting { background: linear-gradient(145deg,#65418a 0%,#38234f 100%); }
.service-learning { background: linear-gradient(145deg,#167e4a 0%,#174633 100%); }
.service-number { position: relative; color: rgba(255,255,255,.48); font-family: var(--serif); font-size: 4.4rem; line-height: 1; }
.service-label { position: relative; margin: 22px 0 12px !important; color: #a8ebb9 !important; font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.service-card h3 { position: relative; margin: 0 0 20px; color: #fff; font-size: clamp(1.55rem,2.4vw,2.2rem); line-height: 1.5; }
.service-card > p:not(.service-label) { position: relative; color: rgba(255,255,255,.84); line-height: 1.9; }
.service-card ul { position: relative; margin: 10px 0 34px; padding: 0 !important; list-style: none; color: #fff; }
.service-card li { position: relative; margin: 0; padding: 9px 0 9px 26px; border-bottom: 1px solid rgba(255,255,255,.16); }
.service-card li::before { content: "✓"; position: absolute; top: 9px; left: 0; color: #8ee3a4; font-weight: 800; }
.service-link { position: relative; margin-top: auto; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.58); color: #fff; font-weight: 700; transition: .2s ease; }
.service-link:hover { color: var(--purple-dark); background: #fff; transform: translateY(-2px); }

@media (max-width: 1100px) {
  .mizuno-book-feature { width: 88%; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .book-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .editorial-intro, .fujimori-lead, .implementation-hero, .evidence-panel { grid-template-columns: 1fr; }
  .fujimori-lead img { max-width: 266px; }
  .program-badge { width: 260px; justify-self: center; }
  .mimamoru-flow { grid-template-columns: repeat(4,1fr); }
  .mimamoru-flow i { display: none; }
  .interview-grid { grid-template-columns: 1fr; }
  .language-links.mobile-lang { display: flex; border: 0; padding: 16px 6px; }
}
@media (max-width: 680px) {
  .soft-panel, .implementation-hero, .evidence-panel, .inquiry-section { padding: 34px 24px; }
  .editorial-intro, .fujimori-lead { gap: 32px; margin-bottom: 72px; }
  .editorial-intro img { min-height: 300px; }
  .mimamoru-flow, .benefit-grid, .book-grid, .process-grid, .survey-metrics, .people-grid, .cert-standard div, .service-grid { grid-template-columns: 1fr; }
  .mimamoru-flow > div { min-height: 130px; }
  .book-cover { height: 280px; }
  .before-after { grid-template-columns: 1fr; }
  .change-arrow { transform: rotate(90deg); }
  .person-card { grid-template-columns: 1fr; }
  .person-card img, .person-placeholder { max-width: 220px; }
  .mizuno-book-feature { width: 100%; grid-template-columns: 1fr; }
  .mizuno-book-cover { width: min(72%,240px); margin: 0 auto; }
  .privacy-consent fieldset { flex-direction: column; gap: 10px; }
  .timeline > div { grid-template-columns: 90px 1fr; }
  .cert-standard { padding: 30px 22px; }
  .service-card { min-height: 560px; padding: 38px 26px 30px; }
}
