:root {
  --ink: #17332f;
  --ink-soft: #38534f;
  --green: #087c70;
  --green-dark: #075f57;
  --mint: #d9eee5;
  --mint-light: #f3faf7;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --sky: #e2f1f8;
  --blue: #3f9fc5;
  --coral: #ef786e;
  /* フォーカス枠用。--coral は明るい背景でコントラスト比が 3.0 に届かず、
     キーボード操作時に現在位置を見失うため、色相と彩度はそのままに明度だけ落とした。 */
  --focus: #e83f30;
  --yellow: #f2c654;
  --line: rgba(23, 51, 47, 0.16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  line-break: strict;
  line-height: 1.75;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
/* 画面には出さず、スクリーンリーダーと検索エンジンにだけ伝える見出し用。 */
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { overflow-wrap: anywhere; text-wrap: balance; word-break: normal; }
p, li, dd, address { overflow-wrap: anywhere; text-wrap: pretty; word-break: normal; }
.section-shell > *, .footer-main > *, .footer-navigation > *, .footer-contact-heading > *, .company-grid > *, .service-intro-grid > * { min-width: 0; }
.nowrap { white-space: nowrap; }
section { scroll-margin-top: 80px; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 18px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }
.mobile-only { display: none; }
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  width: min(1240px, calc(100vw - 36px));
  height: 72px;
  padding: 0 12px 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled, .site-header.menu-open {
  border-color: rgba(23, 51, 47, .09);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 40px rgba(23, 51, 47, .08);
  backdrop-filter: blur(18px);
}
.brand img { width: 154px; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(25px, 3.2vw, 46px); }
.desktop-nav a { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 0 7px; line-height: 1; }
.desktop-nav a strong { font-size: 12px; font-weight: 700; letter-spacing: .07em; }
.desktop-nav a small { color: #5f726e; font-family: "Noto Sans JP"; font-size: 11px; font-weight: 500; letter-spacing: .05em; transition: color .2s; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--green); content: ""; transform: scaleX(0); transform-origin: center; transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a.is-current { color: var(--green); }
.desktop-nav a:hover small, .desktop-nav a.is-current small { color: var(--green); }
.desktop-nav a.is-current::after { transform: scaleX(1); }
/* 日英を並べ、塗りつぶした側が今いる言語。片方だけを見せると「その言語が選択中」と誤読される。 */
.language-switch { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 2px; height: 46px; margin-right: 7px; padding: 4px; overflow: hidden; border: 2px solid var(--green); border-radius: 999px; background: white; box-shadow: 0 7px 18px rgba(7,95,87,.14); white-space: nowrap; }
.language-switch > * { display: grid; flex: 0 0 auto; min-width: 44px; height: 34px; padding: 0 10px; border-radius: 999px; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: .06em; line-height: 1; }
.language-switch .language-current { color: white; background: var(--green); }
.language-switch a { color: var(--green-dark); transition: color .2s, background .2s; }
.language-switch a:hover { color: var(--green-dark); background: var(--mint); }
.header-cta { display: flex; align-items: center; gap: 20px; padding: 13px 20px; border-radius: 999px; color: white; background: var(--ink); font-size: 13px; font-weight: 600; transition: transform .2s, background .2s; }
.header-cta:hover { background: var(--green); transform: translateY(-2px); }
.header-cta span { display: grid; width: 28px; height: 28px; border-radius: 50%; place-items: center; color: var(--ink); background: var(--mint); }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr);
  align-items: center;
  min-height: 780px;
  padding: 135px max(40px, calc((100vw - 1180px) / 2)) 85px;
  overflow: hidden;
  background: #fff;
}
.hero::before { position: absolute; width: 48vw; height: 680px; max-width: 700px; right: -4%; top: 58px; border-radius: 46% 0 0 46% / 50% 0 0 50%; background: linear-gradient(145deg, #e9f6f0, #d9eee5); content: ""; }
.hero-noise { position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(23,51,47,.11) .6px, transparent .6px); background-size: 8px 8px; mask-image: linear-gradient(to right, black, transparent 60%); }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 680px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.eyebrow > span { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(239,120,110,.17); }
.hero h1 { margin-bottom: 38px; font-family: "Noto Sans JP", sans-serif; font-size: clamp(56px, 5.2vw, 78px); font-weight: 600; line-height: 1.14; letter-spacing: -.05em; }
.hero h1 em { position: relative; display: inline-block; color: var(--green); font-style: normal; white-space: nowrap; }
.hero h1 em::after { position: absolute; left: 2%; right: 2%; bottom: -12px; height: 8px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='12' viewBox='0 0 500 12'%3E%3Cpath d='M3 8C125 2 357 3 497 6' fill='none' stroke='%23ef786e' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; content: ""; }
.hero-lead { max-width: 610px; margin-bottom: 38px; color: var(--ink-soft); font-size: 16px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 60px; padding: 0 28px; border: 1px solid var(--ink); border-radius: 999px; font-size: 14px; font-weight: 700; transition: color .2s, background .2s, transform .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--green); }
.button-ghost { background: rgba(255,255,255,.25); }
.button-ghost:hover { background: white; }

.hero-visual { position: relative; z-index: 2; top: -30px; justify-self: end; width: min(100%, 620px); height: 560px; isolation: isolate; }
.hero-visual::before { position: absolute; inset: 6%; border-radius: 48% 52% 44% 56% / 52% 43% 57% 48%; background: radial-gradient(circle at 50% 48%, rgba(255,255,255,.88) 0 17%, rgba(217,238,229,.7) 35%, rgba(217,238,229,.25) 59%, transparent 73%); filter: blur(2px); content: ""; }
.hero-visual::after { position: absolute; z-index: -1; width: 52%; height: 42%; right: 5%; bottom: 8%; border-radius: 50%; background: rgba(63,159,197,.09); filter: blur(48px); content: ""; }
.voice-network { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; transform: translateX(-1.5%); }
.network-lines { opacity: .62; }
.network-lines path { stroke-dasharray: 2 9; animation: data-flow 9s linear infinite; }
.network-lines path:nth-child(even) { animation-direction: reverse; animation-duration: 11s; }
.network-links { fill: none; stroke-width: 1; stroke-dasharray: 1 7; }
.network-nodes circle { transform-box: fill-box; transform-origin: center; animation: node-pulse 3.8s ease-in-out infinite; }
.network-nodes circle:nth-child(3n + 2) { animation-delay: -1.3s; }
.network-nodes circle:nth-child(3n) { animation-delay: -2.4s; }
.orbit { position: absolute; z-index: 1; top: 50%; left: 48.5%; border: 1px solid rgba(7,95,87,.2); border-radius: 50%; transform: translate(-50%, -50%) rotate(-10deg); box-shadow: inset 0 0 35px rgba(217,238,229,.14); }
.orbit::before, .orbit::after { position: absolute; border-radius: 50%; content: ""; }
.orbit::before { top: 10%; right: 13%; width: 10px; height: 10px; background: var(--coral); box-shadow: 0 0 0 7px rgba(239,120,110,.08), 0 0 24px rgba(239,120,110,.42); }
.orbit::after { right: 3%; bottom: 24%; width: 7px; height: 7px; background: var(--blue); box-shadow: 0 0 20px rgba(63,159,197,.42); }
.orbit-one { width: 395px; height: 335px; }
.orbit-two { width: 515px; height: 455px; border-color: rgba(63,159,197,.15); transform: translate(-50%, -50%) rotate(13deg); }
.orbit-two::before { top: 25%; right: auto; left: 2%; width: 7px; height: 7px; background: var(--green); box-shadow: 0 0 20px rgba(8,124,112,.4); }
.orbit-two::after { right: 14%; bottom: 6%; width: 9px; height: 9px; }
.visual-center { position: absolute; z-index: 3; top: 50%; left: 48.5%; width: 226px; padding: 10px; border: 1px solid rgba(255,255,255,.86); border-radius: 36px; background: rgba(255,255,255,.78); box-shadow: 0 30px 75px rgba(7,95,87,.17), inset 0 0 0 1px rgba(7,95,87,.06); transform: translate(-50%, -50%); backdrop-filter: blur(16px); }
.visual-center::before { position: absolute; z-index: -1; inset: -34px; border: 1px solid rgba(7,95,87,.07); border-radius: 44%; background: radial-gradient(circle, rgba(255,255,255,.48), rgba(217,238,229,.12) 65%, transparent 70%); filter: blur(7px); content: ""; }
.visual-center img { width: 100%; border-radius: 27px; }
.float-card { position: absolute; z-index: 4; display: grid; grid-template-columns: 38px minmax(0,1fr); align-items: center; min-width: 174px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.88); border-radius: 19px; column-gap: 12px; background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(243,250,247,.72)); box-shadow: 0 18px 48px rgba(23,51,47,.11), inset 0 0 0 1px rgba(7,95,87,.035); backdrop-filter: blur(18px); animation: card-drift 6s ease-in-out infinite; }
.float-card::before { position: absolute; top: 13px; bottom: 13px; left: -1px; width: 3px; border-radius: 0 3px 3px 0; background: var(--coral); box-shadow: 0 0 14px rgba(239,120,110,.38); content: ""; }
.float-card i { display: grid; width: 38px; height: 38px; border: 1px solid rgba(7,95,87,.18); border-radius: 50%; place-items: center; color: var(--green-dark); background: rgba(217,238,229,.48); font-size: 11px; font-style: normal; }
.float-card span { min-width: 0; }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: 13px; line-height: 1.35; white-space: nowrap; }
.float-card small { margin-top: 2px; color: #617773; font-size: 10px; line-height: 1.35; letter-spacing: .04em; white-space: nowrap; }
.card-patient { top: 8%; left: 0; }
.card-data { top: 18%; right: 0; animation-delay: -2s; }
.card-data::before { background: var(--blue); box-shadow: 0 0 14px rgba(63,159,197,.4); }
.card-research { right: 7%; bottom: 4%; min-width: 205px; animation-delay: -4s; }
.card-research::before { background: var(--green); box-shadow: 0 0 14px rgba(8,124,112,.38); }.ticker { max-width: 100vw; overflow: clip; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: white; background: var(--green); contain: paint; }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 25s linear infinite; }
.ticker-group { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around; width: max-content; min-width: 100vw; padding: 18px 0; }
.ticker span { padding: 0 30px; font-size: 14px; font-weight: 700; letter-spacing: .15em; white-space: nowrap; }
.ticker b { color: var(--yellow); font-size: 18px; }

.intro { padding-block: 90px; background: #fff; }
.section-kicker { justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--green); }
.section-kicker span { color: #5f726e; font-weight: 500; }
.section-kicker.light { color: var(--mint); border-color: rgba(255,255,255,.22); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .75fr; gap: 10%; align-items: start; padding-top: 30px; }
.intro h2, .section-heading h2, .solution-head h2, .for-whom h2, .message-copy h2, .contact h2 { font-family: "Noto Sans JP"; font-size: clamp(38px, 4.5vw, 66px); line-height: 1.35; letter-spacing: -.045em; }
.intro h2 span, .section-heading h2 span { color: var(--green); }
.intro-copy { padding-top: 16px; color: var(--ink-soft); font-size: 16px; }
.intro-copy p + p { margin-top: 24px; }

.issue { padding: 72px 0 64px; color: white; background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; column-gap: 10%; }
.section-heading .section-kicker { grid-column: 1 / -1; }
.section-heading h2 { margin: 28px 0 48px; }
.section-heading > p:last-child { align-self: center; color: #b8cbc6; line-height: 2; }
.section-heading h2 span { color: var(--yellow); }
.section-heading h2.issue-heading { font-size: clamp(34px, 3.65vw, 56px); }
.section-heading h2 .issue-heading-line { display: block; color: inherit; white-space: nowrap; }
.section-heading h2 .issue-heading-line b { color: var(--yellow); font-weight: inherit; }
.issue-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.issue-card { position: relative; min-height: 258px; padding: 25px 28px 23px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #21433e; }
.issue-card-accent { color: var(--ink); background: var(--mint); }
.issue-card::after { position: absolute; width: 240px; height: 240px; right: -70px; bottom: -80px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; box-shadow: 0 0 0 32px rgba(255,255,255,.035), 0 0 0 64px rgba(255,255,255,.025); }
.issue-card-accent::after { border-color: rgba(7,95,87,.13); box-shadow: 0 0 0 32px rgba(7,95,87,.04), 0 0 0 64px rgba(7,95,87,.025); }
.issue-icon { display: grid; width: 45px; height: 45px; margin-bottom: 19px; border: 1px solid currentColor; border-radius: 14px; place-items: center; }
.issue-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-label { margin-bottom: 8px; font-size: 11px; font-weight: 700; letter-spacing: .15em; opacity: .7; }
.issue-card h3 { margin-bottom: 10px; font-size: 20px; }
.issue-card > p:not(.card-label):not(.big-number) { position: relative; z-index: 2; max-width: 560px; margin: 9px 0 0; opacity: .78; font-size: 13px; line-height: 1.75; }
.big-number { margin-bottom: 0; font-size: 19px; font-weight: 600; }
.big-number span { font-size: clamp(48px, 5.4vw, 68px); line-height: 1; }
.issue-source { position: relative; z-index: 2; display: inline-flex; min-height: 34px; align-items: center; gap: 8px; margin-top: 8px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 600; opacity: .76; transition: opacity .2s; }
.issue-source:hover { opacity: 1; }
.issue-source span { font-size: 13px; }
.issue-conclusion { margin: 52px 0 0; text-align: center; font-family: "Noto Sans JP"; font-size: clamp(27px, 3.5vw, 46px); font-weight: 600; line-height: 1.6; }
.issue-conclusion em { display: inline-block; padding: 0 16px; color: var(--ink); border-radius: 8px; background: var(--yellow); font-style: normal; transform: rotate(-1deg); }

.solution { padding: 76px 0 72px; border-top: 1px solid rgba(23,51,47,.07); background: var(--mint-light); }
.solution-head { margin-bottom: 34px; }
.solution-head .section-kicker { width: 100%; }
.solution-lead { display: grid; grid-template-columns: 1fr .72fr; gap: 10%; align-items: end; padding-top: 30px; }
.solution-lead h2 { margin: 0; font-size: clamp(32px, 3.5vw, 44px); }
.solution-lead > div { padding-bottom: 3px; }
.solution-lead > div > p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.95; }
.solution-lead .section-more { margin-top: 19px; }
.platform-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); background: var(--paper); }
.platform-image { display: flex; align-items: center; justify-content: center; padding: 38px; background: #fbfaf6; }
.platform-image img { width: min(78%, 330px); border-radius: 18px; box-shadow: 0 18px 40px rgba(23,51,47,.1); }
.platform-capabilities { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-left: 1px solid var(--line); list-style: none; }
.platform-capabilities li { min-height: 190px; padding: 28px; }
.platform-capabilities li:nth-child(even) { border-left: 1px solid var(--line); }
.platform-capabilities li:nth-child(n + 3) { border-top: 1px solid var(--line); }
.platform-capabilities span { display: block; margin-bottom: 25px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.platform-capabilities h3 { margin: 0 0 10px; font-family: "Noto Sans JP"; font-size: 18px; font-weight: 600; letter-spacing: -.025em; }
.platform-capabilities p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.75; }.section-heading.centered { display: block; text-align: center; }
.centered .section-kicker { text-align: left; }/* VoiceAtlas product page */
.service-intro { padding: 86px 0 76px; background: #fff; }
.service-intro-grid { display: grid; grid-template-columns: 1.05fr .72fr; gap: 10%; align-items: end; padding: 12px 0 38px; }
.service-title > p { margin-bottom: 17px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.service-title h1 { margin: 0; font-family: "Noto Sans JP"; font-size: clamp(30px, 3vw, 40px); font-weight: 600; line-height: 1.4; letter-spacing: -.04em; }
.service-title > span { display: block; margin-top: 17px; color: var(--green); font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.service-lead { padding-bottom: 5px; }
.service-lead p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.service-feature { display: grid; grid-template-columns: 1.12fr .88fr; overflow: hidden; border: 1px solid rgba(7,95,87,.11); border-radius: 22px; background: var(--paper); box-shadow: 0 20px 50px rgba(23,51,47,.055); }
.service-feature-image { display: grid; min-height: 430px; padding: 30px; place-items: center; background: #fbfaf6; }
.service-feature-image img { width: 100%; border-radius: 16px; }
.english-site .service-feature-image img { aspect-ratio: 197 / 100; object-fit: cover; object-position: left center; }
.service-value-list { align-self: center; padding: 20px 38px; }
.service-value-list article { padding: 18px 0; border-top: 1px solid var(--line); }
.service-value-list article:last-child { border-bottom: 1px solid var(--line); }
.service-value-list span { display: block; margin-bottom: 5px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.service-value-list h2, .service-value-list h3 { margin: 0 0 7px; font-family: "Noto Sans JP"; font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
.service-value-list p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.75; }
.service-process { padding: 70px 0 76px; border-top: 1px solid rgba(23,51,47,.07); border-bottom: 1px solid rgba(23,51,47,.07); background: var(--mint-light); }
.service-process-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7%; align-items: center; }
.service-process-copy h2 { margin: 0 0 20px; font-family: "Noto Sans JP"; font-size: clamp(30px, 2.65vw, 38px); font-weight: 600; line-height: 1.4; letter-spacing: -.04em; }
.service-process-copy p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.service-process-visual { min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(7,95,87,.12); border-radius: 22px; background: var(--green); }
.service-process-visual img { width: 100%; }
.service-collaboration { padding: 76px 0 88px; background: #fff; }
.service-work-head { display: grid; grid-template-columns: 1fr .72fr; gap: 10%; align-items: end; padding: 34px 0 42px; }
.service-work-head h2 { margin: 0; font-family: "Noto Sans JP"; font-size: clamp(27px, 2.6vw, 34px); font-weight: 600; line-height: 1.46; letter-spacing: -.035em; }
.service-work-head div > span { display: block; margin-top: 13px; color: var(--green); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.service-work-head p { margin: 0 0 3px; color: var(--ink-soft); font-size: 13px; line-height: 1.9; }
.service-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-paths article { display: grid; grid-template-columns: 68px 1fr; column-gap: 22px; padding: 30px; border: 1px solid rgba(7,95,87,.13); border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(23,51,47,.045); }
.service-paths article + article { padding: 30px; border-left: 1px solid rgba(7,95,87,.13); background: #fff; }
.service-path-icon { grid-row: 1 / span 3; display: grid; width: 62px; height: 62px; border: 1px solid rgba(7,95,87,.08); border-radius: 18px; place-items: center; color: var(--green-dark); background: var(--mint); }
.service-path-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-paths article > p { margin: 0 0 6px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.service-paths h3 { margin: 0 0 9px; font-family: "Noto Sans JP"; font-size: 25px; font-weight: 600; letter-spacing: -.025em; }
.service-paths article > span { display: block; max-width: 430px; color: var(--ink-soft); font-size: 12px; line-height: 1.75; }
.service-paths a { display: flex; grid-column: 2; width: fit-content; min-width: 210px; align-items: center; justify-content: space-between; gap: 28px; margin-top: 22px; padding: 11px 15px 11px 17px; border: 0; border-radius: 999px; color: white; background: var(--ink); font-size: 11px; font-weight: 700; transition: color .2s, background .2s, transform .2s; }
.service-paths a i { font-style: normal; transition: transform .2s; }
.service-paths a:hover { color: white; background: var(--green); }
.service-paths a:hover i { transform: translate(2px, -2px); }

.team { padding: 90px 0; border-top: 1px solid rgba(23,51,47,.07); background: #fbfaf6; }
.message-card { display: grid; grid-template-columns: minmax(220px, .48fr) minmax(0, 1.52fr); min-height: 0; overflow: hidden; border-radius: var(--radius-lg); color: white; background: var(--ink); }
.message-photo { position: relative; align-self: center; width: calc(100% - 34px); aspect-ratio: .78; margin-left: 34px; overflow: hidden; border-radius: 20px; background: #d4edf3; box-shadow: 0 18px 45px rgba(0,0,0,.16); }
.message-photo::after { display: none; }
.message-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.message-copy { align-self: center; padding: 34px 42px 44px; }
.message-copy .section-kicker { color: var(--mint); border-color: rgba(255,255,255,.2); }
.message-copy h2 { margin: 18px 0 20px; font-size: clamp(29px, 2.7vw, 39px); line-height: 1.38; }
.message-copy h2 span { display: block; }
.message-copy > p:not(.section-kicker) { margin-bottom: 10px; color: #cbd9d6; font-size: 14px; line-height: 1.7; }
.message-copy .message-highlight {
  color: #fff;
  font-weight: 700;
}
.signature { display: flex; flex-direction: column; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2); }
.signature strong { font-size: 18px; }
.signature span { color: #9db5b0; font-size: 11px; }
.members { margin-top: 75px; scroll-margin-top: 120px; }
.members-title { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.members-title p { font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.member-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.member-list article { flex: 0 1 250px; min-width: 210px; max-width: 250px; padding: 12px 12px 21px; border: 1px solid transparent; border-radius: 20px; background: var(--paper); }
.member-list img { width: 100%; aspect-ratio: 1/.78; margin-bottom: 17px; border-radius: 18px; object-fit: cover; object-position: center top; filter: saturate(.8); }
.member-list article:first-child img { object-position: center 8%; }
.member-list p, .member-list h3, .member-list small { margin-inline: 10px; }
.member-list p { margin-bottom: 7px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.member-list h3 { margin-bottom: 9px; font-size: 21px; }
.member-list small { display: block; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.member-affiliations > span { display: block; }
.member-affiliations > span + span { margin-top: .28em; }

@media (min-width: 821px) {
  .member-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .member-list article {
    display: grid;
    grid-template-columns: clamp(124px, 12vw, 160px) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-content: start;
    min-width: 0;
    max-width: none;
    min-height: 230px;
    padding: 16px;
    column-gap: 22px;
  }

  .member-list img {
    grid-row: 1 / span 3;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .member-list p,
  .member-list h3,
  .member-list small {
    grid-column: 2;
    margin-inline: 0;
  }

  .member-list p {
    align-self: end;
    margin-bottom: 4px;
  }

  .member-list h3 {
    margin-bottom: 10px;
  }
}
.advisory-network { position: relative; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 48px; margin-top: 28px; padding: 34px 38px; overflow: hidden; border-radius: 26px; color: white; background: var(--ink); }
.advisory-network::after { position: absolute; right: -80px; bottom: -115px; width: 260px; height: 260px; border: 1px solid rgba(217,238,229,.14); border-radius: 50%; box-shadow: 0 0 0 36px rgba(217,238,229,.035), 0 0 0 72px rgba(217,238,229,.02); content: ""; }
.advisory-network > div { position: relative; z-index: 1; padding-right: 36px; border-right: 1px solid rgba(255,255,255,.16); }
.advisory-network > div p { margin: 0 0 10px; color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.advisory-network > div span { display: block; max-width: 210px; color: white; font-family: "Noto Sans JP"; font-size: 20px; font-weight: 600; line-height: 1.55; letter-spacing: -.02em; }
.advisory-network ul { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; padding: 0; margin: 0; list-style: none; }
.advisory-network li { position: relative; min-height: 52px; padding: 15px 0 13px 18px; border-top: 1px solid rgba(255,255,255,.16); color: #edf7f1; font-size: 11px; font-weight: 600; }
.advisory-network li::before { position: absolute; top: 23px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); content: ""; }

.partners { padding: 50px 0; color: white; background: var(--ink); }
.partners-label { margin-bottom: 24px; text-align: center; color: #90aaa5; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.partner-logos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.15); }
.partner-logos > div { display: grid; min-width: 0; min-height: 105px; padding: 22px; place-items: center; background: var(--ink); }
.partner-logos img { width: 100%; max-width: 230px; max-height: 70px; object-fit: contain; }

.values { position: relative; padding: 44px 0 76px; overflow: hidden; color: var(--green-dark); background: #fff; }
.values-inner { position: relative; z-index: 2; }
.values-header { position: relative; padding-bottom: 0; }
.values-header .section-kicker { margin: 0; color: var(--green); }
.values-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: stretch; padding-top: 30px; }
.value-list { position: relative; display: grid; height: 100%; grid-template-rows: repeat(3, 1fr); }
.value-list article { display: grid; grid-template-columns: 112px 68px minmax(0, 1fr); align-items: center; min-height: 108px; border-bottom: 1px solid var(--line); column-gap: 18px; }
.english-site .value-list article { grid-template-columns: 150px 90px minmax(0, 1fr); }
.value-list article h3 { margin: 0; color: var(--green); font-size: 36px; font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.value-list article span { color: var(--green); font-family: "Noto Sans JP"; font-size: 16px; font-weight: 700; }
.value-list article p { margin: 0; color: var(--ink); font-family: "Noto Sans JP"; font-size: 14px; font-weight: 600; }
.values-story { position: relative; z-index: 2; height: 100%; min-height: 100%; padding: 38px 34px; overflow: hidden; border-radius: 28px; color: white; background: linear-gradient(145deg, #087c70 0%, #07675f 100%); }
.values-story-inner { display: flex; height: 100%; flex-direction: column; justify-content: space-between; gap: 35px; }
.ppie-note { display: flex; flex-direction: column; align-items: flex-start; margin: 0; padding: 0; color: white; }
.ppie-note strong { color: white; font-family: "DM Sans", sans-serif; font-size: 48px; line-height: 1; letter-spacing: -.045em; }
.ppie-note span { margin-top: 13px; color: #edf7f1; font-size: 11px; font-weight: 600; line-height: 1.6; letter-spacing: .025em; }
.values-copy h2 { margin-bottom: 18px; font-family: "Noto Sans JP"; font-size: 25px; font-weight: 600; line-height: 1.55; letter-spacing: -.035em; }
.values-copy p { max-width: 650px; margin: 0; color: #edf7f1; font-size: 12px; line-height: 1.9; }

.news-section { padding: 80px 0; }
.news-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.news-head > div { min-width: 0; }
.news-head .section-kicker { width: auto; margin: 0; padding: 0; border: 0; white-space: nowrap; }
.news-head > a { padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.news-head > a span { margin-left: 18px; }
.news-list { border-top: 0; }
.news-list a { display: grid; grid-template-columns: 110px 68px 1fr 26px; align-items: center; gap: 16px; min-height: 86px; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.news-list a:hover { padding-inline: 12px; color: var(--green); }
.news-list time { color: #5f726e; font-size: 12px; }
.news-tag { padding: 5px 8px; border-radius: 999px; text-align: center; color: var(--green); background: var(--mint-light); font-size: 11px; font-weight: 700; }
.news-list p { margin: 0; font-size: 14px; font-weight: 600; }
.news-list i { font-style: normal; }

.subpage { background: #fff; }.section-more { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.section-more:hover { color: var(--green); }.archive-heading .eyebrow { justify-content: flex-start; margin-bottom: 22px; }.news-archive { padding: 160px 0 100px; }
.archive-grid { display: grid; grid-template-columns: 185px 1fr; gap: 8%; align-items: start; }
.archive-years { position: sticky; top: 115px; display: flex; flex-direction: column; }
.archive-years > p { margin-bottom: 17px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.archive-years > a:not(.back-home) { display: flex; justify-content: space-between; padding: 12px 5px; border-bottom: 1px solid var(--line); color: #5f726e; font-size: 13px; font-weight: 700; }
.archive-years > a.is-current { color: var(--green); }
  .archive-years > a span { font-size: 11px; font-weight: 500; }
.archive-years .back-home { display: flex; align-items: center; gap: 11px; margin-top: 35px; font-size: 11px; font-weight: 700; }
.back-home i { display: grid; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; place-items: center; font-style: normal; transition: color .2s, background .2s; }
.back-home:hover i { color: white; background: var(--green); }
.archive-content { min-width: 0; }
.archive-year { scroll-margin-top: 135px; }
.archive-year + .archive-year { margin-top: 76px; }
.year-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.year-heading h2 { margin: 0; font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.year-heading span { color: #5f726e; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.archive-list { border-top: 1px solid var(--ink); }
.archive-list > a, .archive-list > article { display: grid; grid-template-columns: 96px 76px minmax(0, 1fr) 24px; align-items: center; gap: 16px; min-height: 88px; padding: 14px 8px; border-bottom: 1px solid var(--line); transition: color .2s, padding .2s, background .2s; }
.archive-list > a:hover { padding-inline: 14px; color: var(--green); background: var(--mint-light); }
.archive-list time { color: #5f726e; font-size: 11px; }
.archive-tag { padding: 5px 7px; border-radius: 999px; text-align: center; color: var(--green); background: var(--mint-light); font-size: 11px; font-weight: 700; white-space: nowrap; }
.archive-list h3 { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.6; }
.archive-list i { justify-self: end; font-size: 14px; font-style: normal; }
.archive-list > article { color: var(--ink-soft); }
.archive-list > article.is-static { grid-template-columns: 96px 76px minmax(0, 1fr); color: var(--ink); }
.archive-home-cta { display: flex; align-items: center; justify-content: space-between; width: min(390px, 100%); min-height: 60px; margin: 64px auto 0; padding: 8px 10px 8px 25px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; transition: color .2s, background .2s, transform .2s; }
.archive-home-cta:hover { color: white; background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.archive-home-cta i { order: -1; display: grid; width: 42px; height: 42px; border-radius: 50%; place-items: center; color: white; background: var(--ink); font-style: normal; }
.footer-column a.is-current { color: var(--green); }

.news-detail-hero { padding: 145px 0 62px; border-bottom: 1px solid rgba(23,51,47,.08); background: #fff; }
.news-detail-breadcrumb { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 48px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.news-detail-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.news-detail-meta time { color: #5f726e; font-size: 12px; }
.news-detail-hero h1 { max-width: 920px; margin: 0; font-family: "Noto Sans JP"; font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; line-height: 1.45; letter-spacing: -.035em; }/* Founding announcement: compact editorial treatment, not a second landing page. */
.company-news-hero { padding-bottom: 78px; background: #fff; }
.company-news-hero .section-shell { width: min(1080px, var(--shell)); }
.company-news-hero .news-detail-breadcrumb { margin-bottom: 42px; }
.company-news-article { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: clamp(40px, 7vw, 86px); padding: 38px 0 44px; border-block: 1px solid var(--line); }
.company-news-article .news-detail-meta { align-content: start; align-items: flex-start; gap: 13px; margin: 3px 0 0; }
.company-news-article .news-detail-meta time { order: -1; padding-top: 5px; font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .04em; }
.company-news-copy { max-width: 750px; }
.company-news-copy h1 { max-width: none; font-size: clamp(38px, 4vw, 50px); line-height: 1.24; letter-spacing: -.05em; }
.company-news-copy h1 span { display: inline-block; margin-left: .2em; font-size: .72em; font-weight: 500; letter-spacing: -.035em; }
.company-news-lead { max-width: 39em; margin: 25px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.95; }
.company-news-philosophy { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 22px; align-items: baseline; margin-top: 35px; padding: 21px 0 0 18px; border-top: 1px solid rgba(23, 51, 47, .12); border-left: 3px solid var(--green); }
.company-news-philosophy p { margin: 0; color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.company-news-philosophy strong { font-family: "Noto Sans JP", sans-serif; font-size: 18px; font-weight: 600; line-height: 1.6; letter-spacing: -.02em; }
/* 英語のラベルは「OUR PHILOSOPHY」と長く、日本語向けの86pxでは2行になる。 */
.english-site .company-news-philosophy { grid-template-columns: 118px minmax(0, 1fr); }

@media (max-width: 820px) {
  .company-news-hero { padding-bottom: 58px; }
  .company-news-article { grid-template-columns: 120px minmax(0, 1fr); gap: 32px; }
  .company-news-copy h1 { font-size: clamp(32px, 5vw, 40px); }
}

@media (max-width: 560px) {
  .company-news-hero { padding-bottom: 42px; }
  .company-news-hero .news-detail-breadcrumb { margin-bottom: 28px; }
  .company-news-article { grid-template-columns: 1fr; gap: 24px; padding: 24px 0 30px; }
  .company-news-article .news-detail-meta { flex-direction: row; align-items: center; margin: 0; }
  .company-news-article .news-detail-meta time { padding: 0; }
  .company-news-copy h1 { font-size: 29px; line-height: 1.38; }
  .company-news-copy h1 span { display: block; margin: .1em 0 0; font-size: .76em; }
  .company-news-lead { margin-top: 18px; font-size: 13px; line-height: 1.9; }
  .company-news-philosophy { grid-template-columns: 1fr; gap: 7px; margin-top: 26px; padding: 16px 0 0 13px; }
  .company-news-philosophy strong { font-size: 16px; }
}

.policy-hero { position: relative; min-height: 240px; padding: 112px 0 28px; overflow: hidden; border-bottom: 1px solid rgba(23,51,47,.07); background: #fff; }
.policy-hero::before { position: absolute; right: 8%; bottom: -245px; width: 430px; height: 430px; border: 1px solid rgba(8,124,112,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 54px rgba(8,124,112,.03), 0 0 0 108px rgba(8,124,112,.02); }
.site-policy-hero { background: linear-gradient(135deg, #fff 55%, var(--mint-light)); }
.site-policy-hero::before { border-radius: 42% 58% 52% 48%; transform: rotate(15deg); }
.policy-mark { position: absolute; right: 3%; bottom: -8px; color: rgba(8,124,112,.045); font-size: clamp(72px, 10vw, 145px); font-weight: 700; line-height: .8; letter-spacing: -.06em; }
.policy-heading { position: relative; z-index: 2; margin-top: 0; }
.policy-heading .eyebrow { margin-bottom: 14px; }
.policy-heading h1 { margin: 0; font-family: "DM Sans"; font-size: clamp(34px, 3.5vw, 46px); font-weight: 600; line-height: 1.1; letter-spacing: -.04em; }
.policy-heading h1 small { display: block; margin-top: 9px; font-family: "Noto Sans JP"; font-size: 13px; font-weight: 500; letter-spacing: .06em; }
.policy-body { padding: 60px 0 72px; background: #fff; }
.policy-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 8%; align-items: start; }
.policy-toc { position: sticky; top: 105px; display: flex; max-height: calc(100vh - 125px); overflow-y: auto; padding-right: 8px; flex-direction: column; }
.policy-toc > p { margin-bottom: 15px; padding-bottom: 13px; border-bottom: 1px solid var(--line); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.policy-toc > a:not(.policy-switch) { display: flex; gap: 13px; padding: 11px 4px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.policy-toc > a { min-width: 0; overflow-wrap: anywhere; }
.policy-toc > a:not(.policy-switch):hover { color: var(--green); }
.policy-toc > a span { width: 20px; color: #5f726e; font-size: 11px; }
.policy-switch { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 28px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-size: 11px; font-weight: 700; transition: color .2s; }
a.policy-switch:hover { color: var(--green); }
.policy-switch i { display: grid; width: 27px; height: 27px; border-radius: 50%; place-items: center; color: white; background: var(--green); font-style: normal; }
.policy-content { min-width: 0; }
.policy-intro { position: relative; padding: 36px 40px; border-radius: 25px; background: var(--mint-light); }
.policy-intro > span { display: block; margin-bottom: 20px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.policy-intro p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 2; }
.policy-content > section { position: relative; padding: 42px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.policy-number { position: absolute; top: 46px; left: 0; margin: 0; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.policy-content h2 { margin: 0 0 26px; padding-left: 55px; font-family: "Noto Sans JP"; font-size: 24px; letter-spacing: -.025em; }
.policy-content > section > p:not(.policy-number) { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 2; }
.policy-content > section > p + p { margin-top: 20px !important; }
.policy-data + p, .policy-content ol + p { margin-top: 24px !important; }.policy-content strong { color: var(--green); }
.policy-inline-link { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.policy-inline-link:hover { color: var(--green-dark); }.policy-content ol { display: grid; gap: 0; padding: 0; margin: 30px 0 0; border-top: 1px solid var(--line); list-style: none; counter-reset: policy-list; }
.policy-content li { position: relative; padding: 15px 15px 15px 55px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; line-height: 1.8; counter-increment: policy-list; }
.policy-content li::before { position: absolute; left: 10px; color: var(--green); content: counter(policy-list, decimal-leading-zero); font-size: 11px; font-weight: 700; }
.policy-end { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; color: #5f726e; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.policy-end a { color: var(--ink); }
.footer-meta nav a.is-current { color: var(--green); font-weight: 700; }
.legal-page .footer-contact, .legal-page .footer-marquee, .legal-page .footer-main { display: none; }
.legal-page .footer-meta { border-top: 1px solid var(--line); }

.company { padding: 80px 0 42px; background: #fff; }
.company-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10%; }
.company-title h1, .company-title h2 { margin: 24px 0 18px; font-family: "DM Sans"; font-size: 32px; font-weight: 600; line-height: 1.15; letter-spacing: -.035em; }
.company-title > p:not(.section-kicker) { color: var(--ink-soft); }
.company-data { margin: 37px 0 0; border-top: 1px solid var(--line); }
.company-data > div { display: grid; grid-template-columns: 140px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.company-data dt { color: var(--green); font-size: 12px; font-weight: 700; }
.company-data dd { margin: 0; font-size: 14px; }
.company-location { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.company-map-link { display: flex; width: max-content; align-items: center; gap: 18px; margin: 0; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--green-dark); font-size: 11px; font-weight: 700; letter-spacing: .02em; transition: color .2s; }
.company-map-link span { font-size: 11px; transition: transform .2s; }
.company-map-link:hover { color: var(--green); }
.company-map-link:hover span { transform: translate(2px, -2px); }

.site-footer { overflow: hidden; color: #f7f3e8; background: #123d37; }
.footer-marquee { display: none; }
.footer-contact { width: 100%; margin-inline: auto; padding: 38px max(40px, calc((100vw - 1180px) / 2)) 32px; color: var(--ink); background: #fbfaf6; }
.footer-contact-label { margin: 0 0 10px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.footer-contact-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; align-items: end; }
.footer-contact-heading h2 { margin: 0; font-family: "Noto Sans JP"; font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.footer-contact-heading p { margin: 0 0 2px; color: var(--ink-soft); font-size: 13px; }
.footer-contact-details { display: grid; grid-template-columns: .85fr 1.15fr; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.footer-contact-item { display: grid; grid-template-columns: 44px 1fr auto; grid-template-rows: auto auto; column-gap: 15px; align-items: center; min-height: 98px; padding: 16px 20px; transition: color .2s, background .2s; }
.footer-contact-item + .footer-contact-item { border-left: 1px solid var(--line); }
.footer-contact-item > i { grid-row: 1 / 3; display: grid; width: 44px; height: 44px; border-radius: 14px; place-items: center; color: var(--green); background: var(--mint-light); font-size: 16px; font-style: normal; }
.footer-contact-item > span { align-self: end; color: #5f726e; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.footer-contact-item > strong { align-self: start; font-size: 19px; font-weight: 500; line-height: 1.5; }
.footer-contact-item + .footer-contact-item > strong { font-size: 12px; }
.footer-contact-item > b { grid-column: 3; grid-row: 1 / 3; font-size: 14px; transition: transform .2s; }
.footer-contact-item:hover { color: var(--green); background: var(--mint-light); }
.footer-contact-item:hover > b { transform: translate(2px, -2px); }
.footer-office a[href^="mailto:"] { display: none; }
.footer-marquee span { padding-inline: 42px; font-size: clamp(25px, 3.5vw, 52px); font-weight: 600; line-height: 1; letter-spacing: -.025em; white-space: nowrap; }
.footer-marquee i { color: var(--coral); font-size: 26px; font-style: normal; }
.footer-main { display: grid; grid-template-columns: .66fr 1.34fr; gap: 6%; width: var(--shell); margin-inline: auto; padding: 30px 0 16px; }
.footer-brand > a { display: inline-block; width: fit-content; padding: 7px 11px; border-radius: 11px; background: #fbfaf5; }
.footer-brand > a img { width: 142px; filter: none; }
.footer-statement { margin: 18px 0 9px; font-family: "Noto Sans JP"; font-size: 22px; font-weight: 500; line-height: 1.45; letter-spacing: -.025em; }
.footer-statement strong { color: #9bd8c6; font-weight: 600; }
.footer-description { max-width: 360px; margin-bottom: 10px; color: rgba(247, 243, 232, .7); font-size: 12px; line-height: 1.65; }
.footer-navigation { display: grid; grid-template-columns: 1.2fr .8fr 1.25fr; gap: 28px; padding-top: 2px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column > p { width: 100%; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(247, 243, 232, .2); color: #9bd8c6; font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.footer-column > a { padding: 7px 0; font-size: 12px; font-weight: 600; transition: color .2s, transform .2s; }
.footer-column > a[href$=".pdf"] { display: none; }
.footer-column > a[href="https://txp.co.jp/en/"] { display: none; }
.footer-column[aria-label="サービス案内"] > a[href="/company/"] { display: none; }
.footer-column[aria-label="Explore"] > a[href="/en/company/"] { display: none; }
.footer-column > a span { display: none; }
.footer-column > a:hover { color: #9bd8c6; transform: translateX(4px); }
.footer-column > a span { display: none; width: 27px; color: rgba(247, 243, 232, .78); font-size: 11px; font-weight: 500; }
.footer-office address { margin-bottom: 8px; color: rgba(247, 243, 232, .7); font-size: 11px; font-style: normal; line-height: 1.7; }
.footer-office > a { padding-bottom: 3px; border-bottom: 1px solid rgba(247, 243, 232, .7); font-size: 11px; }
.footer-office > a + a { margin-top: 12px; }
.footer-meta { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: var(--shell); margin-inline: auto; padding: 10px 0 14px; border-top: 1px solid rgba(247, 243, 232, .2); color: rgba(247, 243, 232, .7); font-size: 11px; }
.footer-meta p { margin: 0; }
.footer-meta > p { font-size: 11px; }
.footer-meta nav { display: flex; align-items: center; gap: 24px; }
.footer-meta nav a:hover { color: #9bd8c6; }
.footer-policy-disabled { color: rgba(247, 243, 232, .72); cursor: default; }
.footer-policy-disabled small { color: rgba(247, 243, 232, .62); font-size: 9px; }
.english-site h1, .english-site h2, .english-site h3, .english-site .desktop-nav a small, .english-site .footer-statement, .english-site .footer-contact-heading h2 { font-family: "DM Sans", sans-serif; }
.english-site .hero h1 { font-size: clamp(52px, 5vw, 76px); line-height: 1.08; letter-spacing: -.045em; }
.english-site .hero h1 em { white-space: normal; }
.english-site .intro h2, .english-site .section-heading h2, .english-site .message-copy h2 { letter-spacing: -.035em; }
.policy-switch.is-disabled { color: #7a8986; cursor: default; }
.policy-switch.is-disabled i { width: auto; padding-inline: 9px; border-radius: 999px; color: #61716e; background: #e8eeeb; font-size: 9px; }
.page-top { display: flex; align-items: center; justify-self: end; gap: 12px; color: #f7f3e8; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.page-top i { display: grid; width: 34px; height: 34px; border: 1px solid rgba(247, 243, 232, .3); border-radius: 50%; place-items: center; font-size: 13px; font-style: normal; transition: color .2s, background .2s; }
.page-top:hover i { color: var(--green-dark); background: #9bd8c6; }

/* Compact footer: contact直下と重複する情報は表示しない */
.footer-contact-label,
.footer-description,
.footer-office { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal { animation: reveal .85s .15s both; }
.hero .hero-visual { animation-delay: .35s; }

@media (min-width: 821px) {
  .subpage .solution { padding-block: 65px; }
  .subpage .for-whom { padding: 60px 0 75px; }
  .subpage .team { padding-block: 72px; }
  .subpage .company { padding-block: 65px; }
  #message.team { padding-top: 36px; }
  #message .message-card { min-height: 620px; }
  .message-copy h2 span { white-space: nowrap; }
  .footer-main { grid-template-columns: .7fr 1.3fr; gap: 8%; width: min(1040px, calc(100% - 96px)); padding: 26px 0 14px; }
  .footer-contact { display: grid; grid-template-columns: .58fr 1.42fr; align-items: center; gap: 6%; padding-block: 18px; }
  .footer-contact-heading { display: block; grid-column: 1; }
  .footer-contact-heading h2 { font-size: 23px; }
  .footer-contact-heading p { margin-top: 3px; font-size: 11px; line-height: 1.55; }
  .footer-contact-details { grid-column: 2; align-self: stretch; margin-top: 0; }
  .footer-contact-item { min-height: 80px; padding: 12px 16px; }
  .footer-contact-item > i { width: 38px; height: 38px; border-radius: 12px; }
  .footer-contact-item > strong { font-size: 17px; }
  .footer-brand > a { padding: 6px 9px; border-radius: 10px; }
  .footer-brand > a img { width: 126px; }
  .footer-statement { margin: 10px 0 0; font-size: 18px; line-height: 1.35; white-space: nowrap; }
  .footer-statement br { display: none; }
  .footer-statement strong::before { content: " "; }
  .footer-navigation { grid-template-columns: 1fr 1fr; gap: 34px; padding-top: 0; }
  .footer-column > p { margin-bottom: 5px; padding-bottom: 5px; }
  .footer-column > a { min-height: 32px; padding-block: 2px; font-size: 12px; }
  .footer-office address { margin-bottom: 5px; line-height: 1.6; }
  .footer-office > a + a { margin-top: 4px; }
  .footer-meta { width: min(1040px, calc(100% - 96px)); padding: 12px 0 14px; }
}

@keyframes reveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes morph { from { transform: rotate(0deg) scale(1); } to { transform: rotate(7deg) scale(1.05); border-radius: 58% 42% 44% 56%; } }
@keyframes data-flow { to { stroke-dashoffset: -100; } }
@keyframes node-pulse { 0%, 100% { opacity: .46; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.35); } }
@keyframes card-drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 48px, 900px); }
  .site-header { grid-template-columns: 160px 1fr auto auto; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a strong { font-size: 11px; }
  .desktop-nav a small { font-size: 9px; }
  .hero { grid-template-columns: 1fr .85fr; min-height: 780px; padding-inline: 40px; }
  .hero-visual { height: 520px; }
  .visual-center { width: 184px; }
  .orbit-one { width: 330px; height: 285px; }
  .orbit-two { width: 430px; height: 385px; }
  .float-card { grid-template-columns: 34px minmax(0,1fr); min-width: 152px; padding: 12px 14px; column-gap: 10px; }
  .float-card i { width: 34px; height: 34px; }
  .float-card strong { font-size: 12px; }
  .card-research { min-width: 184px; }
  .platform-panel { grid-template-columns: .82fr 1.18fr; }
  .message-copy { padding: 28px 32px 30px; }
}

@media (max-width: 820px) {
  .ticker { display: none; }
  :root { --radius-lg: 30px; --shell: calc(100% - 38px); }
  .site-header { top: 10px; grid-template-columns: minmax(0, 1fr) auto auto; height: 62px; padding: 0 8px 0 14px; column-gap: 6px; }
  .brand { min-width: 0; }
  .brand img { width: 112px; }
  .desktop-nav, .header-cta { display: none; }
  .language-switch { position: relative; z-index: 2; height: 42px; margin: 0; padding: 3px; gap: 2px; box-shadow: 0 6px 16px rgba(7,95,87,.16); }
  .language-switch > * { min-width: 40px; height: 32px; padding: 0 9px; font-size: 10px; }
  .menu-button { position: relative; z-index: 2; display: block; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; appearance: none; background: var(--ink); touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  .menu-button span { position: absolute; top: 50%; left: 50%; display: block; width: 20px; height: 2px; margin-top: -1px; border-radius: 999px; background: white; transform-origin: center; transition: opacity .2s ease, transform .25s ease; }
  .menu-button span:first-child { transform: translate(-50%, -6px); }
  .menu-button span:nth-child(2) { transform: translate(-50%, 0); }
  .menu-button span:last-child { transform: translate(-50%, 6px); }
  .menu-open .menu-button span:first-child { transform: translate(-50%, 0) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scaleX(.4); }
  .menu-open .menu-button span:last-child { transform: translate(-50%, 0) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: -10px -9px auto auto; display: flex; width: calc(100vw - 18px); height: calc(100vh - 18px); height: calc(100dvh - 18px); padding: 105px 26px calc(30px + env(safe-area-inset-bottom, 0px)); overflow-y: auto; overscroll-behavior: contain; flex-direction: column; border-radius: 28px; background: var(--cream); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .25s, transform .25s; }
  .menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-nav > a:not(.button) { padding: 17px 5px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 600; }
  .mobile-nav > a:focus-visible { outline-width: 2px; outline-offset: -2px; border-radius: 10px; }
  .mobile-nav > a.is-current { color: var(--green); }
  .mobile-nav .button { margin-top: auto; }
  .hero { display: block; min-height: auto; padding: 120px 22px 55px; }
  .hero::before { width: 105vw; height: 540px; right: -42%; top: 44%; border-radius: 50% 0 0 50% / 50% 0 0 50%; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; margin-bottom: 24px; font-size: 11px; }
  .hero h1 { font-size: clamp(45px, 12vw, 70px); line-height: 1.2; }
  .hero-lead { font-size: 14px; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { top: 0; width: 100%; max-width: 520px; height: 460px; margin: 22px auto 0; }
  .visual-center { width: 178px; }
  .orbit-one { width: 320px; height: 275px; }
  .orbit-two { width: 420px; height: 370px; }
  .card-patient { top: 5%; left: 1%; }
  .card-data { top: 13%; right: 1%; }
  .card-research { right: 5%; bottom: 2%; }  .intro, .solution, .for-whom, .team, .news-section { padding-block: 70px; }
  .intro-grid, .section-heading, .company-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro h2, .section-heading h2, .solution-head h2, .for-whom h2, .message-copy h2, .contact h2 { font-size: clamp(34px, 8vw, 52px); }
  .section-heading h2 { margin-bottom: 20px; }
  .section-heading > p:last-child { margin-bottom: 42px; }
  .issue { padding-block: 70px; }
  .issue-cards { grid-template-columns: 1fr; }
  .issue-card { min-height: 270px; }
  .solution-lead { grid-template-columns: 1fr; gap: 18px; padding-top: 25px; }
  .solution-lead h2 { font-size: 34px; }
  .solution-lead > div { max-width: 650px; }
  .platform-panel { grid-template-columns: 1fr; padding: 0; }
  .platform-image { padding: 28px; }
  .platform-capabilities { border-top: 1px solid var(--line); border-left: 0; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 38px; }
  .service-title h1 { font-size: clamp(30px, 5vw, 36px); }
  .service-lead { max-width: 650px; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature-image { min-height: 0; padding: 26px; }
  .service-value-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px 28px 26px; }
  .service-value-list article, .service-value-list article:last-child { border-top: 1px solid var(--line); border-bottom: 0; }
  .service-process-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-work-head { grid-template-columns: 1fr 1fr; gap: 7%; }
  .service-paths article { grid-template-columns: 54px 1fr; column-gap: 16px; padding: 24px; }
  .service-paths article + article { padding: 24px; }
  .service-path-icon { width: 50px; height: 50px; border-radius: 15px; }
  .service-path-icon svg { width: 30px; height: 30px; }  .message-card { grid-template-columns: 1fr; }
  .message-photo { width: min(230px, calc(100% - 52px)); aspect-ratio: .82; margin: 26px auto 0; }
  .member-list { display: grid; grid-template-columns: 1fr 1fr; }
  .member-list { gap: 10px; }
  .member-list article { display: grid; grid-template-columns: 105px 1fr; grid-template-rows: auto auto 1fr; min-width: 0; max-width: none; column-gap: 15px; min-height: 148px; padding: 10px; }
  .member-list img { grid-row: 1 / span 3; width: 105px; height: 128px; margin: 0; border-radius: 14px; object-fit: cover; }
  .member-list p, .member-list h3, .member-list small { grid-column: 2; margin-inline: 0; }
  .member-list p { align-self: end; margin-bottom: 3px; font-size: 11px; }
  .member-list h3 { font-size: 18px; }
  .member-list small { font-size: 11px; line-height: 1.5; }
  .advisory-network { display: block; padding: 28px 30px; }
  .advisory-network > div { margin-bottom: 20px; padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .advisory-network > div span { max-width: none; }
  .advisory-network ul { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .advisory-network li:nth-child(4) { border-left: 0; }
  .partner-logos img { max-width: 180px; }
  .values { padding-block: 62px; }
  .values-layout { grid-template-columns: 1fr; gap: 26px; }
  .value-list article { grid-template-columns: 150px 90px minmax(0, 1fr); }
  .value-list article h3 { font-size: 40px; }
  .value-list article span { font-size: 19px; }
  .value-list article p { font-size: 15px; }
  .values-story { min-height: 330px; padding: 38px; }
  .values-story-inner { gap: 32px; }
  .ppie-note { flex-direction: row; align-items: baseline; gap: 22px; }
  .ppie-note span { margin-top: 0; }
  .company { padding-block: 70px; }
  .company-title { margin-bottom: 30px; }
  .company-data { margin-top: 0; }
  .company-location { display: block; }
  .company-location .company-map-link { margin-top: 8px; }  .news-archive { padding-block: 68px 90px; }
  .archive-grid { grid-template-columns: 1fr; gap: 44px; }
  .archive-years { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .archive-years > p { grid-column: 1 / -1; }
  .archive-years > a:not(.back-home) { padding: 10px 2px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .archive-years .back-home { grid-column: 1 / -1; margin-top: 15px; }
  .policy-hero { min-height: 230px; padding: 106px 0 26px; }
  .policy-heading { margin-top: 0; }
  .policy-body { padding-block: 52px 64px; }
  .policy-layout { grid-template-columns: 1fr; gap: 38px; }
  .policy-toc { position: static; display: grid; max-height: none; overflow: visible; padding-right: 0; grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .policy-toc > p { grid-column: 1 / -1; }
  .policy-toc > a:not(.policy-switch) { padding: 10px 2px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .policy-switch { grid-column: 1 / -1; width: fit-content; margin-top: 12px; }
  .footer-contact-heading { grid-template-columns: 1fr; gap: 10px; }
  .footer-contact-heading p { max-width: 620px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding-block: 35px 26px; }
  .footer-brand { display: grid; grid-template-columns: 1fr 1fr; column-gap: 35px; }
  .footer-brand > a, .footer-statement { grid-column: 1; }
  .footer-description { grid-column: 2; }
  .footer-description { grid-row: 1 / span 2; align-self: end; }
  .footer-navigation { grid-template-columns: 1.2fr .8fr 1.2fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 25px; }
  .mobile-only { display: block; }
  .english-site .hero h1 { font-size: 42px; line-height: 1.12; text-wrap: wrap; }
  .english-site .hero h1 em { display: block; }
  .english-site .hero-lead { width: 100%; text-wrap: wrap; }
  .english-site .section-heading h2 .issue-heading-line,
  .english-site .message-copy h2 span { white-space: normal; }
  .english-site .message-copy h2 { font-size: 27px; line-height: 1.3; }
  .hero { isolation: isolate; padding: 112px 17px 52px; }
  .hero::before { top: 25%; right: -68%; width: 126vw; height: 470px; opacity: .58; }
  .hero-noise { opacity: .18; }
  .hero-copy { z-index: 2; }
  .hero h1 { font-size: 45px; }
  .hero h1 em { white-space: normal; }
  .hero-lead { width: calc(100% - 34px); max-width: 34em; margin: 0 auto 34px; padding: 0; text-align: left; line-height: 1.85; text-wrap: pretty; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 57px; }
  .hero .hero-visual { position: absolute; z-index: 0; top: 205px; right: -148px; width: 430px; height: 390px; max-width: none; margin: 0; opacity: .06; filter: saturate(.72); pointer-events: none; animation: none; }
  .hero-visual::before { inset: 2%; }
  .visual-center { width: 154px; padding: 8px; border-radius: 24px; }
  .visual-center img { border-radius: 19px; }
  .orbit-one { width: 245px; height: 220px; }
  .orbit-two { width: 325px; height: 300px; }
  .float-card { display: none; }
  .intro, .solution, .for-whom, .team, .news-section { padding-block: 56px; }  .intro-grid { padding-top: 12px; }
  .intro h2, .section-heading h2, .solution-head h2, .for-whom h2, .message-copy h2, .contact h2 { font-size: 33px; }
  .issue { padding-block: 56px; }
  .issue-card { min-height: 0; padding: 22px; }
  .issue-icon { margin-bottom: 18px; }
  .issue-conclusion { margin-top: 50px; font-size: 25px; }
  .solution-head { margin-bottom: 28px; }
  .solution-lead { padding-top: 22px; }
  .solution-lead h2 { font-size: 28px; }
  .solution-lead > div > p { font-size: 12px; line-height: 1.85; }
  .platform-panel { padding: 0; }
  .platform-image { padding: 22px; }
  .platform-image img { width: min(68%, 240px); border-radius: 14px; }
  .platform-capabilities li { min-height: 158px; padding: 18px; }
  .platform-capabilities span { margin-bottom: 15px; font-size: 11px; }
  .platform-capabilities h3 { font-size: 15px; }
  .platform-capabilities p { font-size: 12px; line-height: 1.7; }
  .service-intro { padding-bottom: 52px; }
  .service-intro-grid { padding: 28px 0 32px; }
  .service-title > p { margin-bottom: 13px; font-size: 11px; }
  .service-title h1 { font-size: 27px; line-height: 1.46; }
  .service-title > span { margin-top: 12px; font-size: 11px; }
  .service-lead p { font-size: 12px; line-height: 1.9; }
  .service-feature { border-radius: 22px; }
  .service-feature-image { padding: 12px; }
  .service-feature-image img { border-radius: 12px; }
  .service-value-list { display: block; padding: 4px 20px 14px; }
  .service-value-list article { padding: 16px 0; }
  .service-value-list h2, .service-value-list h3 { font-size: 17px; }
  .service-process { padding-block: 50px 56px; }
  .service-process-copy h2 { font-size: 28px; }
  .service-process-copy p { font-size: 13px; line-height: 1.9; }
  .service-process-visual { border-radius: 16px; }
  .service-collaboration { padding: 50px 0 60px; }
  .service-work-head { grid-template-columns: 1fr; gap: 20px; padding: 26px 0 30px; }
  .service-work-head h2 { font-size: 25px; line-height: 1.52; }
  .service-work-head div > span { margin-top: 10px; font-size: 11px; }
  .service-paths { grid-template-columns: 1fr; }
  .service-paths { gap: 12px; }
  .service-paths article { grid-template-columns: 50px 1fr; padding: 22px; }
  .service-paths article + article { padding: 22px; border: 1px solid rgba(7,95,87,.13); }
  .service-path-icon { width: 46px; height: 46px; border-radius: 14px; }
  .service-path-icon svg { width: 27px; height: 27px; }
  .service-paths h3 { font-size: 20px; }
  .service-paths a { grid-column: 1 / -1; width: 100%; min-width: 0; margin-top: 18px; }  .message-photo { width: min(190px, calc(100% - 44px)); margin-top: 22px; border-radius: 16px; }
  .message-copy { padding: 28px 22px 32px; }
  .message-copy h2 { margin-block: 20px; font-size: 29px; }
  .message-copy h2 span { white-space: nowrap; }
  .signature { margin-top: 22px; padding-top: 17px; }
  .members { margin-top: 60px; }
  .members-title { display: block; }
  .member-list { grid-template-columns: 1fr; }
  .member-list article { display: grid; flex-basis: 100%; grid-template-columns: 100px 1fr; grid-template-rows: auto auto 1fr; max-width: none; min-width: 0; column-gap: 16px; min-height: 130px; padding: 12px; }
  .member-list img { grid-row: 1 / span 3; width: 100px; height: 118px; margin: 0; border-radius: 14px; object-fit: cover; }
  .member-list p, .member-list h3, .member-list small { grid-column: 2; margin-inline: 0; }
  .member-list p { align-self: end; margin-bottom: 3px; font-size: 11px; }
  .member-list h3 { margin-bottom: 4px; font-size: 17px; }
  .member-list small { font-size: 11px; line-height: 1.5; }
  .advisory-network { display: block; padding: 25px 22px; border-radius: 22px; }
  .advisory-network > div { display: block; margin-bottom: 17px; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .advisory-network > div p { margin-bottom: 7px; }
  .advisory-network > div span { max-width: none; font-size: 18px; }
  .advisory-network ul { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .advisory-network li { min-height: 43px; padding: 13px 0 11px 15px; }
  .advisory-network li::before { top: 21px; left: 0; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .partner-logos > div { min-height: 84px; padding: 10px; }
  .partner-logos img { max-width: 100px; max-height: 48px; }
  .values { padding-block: 48px; }
  .values-header { align-items: center; padding-bottom: 18px; }
  .values-layout { gap: 22px; padding-top: 22px; }
  .value-list { padding: 0; }
  .value-list article { grid-template-columns: 78px 50px minmax(0, 1fr); min-height: 82px; }
  .value-list article { column-gap: 10px; }
  .english-site .value-list article { grid-template-columns: 102px 76px minmax(0, 1fr); column-gap: 8px; }
  .english-site .value-list article h3 { font-size: 23px; }
  .english-site .value-list article span { font-size: 12px; }
  .value-list article h3 { font-size: 27px; }
  .value-list article span { font-size: 14px; }
  .value-list article p { font-size: 11px; line-height: 1.65; }
  .values-story { min-height: 0; padding: 30px 25px; border-radius: 22px; }
  .values-story-inner { gap: 25px; }
  .ppie-note { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .ppie-note strong { font-size: 42px; }
  .ppie-note span { margin-top: 10px; font-size: 11px; }
  .values-copy h2 { font-size: 25px; line-height: 1.55; }
  .values-copy p { font-size: 12px; line-height: 1.9; }
  .news-head { gap: 12px; padding-bottom: 18px; }
  .news-head > div { flex: 1; }
  .news-head .section-kicker { font-size: 10px; letter-spacing: .12em; }
  .news-head > a { font-size: 11px; }
  .news-head > a span { margin-left: 8px; }
  .news-list a { grid-template-columns: 82px 55px 1fr; gap: 10px; padding: 14px 0; }
  .news-list a i { display: none; }
  .news-list p { grid-column: 1 / -1; }
  .company { padding-block: 56px; }
  .company-title h1, .company-title h2 { margin: 21px 0 15px; font-size: 28px; }
  .company-data > div { grid-template-columns: 95px 1fr; gap: 10px; }  .news-archive { padding: 100px 0 70px; }
  .archive-grid { gap: 34px; }
  .archive-years .back-home { display: none; }
  .archive-year + .archive-year { margin-top: 56px; }
  .year-heading h2 { font-size: 36px; }
  .archive-list > a, .archive-list > article { grid-template-columns: 82px 66px 1fr 20px; gap: 8px; min-height: 0; padding: 14px 2px; }
  .archive-list > article.is-static { grid-template-columns: 82px 66px 1fr; }
  .archive-list h3 { grid-column: 1 / -1; grid-row: 2; font-size: 13px; }
  .archive-list i { grid-column: 4; grid-row: 1; }
  .archive-list time { font-size: 11px; }
  .archive-tag { font-size: 11px; }
  .archive-home-cta { margin-top: 50px; }
  .news-detail-hero { padding: 105px 0 46px; }
  .news-detail-breadcrumb { margin-bottom: 32px; }
  .news-detail-hero h1 { font-size: 28px; line-height: 1.5; }  .policy-hero { min-height: 215px; padding: 96px 0 24px; }
  .policy-hero::before { right: -42%; bottom: -230px; width: 360px; height: 360px; }
  .policy-mark { right: -4px; bottom: 0; font-size: 60px; }
  .policy-heading { margin-top: 0; }
  .policy-heading h1 { font-size: 32px; }
  .policy-heading h1 small { margin-top: 7px; font-size: 12px; }
  .policy-body { padding-block: 42px 54px; }
  .policy-layout { gap: 28px; }
  .policy-toc { grid-template-columns: 1fr 1fr; }
  .policy-toc > a:not(.policy-switch) { align-items: center; font-size: 11px; }
  .policy-switch { width: 100%; }
  .policy-intro { padding: 24px 21px; border-radius: 20px; }
  .policy-intro p { font-size: 14px; line-height: 1.95; }
  .policy-content > section { padding: 40px 0; }
  .policy-number { top: 44px; }
  .policy-content h2 { margin-bottom: 22px; padding-left: 42px; font-size: 21px; }
  .policy-content > section > p:not(.policy-number) { font-size: 14px; }  .policy-content li { padding: 14px 8px 14px 45px; font-size: 13px; }
  .policy-end { align-items: flex-end; }
  .footer-contact { padding: 32px 14px 28px; }
  .footer-contact-heading h2 { font-size: 25px; }
  .footer-contact-heading p { font-size: 12px; line-height: 1.8; }
  .footer-contact-details { grid-template-columns: 1fr; margin-top: 18px; border-radius: 18px; }
  .footer-contact-item { grid-template-columns: 42px 1fr auto; min-height: 92px; padding: 15px 18px; column-gap: 14px; }
  .footer-contact-item + .footer-contact-item { border-top: 1px solid var(--line); border-left: 0; }
  .footer-contact-item > i { width: 42px; height: 42px; border-radius: 13px; }
  .footer-contact-item > strong { font-size: 18px; }
  .footer-contact-item + .footer-contact-item > strong { font-size: 11px; }
  .footer-marquee { padding-block: 24px 21px; }
  .footer-main { display: grid; grid-template-columns: 1fr; gap: 26px; padding-block: 32px 24px; }
  .footer-brand { display: block; }
  .footer-brand > a img { width: 140px; }
  .footer-statement { margin-top: 22px; font-size: 22px; }
  .footer-description { margin-bottom: 18px; }
  .footer-navigation { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
  .footer-office { grid-column: 1 / -1; }
  .footer-meta { grid-template-columns: 1fr auto; gap: 16px; }
  .footer-meta nav { grid-column: 1 / -1; grid-row: 2; gap: 18px; }
  .page-top { grid-column: 2; grid-row: 1; }
}

@media (max-width: 360px) {
  :root { --shell: calc(100% - 22px); }
  .site-header { width: calc(100vw - 12px); padding-left: 11px; column-gap: 5px; }
  .brand img { width: 100px; }
  .language-switch > * { min-width: 36px; padding: 0 7px; }
  html[lang="ja"] .section-heading h2.issue-heading { font-size: 30px; }
  .hero { padding-inline: 13px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 13px; }
  .hero-visual { right: -150px; height: 380px; }
  .intro h2, .section-heading h2, .solution-head h2, .for-whom h2, .message-copy h2, .contact h2 { font-size: 30px; }
  .solution-lead h2 { font-size: 27px; }  .value-list article { grid-template-columns: 70px 45px minmax(0, 1fr); }
  .value-list article h3 { font-size: 24px; }  .archive-list > a, .archive-list > article { grid-template-columns: 78px 64px 1fr 18px; }
  .archive-list > article.is-static { grid-template-columns: 78px 64px 1fr; }
  .policy-heading h1 { font-size: 30px; }  .footer-navigation { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap-inline: 12px; }
  .footer-column > a { overflow-wrap: anywhere; }
}

@media (max-width: 400px) {
  .section-heading h2 .issue-heading-line:last-child b { display: block; }
}

@media (min-width: 821px) {
  body.subpage.no-page-hero main > section:first-child { padding-top: 125px; }
}

@media (max-width: 820px) {
  body.subpage.no-page-hero main > section:first-child { padding-top: 110px; }
}

@media (max-width: 560px) {
  .footer-contact { padding: 24px 14px 20px; }
  .footer-contact-heading h2 { font-size: 22px; }
  .footer-contact-heading p { display: none; }
  .footer-contact-details { margin-top: 12px; }
  .footer-contact-item { min-height: 76px; padding: 11px 14px; }
  .footer-contact-item > i { width: 38px; height: 38px; }
  .footer-contact-item > strong { font-size: 17px; }
  .footer-contact-item + .footer-contact-item > strong { font-size: 11px; }
  .footer-main { gap: 18px; padding: 22px 0 16px; }
  .footer-brand { display: none; }
  .footer-statement { display: none; }
  .footer-navigation { gap: 18px; }
  .footer-column > p { margin-bottom: 4px; padding-bottom: 5px; }
  .footer-column > a { min-height: 36px; padding-block: 2px; font-size: 12px; }
  .page-top { display: none; }
  .footer-meta { grid-template-columns: 1fr; gap: 5px; padding: 8px 0 10px; }
  .footer-meta nav { grid-column: 1; grid-row: 2; gap: 16px; }
}

@media (max-width: 560px) {
  body.subpage.no-page-hero main > section:first-child { padding-top: 100px; }
}

@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
  .hero .reveal { animation: none; }
}

@media (max-width: 820px) and (scripting: none) {
  .site-header {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    height: auto;
    margin: 10px auto 0;
    padding: 14px 18px;
    border-color: rgba(23, 51, 47, .09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(23, 51, 47, .08);
    transform: none;
  }
  .menu-button { display: none; }
  .mobile-nav {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    padding: 12px 0 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .flow-particles { display: none; }
  .network-lines path, .network-nodes circle { animation: none; }
  .float-card { animation: none; }
}

/* Legibility and interaction baseline */
.desktop-nav a { min-height: 44px; }
.desktop-nav a small { font-size: 11px; }
.float-card small,
.hero-foot p,
.card-label,
.platform-capabilities span,
.audience-top p,
.service-title > p,
.service-value-list span,
.service-paths article > p,
.message-photo span,
.member-list p,
.advisory-network > div p,
.partners-label,
.news-tag,
.archive-years > p,
.archive-years > a span,
.year-heading span,
.archive-tag,
.policy-toc > p,
.policy-toc > a span,
.policy-intro > span,
.policy-number,
.policy-content li::before,
.policy-end,
.footer-contact-label,
.footer-contact-item > span,
.footer-column > p,
.footer-column > a span,
.footer-meta,
.page-top { font-size: 11px; }

.platform-capabilities p,
.service-value-list p,
.service-paths article > span,
.values-copy p,
.footer-description { font-size: 13px; }

.service-paths a,
.signature span,
.members-title p,
.member-list small,
.advisory-network li,
.ppie-note span,
.archive-list time,
.news-detail-breadcrumb,
.policy-toc > a:not(.policy-switch),
.policy-switch,
.policy-data dt,
.company-map-link,
.footer-office address,
.footer-office > a { font-size: 12px; }

.archive-list h3 { font-size: 14px; }
.news-list a { min-height: 94px; }
.archive-list > a, .archive-list > article { min-height: 96px; }
.archive-years > a:not(.back-home),
.archive-years .back-home,
.policy-toc > a:not(.policy-switch),
.policy-switch,
.company-map-link,
.news-detail-source,
.footer-column > a,
.page-top { min-height: 44px; }
.footer-column > a { display: flex; align-items: center; padding-block: 9px; font-size: 13px; }
.page-top i { width: 38px; height: 38px; }

@media (max-width: 820px) {
  .eyebrow,
  .platform-capabilities span,
  .service-title > p,
  .member-list p,
  .ppie-note span,
  .archive-list time,
  .archive-tag,
  .policy-data dt { font-size: 11px; }
  .platform-capabilities p,
  .service-lead p,
  .service-value-list p,
  .service-paths article > span,
  .audience-card > p:not(.audience-number),
  .member-list small,
  .value-list article p,
  .values-copy p,
  .page-heading > p,
  .policy-content > section > p:not(.policy-number),
  .policy-toc > a:not(.policy-switch),
  .policy-data dd,
  .policy-content li,
  .footer-contact-heading p,
  .footer-contact-item + .footer-contact-item > strong { font-size: 13px; }
  .policy-content > section > p:not(.policy-number),
  .policy-data dd,
  .policy-content li { font-size: 14px; }
}

@media (max-width: 600px) {}
/* ---------- 404 ---------- */
.error-page {
  min-height: 100svh;
  background: var(--cream, #f5f1e7);
}

.error-page-main {
  width: min(1120px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.error-page-brand {
  display: inline-flex;
  width: clamp(150px, 17vw, 220px);
}

.error-page-brand img {
  width: 100%;
  height: auto;
}

.error-page-copy {
  align-self: center;
  max-width: 680px;
  padding: 64px 0;
}

.error-page-copy > p:first-child {
  margin: 0 0 18px;
  color: var(--green, #07877a);
  font: 700 clamp(1rem, 2vw, 1.25rem)/1 "DM Sans", sans-serif;
  letter-spacing: .16em;
}

.error-page-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
}

.error-page-copy h1 small,
.error-page-copy > p span {
  display: block;
}

.error-page-copy h1 small {
  margin-top: 12px;
  color: var(--green, #07877a);
  font: 600 .52em/1.2 "DM Sans", sans-serif;
}

.error-page-copy > p span {
  margin-top: 5px;
}

.error-page-copy > p:not(:first-child) {
  margin: 24px 0 0;
  color: var(--text-soft, #49645f);
  line-height: 1.9;
}

.error-page-copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .error-page-main {
    width: min(100% - 32px, 1120px);
  }

  .error-page-copy nav {
    display: grid;
  }
}

/* Mobile footer: compact without sacrificing tap targets */
@media (max-width: 560px) {
  .footer-contact { padding: 18px 14px 16px; }
  .footer-contact-heading h2 { font-size: 20px; line-height: 1.4; }
  .footer-contact-details { margin-top: 10px; border-radius: 16px; }
  .footer-contact-item { grid-template-columns: 34px minmax(0, 1fr) 16px; min-height: 66px; padding: 8px 12px; column-gap: 10px; }
  .footer-contact-item + .footer-contact-item { min-height: 78px; }
  .footer-contact-item > i { width: 34px; height: 34px; border-radius: 11px; font-size: 14px; }
  .footer-contact-item > span { font-size: 10px; }
  .footer-contact-item > strong { font-size: 16px; line-height: 1.35; }
  .footer-contact-item + .footer-contact-item > strong { font-size: 11px; line-height: 1.45; }
  .footer-contact-item > b { font-size: 13px; }

  .footer-main { gap: 0; padding: 18px 0 10px; }
  .footer-navigation { gap: 8px 18px; }
  .footer-column > p { margin-bottom: 2px; padding-bottom: 5px; }
  .footer-column > a { min-height: 44px; padding-block: 0; font-size: 12px; }
  .site-footer .footer-column > a.is-current { color: #9bd8c6; }

  .footer-meta { gap: 5px; padding: 7px 0 calc(12px + env(safe-area-inset-bottom, 0px)); line-height: 1.5; }
  .footer-meta > p { font-size: 11px; }
  .footer-meta nav { flex-wrap: wrap; gap: 8px 16px; }
  .footer-policy-disabled small { font-size: 9px; }
}

/* Responsive editorial rhythm: preserve phrases and readable line lengths. */
:where(h1, h2, h3, p, li, dd, address, small) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(p, li, dd, address, small) {
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  html[lang="ja"] :where(h1, h2, h3, .issue-conclusion, .footer-statement) {
    word-break: auto-phrase;
  }
}

.intro-copy,
.section-heading > p:last-child,
.solution-lead > div,
.service-lead,
.service-process-copy,
.page-heading > p,
.archive-heading > p {
  max-width: 65ch;
}

/* At tablet widths the hero artwork becomes atmosphere instead of empty space. */
@media (min-width: 561px) and (max-width: 820px) {
  .hero {
    position: relative;
    min-height: 680px;
    padding: 122px max(28px, 6vw) 78px;
  }

  .hero-copy {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    top: 118px;
    right: -105px;
    width: 520px;
    height: 500px;
    margin: 0;
    opacity: .075;
    filter: saturate(.75);
    pointer-events: none;
  }

  .hero-copy,
  .hero-noise {
    z-index: 1;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(40px, 12.5vw, 45px);
  }

  .english-site .hero h1 {
    font-size: clamp(36px, 11.5vw, 42px);
    text-wrap: balance;
  }

  .member-list article {
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 0;
    row-gap: 0;
  }

  .member-list img {
    grid-row: 1 / span 2;
    width: 86px;
    height: 104px;
  }

  .member-list p,
  .member-list h3 {
    grid-column: 2;
  }

  .member-list small {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 12px 0 0;
    padding: 12px 2px 2px;
    border-top: 1px solid var(--line);
    line-height: 1.65;
  }

  .english-site .issue-conclusion {
    font-size: clamp(21px, 6.8vw, 25px);
  }

  .english-site .issue-conclusion em {
    padding-inline: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .platform-capabilities {
    grid-template-columns: 1fr;
  }

  .platform-capabilities li {
    min-height: 0;
    padding: 20px;
  }

  .platform-capabilities li:nth-child(even) {
    border-left: 0;
  }

  .platform-capabilities li:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .value-list article,
  .english-site .value-list article {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
    grid-template-areas:
      "value-name value-label"
      "value-copy value-copy";
    min-height: 0;
    padding: 16px 0;
    column-gap: 14px;
    row-gap: 9px;
  }

  .value-list article h3 {
    grid-area: value-name;
  }

  .value-list article span {
    grid-area: value-label;
  }

  .value-list article p {
    grid-area: value-copy;
    font-size: 13px;
  }

  .company-data > div,
  .policy-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }
}

/* Final section rhythm: label → rule → content uses one shared interval. */
:root {
  --section-label-gap: 28px;
}

.section-kicker {
  min-height: 36px;
  margin-bottom: 0;
  padding-bottom: 14px;
  line-height: 1.4;
}

.intro-grid,
.solution-lead,
.service-intro-grid,
.service-process-grid,
.service-work-head,
.values-layout {
  padding-top: var(--section-label-gap);
}

.solution-lead,
.service-intro-grid,
.service-process-grid,
.service-work-head {
  align-items: start;
}

.section-heading h2,
.centered h2,
.company-title h1,
.company-title h2,
.message-copy h2 {
  margin-top: var(--section-label-gap);
}

@media (min-width: 821px) {
  .section-heading > p:last-child {
    align-self: start;
    margin-top: var(--section-label-gap);
  }
}

@media (max-width: 560px) {
  :root {
    --section-label-gap: 22px;
  }
}

/* Conversion, hierarchy, and interaction polish. */
:root {
  --shadow-action: 0 10px 24px rgba(23, 51, 47, .14);
  --shadow-card: 0 16px 42px rgba(23, 51, 47, .07);
}

.button-primary {
  box-shadow: var(--shadow-action);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(7, 95, 87, .2);
}

.section-more {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 15px;
  border: 1px solid rgba(23, 51, 47, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.section-more span,
.news-head > a span {
  transition: transform .2s;
}

.section-more:hover {
  border-color: var(--green);
  background: #fff;
  transform: translateY(-2px);
}

.section-more:hover span,
.news-head > a:hover span {
  transform: translate(2px, -2px);
}

.message-copy > p:not(.section-kicker) {
  margin-bottom: 13px;
  line-height: 1.82;
}

.footer-contact-item:first-child {
  background: var(--mint-light);
}

.footer-contact-item:first-child strong {
  color: var(--green-dark);
}

.footer-policy-disabled small {
  font-size: 10px;
}

/* News index: one concise page title before the archive. */
.archive-intro {
  position: relative;
  padding: 125px 0 50px;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 51, 47, .08);
  background: linear-gradient(135deg, #fff 48%, var(--mint-light));
}

.archive-intro::after {
  position: absolute;
  right: -90px;
  bottom: -230px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(8, 124, 112, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(8, 124, 112, .025), 0 0 0 96px rgba(8, 124, 112, .018);
  content: "";
}

.archive-intro .section-shell {
  position: relative;
  z-index: 1;
}

.archive-intro-head {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 10%;
  align-items: start;
}

.archive-intro h1 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.05em;
}

.archive-intro-head > p {
  max-width: 44ch;
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.news-archive {
  padding-top: 72px;
}@media (min-width: 821px) {
  .footer-contact-details {
    grid-template-columns: 1.05fr .95fr;
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 64px;
  }

  .language-switch,
  .menu-button {
    height: 44px;
  }

  .menu-button {
    width: 44px;
  }

  .archive-intro {
    padding: 110px 0 42px;
  }

  .archive-intro-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .archive-intro h1 {
    font-size: clamp(38px, 8vw, 52px);
  }

  .archive-intro-head > p {
    margin-top: 0;
    font-size: 13px;
  }

  .news-archive {
    padding-top: 58px;
  }
}

@media (max-width: 560px) {
  .archive-intro {
    padding: 100px 0 34px;
  }

  .archive-intro::after {
    right: -180px;
    bottom: -245px;
  }

  .archive-intro h1 {
    font-size: 36px;
  }

  .news-archive {
    padding-top: 44px;
  }  .footer-contact-item > span,
  .footer-policy-disabled small {
    font-size: 10px;
  }

  .footer-meta > p {
    font-size: 11px;
  }
}

/* Issue cards: keep evidence visible without adding a footer row. */
.issue-card {
  min-height: 0;
  padding: 22px 24px 19px;
}

.issue-icon {
  margin-bottom: 14px;
}

.card-label {
  margin-bottom: 5px;
}

.issue-card h3 {
  margin-bottom: 6px;
}

.big-number span {
  font-size: clamp(44px, 4.8vw, 60px);
}

.issue-card > p:not(.card-label):not(.big-number) {
  margin-top: 6px;
  line-height: 1.65;
}

.issue-source {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 0;
  margin: 0;
  padding: 4px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .issue-card {
    padding: 20px 18px 17px;
  }

  .issue-source {
    top: 20px;
    right: 18px;
    font-size: 11px;
  }
}

/* Platform lead: use the full measure for the promise, then a readable narrative. */
.solution-lead {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.solution-lead > div {
  max-width: 76ch;
  padding-bottom: 0;
}

.solution-lead > div > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}

.solution-highlight {
  color: var(--green-dark);
  font-weight: 700;
}

@media (min-width: 561px) {
  html[lang="ja"] .solution-lead h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .solution-lead {
    gap: 14px;
  }

  .solution-lead > div > p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* Narrative system: natural wrapping, readable measures, and restrained emphasis. */
.content-highlight {
  color: var(--green-dark);
  font-weight: 700;
}

.issue .content-highlight,
.values-story .content-highlight {
  color: #fff;
}

.intro-grid,
.section-heading,
.service-intro-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.intro-grid {
  padding-top: var(--section-label-gap);
}

.intro h2,
.section-heading h2 {
  margin-bottom: 0;
}

.intro-copy,
.section-heading > p:last-child,
.service-lead {
  max-width: 76ch;
}

.intro-copy {
  padding-top: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}

.intro-copy p + p {
  margin-top: 20px;
}

.section-heading > p:last-child {
  align-self: start;
  margin: 0 0 34px;
  color: #c5d6d2;
  font-size: 15px;
  line-height: 1.95;
}

.service-intro-grid {
  padding-bottom: 42px;
}

.service-lead {
  padding-bottom: 0;
}

.service-lead p,
.service-process-copy p {
  font-size: 15px;
  line-height: 1.95;
}

.service-work-head p,
.values-copy p {
  font-size: 14px;
  line-height: 1.9;
}

@media (min-width: 821px) {
  html[lang="ja"] .intro h2 {
    font-size: clamp(34px, 4.2vw, 52px);
    white-space: nowrap;
  }

  .intro-grid {
    width: 100%;
    margin-inline: 0;
  }

  .intro h2 {
    text-align: left;
  }

  .intro-copy {
    width: min(100%, 1100px);
    margin-right: auto;
    margin-left: 0;
  }

  .section-heading > p:last-child,
  .solution-lead > div,
  .service-lead {
    width: min(100%, 1100px);
    max-width: none;
    margin-right: auto;
    margin-left: 0;
  }

  .section-heading > p:last-child {
    margin-bottom: 34px;
  }

  .company-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 8%;
  }

  .english-site .company-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6%;
  }

  .english-site .intro h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    white-space: nowrap;
  }

  .news-list .title-line,
  .archive-list .title-line {
    display: inline;
  }

  .section-heading h2 .issue-heading-line {
    display: inline;
    white-space: normal;
  }

  .section-heading h2 .issue-heading-line + .issue-heading-line {
    margin-left: .3em;
  }

  html[lang="ja"] .service-title h1,
  html[lang="ja"] .service-process-copy h2 {
    white-space: nowrap;
  }

  .message-copy h2 span {
    display: inline;
    white-space: normal;
  }

  .english-site .message-copy h2 span + span::before {
    content: " ";
  }
}

@media (max-width: 820px) {
  .intro-grid,
  .section-heading,
  .service-intro-grid {
    gap: 18px;
  }

  .section-heading h2 {
    margin-bottom: 0;
  }

  .service-intro-grid {
    padding-bottom: 38px;
  }
}

@media (max-width: 560px) {
  html[lang="ja"] .hero h1 {
    font-size: clamp(36px, 11.2vw, 42px);
  }

  html[lang="ja"] .hero h1 em {
    white-space: nowrap;
  }

  .intro-copy,
  .section-heading > p:last-child,
  .service-lead p,
  .service-process-copy p,
  .service-work-head p,
  .values-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .section-heading > p:last-child {
    margin-bottom: 28px;
  }

  .message-copy h2 span {
    white-space: normal;
  }
}

/* Title wrapping: preserve semantic phrases and balance long headings. */
.hero h1,
.intro h2,
.section-heading h2,
.solution-lead h2,
.service-title h1,
.service-process-copy h2,
.service-work-head h2,
.values-copy h2,
.message-copy h2,
.archive-intro h1,
.news-detail-hero h1,
.policy-heading h1 {
  text-wrap: balance;
}

.title-line,
.english-site .hero h1 > span {
  display: block;
}

.english-site .hero h1 > span {
  white-space: nowrap;
}

.english-site .hero h1 em {
  display: inline;
}

.english-site .values-copy h2 {
  font-size: 21px;
  line-height: 1.48;
}

.english-site .values-copy .title-line {
  white-space: nowrap;
}

.english-site .service-overview-graphic {
  width: 100%;
  aspect-ratio: 1801 / 790;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.english-site .service-feature-image {
  align-content: center;
  gap: 0;
}

.english-site .service-overview-graphic img {
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0 0;
}

.service-graphic-caption {
  width: 100%;
  margin: 0;
  padding: 9px 12px;
  color: #fff;
  background: var(--green);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(10px, 1.15vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 560px) {
  .company {
    padding-bottom: 32px;
  }

  .values {
    padding: 40px 0 52px;
    border-top: 1px solid rgba(7, 95, 87, .16);
    background: var(--mint-light);
  }

  .english-site .hero h1 {
    font-size: clamp(31px, 9.3vw, 35px);
    line-height: 1.15;
  }

  .english-site .hero h1 em {
    white-space: nowrap;
  }

  .english-site .section-heading h2.issue-heading {
    font-size: clamp(24px, 6.8vw, 27px);
    line-height: 1.32;
  }

  .english-site .message-copy h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .english-site .message-copy h2 span {
    display: block;
    white-space: nowrap;
  }

  html[lang="ja"] .issue-conclusion {
    font-size: clamp(19px, 5.6vw, 21px);
  }

  html[lang="ja"] .issue-conclusion em {
    padding-inline: 8px;
  }

  .news-detail-hero h1 {
    font-size: clamp(24px, 6.8vw, 26px);
    line-height: 1.55;
  }

  .service-graphic-caption {
    padding: 7px 9px;
    font-size: 10px;
  }
}

/* ニュース一覧は見出しブロックを持たないため、本文の上余白で固定ヘッダーとの間隔を確保する。 */
.news-archive { padding-top: 150px; }
@media (max-width: 820px) { .news-archive { padding-top: 118px; } }
@media (max-width: 560px) { .news-archive { padding-top: 96px; } }
