@font-face {
  font-family: "KleeOneAndStore";
  src: url("./assets/klee-one-headlines-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "InterAndStore";
  src: url("./assets/inter-latin.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --canvas: #f7f8f9;
  --warm: #f7f6f3;
  --ink: #121a22;
  --ink-2: #2d3741;
  --muted: #606b76;
  --navy: #172a3d;
  --navy-2: #20384e;
  --accent: #c64d30;
  --accent-dark: #a83b23;
  --line: #dfe3e7;
  --line-dark: #aeb7c0;
  --shell: 1180px;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3, dl, dd, figure, ul, ol { margin-top: 0; }

:focus-visible {
  outline: 3px solid #2b78a0;
  outline-offset: 4px;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  gap: 11px;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
}

.brand-name {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-name small {
  margin-right: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #36414b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  transition: color .18s ease, background .18s ease;
}

.header-contact:hover { color: #fff; background: var(--navy); }
.nav-toggle, .mobile-nav { display: none; }

/* Shared */
.section-label {
  margin-bottom: 17px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
}

.section-heading h2,
.purpose-copy h2,
.contact-layout h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.15vw, 42px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.heading-line { white-space: nowrap; }

.section-heading > p:last-child,
.section-heading-split > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  gap: 28px;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.button-primary { color: #fff; background: var(--navy); }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { border-color: var(--line-dark); color: var(--ink); background: #fff; }
.button-secondary:hover { border-color: var(--navy); }

.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 24px;
}

.inline-link span { font-size: 17px; font-weight: 400; }

/* Hero */
.hero {
  padding: 68px 0 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 64px;
  padding-bottom: 56px;
}

.hero-copy { min-width: 0; }

.hero-company {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 17px;
}

.hero-company::before {
  width: 26px;
  height: 2px;
  flex: none;
  background: var(--accent);
  content: "";
}

.hero-company span {
  padding-left: 17px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .04em;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(50px, 4.65vw, 66px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.34;
}

.hero-line { white-space: nowrap; }

.hero h1 strong {
  color: var(--navy);
  font-weight: 800;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}

.hero-media {
  position: relative;
  margin: 0;
  border-top: 4px solid var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--warm);
}

.hero-media picture,
.hero-media img { width: 100%; }

.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.015);
}

.hero-media figcaption {
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 17px 19px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.6;
  gap: 20px;
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  white-space: nowrap;
}

.corporate-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: -1px;
  border-top: 1px solid var(--line);
}

.corporate-summary > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 78px;
  padding: 15px 24px;
  border-right: 1px solid var(--line);
}

.corporate-summary > div:first-child { border-left: 1px solid var(--line); }
.corporate-summary dt { color: var(--muted); font-size: 11px; font-weight: 700; }
.corporate-summary dd { margin: 0; color: var(--navy); font-size: 13px; font-weight: 800; }

/* Company */
.company-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 110px;
}

.company-copy { min-width: 0; }
.company-intro { margin-bottom: 19px; color: var(--navy); font-size: 22px; font-weight: 800; line-height: 1.7; }
.company-copy > p:not(.company-intro) { max-width: 720px; margin-bottom: 35px; color: var(--muted); font-size: 14px; line-height: 2.05; }

.company-facts {
  margin-bottom: 27px;
  border-top: 1px solid var(--navy);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.company-facts dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.company-facts dd { margin: 0; color: var(--ink-2); font-size: 13px; font-weight: 700; }

/* Business */
.business-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.business-list { border-top: 2px solid var(--navy); }

.business-item {
  display: grid;
  grid-template-columns: 72px minmax(300px, .85fr) minmax(360px, 1fr);
  align-items: center;
  min-height: 145px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.business-item p { margin-bottom: 0; }
.business-number { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.business-type { margin-bottom: 7px !important; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.business-item h3 { margin-bottom: 0; color: var(--navy); font-size: 23px; line-height: 1.45; }
.business-item > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.9; }
.section-link-row { display: flex; justify-content: flex-end; margin-top: 29px; }

/* Products */
.products-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line);
}

.product-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-card a { display: grid; grid-template-columns: 1fr; min-height: 0; }
.product-card figure { min-width: 0; margin: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: #e9edef; }

.product-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.82);
}

.product-body { display: flex; flex-direction: column; align-items: flex-start; min-height: 178px; padding: 25px 27px 23px; }
.product-category { margin-bottom: 12px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.product-body h3 { margin-bottom: 12px; color: var(--navy); font-size: 21px; line-height: 1.45; }
.product-body > p:not(.product-category) { margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.product-link { margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--line-dark); color: var(--ink-2); font-size: 13px; font-weight: 800; }
.product-link span { margin-left: 14px; font-size: 15px; font-weight: 400; }
.product-card a:hover .product-link { border-color: var(--navy); color: var(--navy); }

/* Purpose */
.purpose-section {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 92px;
}

.purpose-media { margin: 0; border: 1px solid #cfc6b8; background: #e8dfd1; }
.purpose-media picture, .purpose-media img { width: 100%; }
.purpose-media img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 74% center; filter: saturate(.74) contrast(1.02); }
.purpose-copy h2 { margin-bottom: 21px; }
.purpose-lead { margin-bottom: 17px; color: var(--navy); font-size: 18px; font-weight: 800; line-height: 1.8; }
.purpose-copy > p:not(.section-label, .purpose-lead) { margin-bottom: 27px; color: var(--muted); font-size: 14px; line-height: 2; }

.purpose-principles { list-style: none; margin-bottom: 0; padding: 0; border-top: 1px solid #bfb6a8; }
.purpose-principles li { display: grid; grid-template-columns: 52px 1fr; padding: 14px 0; border-bottom: 1px solid #d4cbbd; }
.purpose-principles span { color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.purpose-principles b { color: var(--navy); font-size: 13px; }

/* Approach */
.approach-section {
  padding: 84px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.approach-list { list-style: none; margin-bottom: 0; padding: 0; border-top: 2px solid var(--navy); }

.approach-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(250px, .62fr);
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.approach-number { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.approach-list h3 { margin-bottom: 7px; color: var(--navy); font-size: 19px; }
.approach-list div > p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.approach-output {
  margin-bottom: 0;
  padding: 14px 16px;
  border-left: 2px solid var(--line-dark);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.approach-output span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.approach-note { margin: 25px 0 0 auto; color: var(--muted); font-size: 13px; text-align: right; }

/* Governance */
.governance-section {
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--line);
  background: #edf1f3;
}

.governance-layout {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: 96px;
}

.governance-layout .section-heading > p:last-child { margin-top: 24px; }
.governance-content { min-width: 0; }
.governance-intro { margin-bottom: 30px; color: var(--navy); font-size: 17px; font-weight: 800; line-height: 1.9; }

.governance-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin-bottom: 33px;
  padding: 0;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
}

.governance-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 166px;
  padding: 23px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.54);
  gap: 11px;
}

.governance-points li > span { padding-top: 3px; color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.governance-points b { display: block; margin-bottom: 8px; color: var(--navy); font-size: 14px; line-height: 1.65; }
.governance-points p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }

.policy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line);
}

.policy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 14px 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  gap: 15px;
}

.policy-links i { color: var(--accent-dark); font-size: 16px; font-style: normal; font-weight: 400; }
.policy-links a:hover { background: #f9fafb; }

/* News */
.news-section { padding: 66px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.news-layout { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 96px; }
.news-content { min-width: 0; }

.news-item {
  display: grid;
  grid-template-columns: 118px 1fr 24px;
  align-items: center;
  min-height: 84px;
  padding: 18px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.news-item time { color: var(--muted); font-size: 11px; font-weight: 700; }
.news-item > span { color: var(--ink-2); font-size: 13px; font-weight: 700; line-height: 1.7; }
.news-item i { color: var(--accent-dark); font-size: 17px; font-style: normal; }
.news-content .inline-link { margin-top: 23px; }

/* Contact */
.contact-section { padding: 78px 0; background: var(--navy); color: #fff; }
.contact-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); align-items: center; gap: 96px; }
.contact-layout .section-label { color: #ef987f; }
.contact-layout h2 { color: #fff; font-size: clamp(32px, 3vw, 40px); }
.contact-layout > div:last-child > p { max-width: 610px; margin-bottom: 23px; color: #cbd4dc; font-size: 13px; line-height: 1.95; }
.button-contact { min-width: 240px; color: var(--navy); background: #fff; }
.button-contact:hover { background: #edf1f3; }

/* Footer */
.site-footer { padding: 64px 0 0; color: #c6ced5; background: #0f1c29; }
.footer-main { display: grid; grid-template-columns: minmax(250px, 1fr) minmax(560px, 1.4fr); gap: 90px; padding-bottom: 56px; }
.brand-footer .brand-logo { width: 150px; filter: brightness(0) invert(1); }
.footer-brand > p { margin: 20px 0 0; color: #8f9ba6; font-size: 12px; line-height: 1.85; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links p { margin-bottom: 13px; color: #71808d; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  color: #c5cdd4;
  font-size: 12px;
  line-height: 1.6;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); color: #71808d; font-size: 10px; }
.footer-bottom p { margin-bottom: 0; }

/* Restrained motion: headings only */
@media (prefers-reduced-motion: no-preference) {
  .motion-enabled [data-reveal="section"] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }

  .motion-enabled [data-reveal="section"].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Tablet and mobile navigation */
@media (max-width: 1080px) {
  .desktop-nav, .header-contact { display: none; }

  .header-inner { grid-template-columns: 1fr auto; }

  .nav-toggle {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--navy);
    background: var(--navy);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 13px;
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform .2s ease, top .2s ease;
  }

  .nav-toggle span:first-child { top: 18px; }
  .nav-toggle span:last-child { top: 26px; }
  .nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 990;
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(100dvh - 76px);
    min-height: calc(100vh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px max(28px, calc((100vw - 720px) / 2)) max(44px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.985);
  }

  .mobile-nav[hidden] { display: none !important; }

  .mobile-nav > a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-nav > a span { color: var(--accent-dark); font-size: 10px; }

  .mobile-nav .mobile-nav-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 20px;
    border: 0;
    color: #fff;
    background: var(--navy);
  }

  .mobile-nav-contact::after { content: "→"; font-size: 18px; font-weight: 400; }

  .hero-layout { grid-template-columns: minmax(0, .96fr) minmax(390px, 1.04fr); gap: 38px; }
  .hero h1 { font-size: clamp(40px, 5.3vw, 50px); }
  .company-layout, .governance-layout { gap: 64px; }
  .product-body { min-height: 178px; }
}

@media (max-width: 900px) {
  .section-heading-split,
  .company-layout,
  .purpose-layout,
  .governance-layout,
  .news-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero { padding-top: 52px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 720px; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .company-intro { max-width: 720px; }
  .business-item { grid-template-columns: 58px minmax(250px, .9fr) 1fr; }
  .purpose-media { max-width: 720px; }
  .governance-layout .section-heading > p:last-child { max-width: 700px; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .hero-media img { aspect-ratio: 4 / 3; object-position: center; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  .shell { width: min(100% - 32px, var(--shell)); }

  .site-header {
    height: calc(68px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .header-inner { width: calc(100% - 28px); gap: 16px; }
  .brand-logo { width: 126px; }

  .mobile-nav {
    top: calc(68px + env(safe-area-inset-top));
    height: calc(100dvh - 68px - env(safe-area-inset-top));
    min-height: calc(100vh - 68px - env(safe-area-inset-top));
    padding: 16px 18px max(40px, env(safe-area-inset-bottom));
  }

  .hero { padding-top: 42px; }
  .hero-layout { gap: 31px; padding-bottom: 37px; }

  .hero-company {
    display: grid;
    grid-template-columns: 22px 1fr;
    margin-bottom: 19px;
    font-size: 12px;
    gap: 10px;
  }

  .hero-company::before { width: 22px; }
  .hero-company span { grid-column: 2; padding: 0; border: 0; font-size: 10px; }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(33px, 9.2vw, 40px);
    letter-spacing: -.04em;
    line-height: 1.4;
  }

  .hero-lead { font-size: 14px; line-height: 1.95; }

  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .button { min-height: 48px; padding-inline: 15px; font-size: 12px; gap: 12px; }

  .hero-media { border-top-width: 3px; }
  .hero-media figcaption { display: block; min-height: 0; padding: 13px 14px; font-size: 11px; }
  .hero-media figcaption span { display: block; margin-bottom: 3px; }

  .corporate-summary { grid-template-columns: 1fr; }
  .corporate-summary > div { grid-template-columns: 80px 1fr; min-height: 60px; padding: 12px 15px; border-left: 1px solid var(--line); }
  .corporate-summary dt { font-size: 11px; }
  .corporate-summary dd { font-size: 13px; }

  .company-section,
  .business-section,
  .products-section,
  .purpose-section,
  .approach-section,
  .governance-section { padding: 64px 0 68px; }

  .news-section { padding: 52px 0 56px; }
  .section-label { margin-bottom: 13px; font-size: 11px; }

  .section-heading h2,
  .purpose-copy h2,
  .contact-layout h2 { font-size: clamp(29px, 8.1vw, 35px); line-height: 1.45; }

  .section-heading-split { margin-bottom: 31px; }
  .section-heading-split > p,
  .section-heading > p:last-child { font-size: 14px; line-height: 1.95; }

  .company-intro { margin-bottom: 16px; font-size: 18px; }
  .company-copy > p:not(.company-intro) { margin-bottom: 28px; font-size: 14px; }
  .company-facts > div { grid-template-columns: 86px 1fr; padding: 14px 0; gap: 16px; }
  .company-facts dt, .company-facts dd { font-size: 12.5px; }

  .business-item {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 23px 0;
    gap: 7px 11px;
  }

  .business-item > p:last-child { grid-column: 2; font-size: 14px; }
  .business-type { font-size: 10px; }
  .business-item h3 { font-size: 19px; }
  .section-link-row { justify-content: flex-start; margin-top: 24px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card a { grid-template-columns: 1fr; min-height: 0; }
  .product-card figure { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-card img { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .product-body { min-height: 174px; padding: 19px 16px 17px; }
  .product-category { margin-bottom: 7px; font-size: 10px; }
  .product-body h3 { margin-bottom: 8px; font-size: 17px; }
  .product-body > p:not(.product-category) { margin-bottom: 12px; font-size: 13px; line-height: 1.8; }
  .product-link { font-size: 12px; }

  .purpose-layout { gap: 31px; }
  .purpose-media img { aspect-ratio: 4 / 3; object-position: 72% center; }
  .purpose-lead { font-size: 16px; }
  .purpose-copy > p:not(.section-label, .purpose-lead) { font-size: 14px; }

  .approach-list li {
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 22px 0;
    gap: 8px 12px;
  }

  .approach-list h3 { font-size: 17px; }
  .approach-list div > p { font-size: 14px; line-height: 1.85; }
  .approach-output { grid-column: 2; margin-top: 4px; padding: 10px 12px; font-size: 12.5px; }
  .approach-note { font-size: 12.5px; line-height: 1.8; text-align: left; }

  .governance-layout { gap: 28px; }
  .governance-intro { font-size: 15px; }
  .governance-points { grid-template-columns: 1fr; }
  .governance-points li { min-height: 0; padding: 19px 16px; }
  .governance-points b { font-size: 13px; }
  .governance-points p { font-size: 13px; }
  .policy-links { grid-template-columns: 1fr; }

  .news-layout { gap: 24px; }
  .news-item { grid-template-columns: 1fr 24px; gap: 8px 12px; }
  .news-item time { grid-column: 1; }
  .news-item > span { grid-column: 1; font-size: 13.5px; }
  .news-item i { grid-column: 2; grid-row: 1 / 3; }

  .contact-section { padding: 60px 0 64px; }
  .contact-layout { gap: 22px; }
  .contact-layout > div:last-child > p { font-size: 14px; }
  .button-contact { min-width: 0; width: 100%; }

  .site-footer { padding-top: 48px; }
  .footer-main { gap: 38px; padding-bottom: 39px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-links p { font-size: 10px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { display: grid; gap: 5px; }
}

/* Final hero */
.hero.hero-future {
  position: relative;
  isolation: isolate;
  display: block;
  height: calc(100svh - 76px);
  min-height: 650px;
  max-height: 880px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf6fa;
}

.hero-future-media,
.hero-future-scrim {
  position: absolute;
  inset: 0;
}

.hero-future-media {
  z-index: -2;
  overflow: hidden;
}

.hero-future-media picture,
.hero-future-media img {
  width: 100%;
  height: 100%;
}

.hero-future-media img {
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-future-scrim {
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(239,249,253,.82) 0%, rgba(239,249,253,.56) 35%, rgba(239,249,253,.08) 72%),
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 42%);
}

.hero-future-content {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 56px;
}

.hero-future-copy {
  width: min(690px, 56vw);
}

.hero-future-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: "InterAndStore", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.4;
  gap: 12px;
}

.hero-future-kicker::after {
  width: 24px;
  height: 1px;
  background: rgba(23,42,61,.48);
  content: "";
}

.hero.hero-future h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #142126;
  font-family: "KleeOneAndStore", "Klee", "クレー", "YuKyokasho", "Yu Kyokasho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.34;
}

.hero-future-narrow-break { display: none; }

.hero-future-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #27404a;
  font-size: clamp(13px, 1.16vw, 16px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.8;
}

.hero-future-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 18px;
  background: #142126;
}

.hero-future-brand {
  position: absolute;
  top: 55px;
  right: max(38px, calc((100vw - var(--shell)) / 2));
  z-index: 2;
  color: #19313a;
  letter-spacing: .12em;
}

.hero-future-brand strong {
  display: block;
  font-family: "InterAndStore", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}

.hero-future-brand p {
  margin: 14px 0 0;
  color: rgba(25,49,58,.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .hero.hero-future h1 { font-size: clamp(40px, 4.5vw, 50px); }
}

@media (max-width: 900px) {
  .hero.hero-future {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }

  .hero-future-content {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    padding: 35px 24px 28px;
  }

  .hero-future-copy {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-future-kicker {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .hero-future-kicker::after { width: 18px; }

  .hero.hero-future h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(27px, 7.2vw, 44px);
    line-height: 1.3;
  }

  .hero-future-lead {
    max-width: 680px;
    font-size: 11.3px;
    letter-spacing: .045em;
    line-height: 1.65;
  }

  .hero-future-rule {
    width: 38px;
    margin-top: 10px;
  }

  .hero-future-media {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #edf6fa;
  }

  .hero-future-media img {
    object-position: center;
  }

  .hero-future-scrim { display: none; }

  .hero-future-brand {
    top: auto;
    right: 18px;
    bottom: 18px;
  }

  .hero-future-brand strong { font-size: 9px; }

  .hero-future-brand p {
    margin-top: 7px;
    font-size: 8px;
  }
}

@media (max-width: 560px) {
  .hero-future-content { padding: 22px 18px 18px; }
}

@media (max-width: 350px) {
  .hero-future-content { padding-inline: 15px; }
  .hero.hero-future h1 { font-size: 27px; }
  .hero-future-narrow-break { display: inline; }
  .hero-future-lead { font-size: 11px; }
}
