
:root {
  --navy: #001a3d;
  --navy-deep: #000c1c;
  --blue: #075de8;
  --blue-soft: #7aa9f7;
  --ice: #eaf1f8;
  --paper: #f4f4f1;
  --white: #ffffff;
  --ink: #0a1726;
  --muted: #526174;
  --line: rgba(10, 23, 38, .16);
  --line-light: rgba(255,255,255,.18);
  --font-ja: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  --font-en: "Avenir Next Condensed", "Helvetica Neue", "Arial Narrow", sans-serif;
  --container: min(1220px, calc(100vw - 80px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ja);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 144px 0; overflow: clip; }
.section--dark { background: var(--navy-deep); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.en { font-family: var(--font-en); text-transform: uppercase; }

.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; gap: 18px;
  background: var(--navy-deep); color: white;
  transition: opacity .7s var(--ease), visibility .7s;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader__mark { font: 700 clamp(3rem, 8vw, 7rem)/1 var(--font-en); letter-spacing: -.035em; }
.page-loader__line { width: min(320px, 66vw); height: 1px; background: rgba(255,255,255,.24); overflow: hidden; }
.page-loader__line span { display: block; width: 46%; height: 100%; background: var(--blue-soft); animation: loader 1s infinite alternate var(--ease); }
@keyframes loader { to { transform: translateX(118%); } }

.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 5px; height: 5px; background: var(--blue); }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(7,93,232,.55); transition: width .25s, height .25s, background .25s; }
.cursor-ring.is-hover { width: 54px; height: 54px; background: rgba(7,93,232,.08); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 88px; display: grid; grid-template-columns: 1fr auto auto; align-items: center;
  padding: 0 32px; color: white; transition: .4s var(--ease);
}
.site-header.is-scrolled, body.inner-page .site-header {
  height: 74px; background: rgba(244,244,241,.94); color: var(--navy);
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,26,61,.1);
}
.brand { display: flex; align-items: center; gap: 17px; width: max-content; }
.brand img { width: 216px; height: auto; filter: brightness(0) invert(1); transition: .35s; }
.site-header.is-scrolled .brand img, body.inner-page .brand img { filter: none; }
.brand span { font: 600 .76rem/1 var(--font-en); letter-spacing: .14em; border-left: 1px solid currentColor; padding-left: 15px; opacity: .78; }
.global-nav { display: flex; align-items: center; gap: 26px; margin-right: 30px; }
.global-nav a { font-size: .78rem; font-weight: 600; position: relative; white-space: nowrap; }
.global-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-entry { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-width: 150px; padding: 17px 19px; background: var(--blue); color: white; font: 700 .82rem/1 var(--font-en); letter-spacing: .11em; }
.header-entry i { font-style: normal; font-size: 1rem; }
.menu-button { display: none; width: 48px; height: 48px; background: transparent; border: 0; position: relative; }
.menu-button span { position: absolute; width: 26px; height: 1px; background: currentColor; left: 11px; transition: .3s; }
.menu-button span:first-child { top: 19px; }
.menu-button span:last-child { top: 28px; }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); top: 24px; }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); top: 24px; }

.mobile-menu { position: fixed; inset: 0; z-index: 900; background: var(--navy-deep); color: white; display: grid; align-items: center; opacity: 0; visibility: hidden; transition: .45s var(--ease); }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner { width: min(620px, calc(100vw - 48px)); margin: 70px auto 0; display: grid; }
.mobile-menu__eyebrow { color: var(--blue-soft); font: 600 .72rem/1 var(--font-en); letter-spacing: .15em; margin-bottom: 28px; }
.mobile-menu a { font-size: clamp(1.45rem, 6.8vw, 2.8rem); font-weight: 600; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); }

/* Home hero */
.hero { position: relative; min-height: 100svh; color: white; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep); }
.hero__media, .hero__shade, .hero__grid { position: absolute; inset: 0; }
.hero__media { transform: scale(1.04); }
.hero__media img { height: 100%; object-fit: cover; object-position: center 43%; filter: grayscale(1) contrast(1.04); }
.hero__shade { background: linear-gradient(90deg, rgba(0,12,28,.9) 0%, rgba(0,12,28,.5) 56%, rgba(0,12,28,.28) 100%), linear-gradient(0deg, rgba(0,12,28,.78), transparent 60%); }
.hero__grid { opacity: .2; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 10vw 10vw; mask-image: linear-gradient(to right, black, transparent 82%); }
.hero__orbit { position: absolute; border: 1px solid rgba(122,169,247,.3); border-radius: 50%; }
.orbit-a { width: 46vw; aspect-ratio: 1; right: -10vw; top: 4vh; animation: orbit 20s linear infinite; }
.orbit-b { width: 27vw; aspect-ratio: 1; right: 1vw; top: 20vh; animation: orbit 14s linear reverse infinite; }
.hero__orbit::after { content: ""; position: absolute; width: 9px; height: 9px; background: var(--blue-soft); border-radius: 50%; left: 50%; top: -5px; box-shadow: 0 0 23px var(--blue-soft); }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero__content { position: relative; z-index: 2; padding: 176px 0 72px; }
.hero__label { font: 600 .78rem/1.4 var(--font-en); letter-spacing: .16em; color: #bfd5fb; margin: 0 0 30px; }
.hero__title { font-size: clamp(4.5rem, 9.4vw, 9.2rem); line-height: .88; letter-spacing: -.072em; margin: 0; font-weight: 600; }
.hero__title span { display: block; }
.hero__title .outline { color: transparent; -webkit-text-stroke: 1.25px rgba(255,255,255,.92); margin-left: 8vw; font-weight: 500; }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 58px; max-width: 970px; }
.hero__bottom p { margin: 0; font-size: clamp(.95rem, 1.25vw, 1.08rem); line-height: 2; font-weight: 500; }
.hero__actions { display: flex; align-items: center; gap: 14px; }
.circle-link { width: 126px; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: grid; place-content: center; text-align: center; gap: 7px; transition: .35s; }
.circle-link span { font: 600 .68rem/1.35 var(--font-en); letter-spacing: .11em; }
.circle-link i { font-style: normal; }
.circle-link:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-4px); }
.hero__side { position: absolute; right: 27px; bottom: 58px; z-index: 3; display: flex; align-items: center; gap: 12px; writing-mode: vertical-rl; font: 500 .62rem/1 var(--font-en); letter-spacing: .16em; }
.hero__side i { width: 1px; height: 78px; background: rgba(255,255,255,.52); position: relative; overflow: hidden; }
.hero__side i::after { content: ""; position: absolute; left: 0; top: -40px; height: 40px; width: 1px; background: white; animation: scrollLine 2s infinite; }
@keyframes scrollLine { to { transform: translateY(118px); } }
.hero__number { position: absolute; right: 7vw; bottom: -4vw; z-index: 1; font: 700 25vw/1 var(--font-en); color: rgba(255,255,255,.035); letter-spacing: -.07em; }

.ticker { background: var(--blue); color: white; overflow: hidden; padding: 18px 0; }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 27px; animation: marquee 24s linear infinite; }
.ticker span { font: 600 1rem/1 var(--font-en); letter-spacing: .16em; }
.ticker i { font-style: normal; font-size: .48rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared headings */
.section-index { position: absolute; top: 16px; right: -8px; font: 700 clamp(7rem, 17vw, 17rem)/1 var(--font-en); letter-spacing: -.05em; color: rgba(0,26,61,.035); pointer-events: none; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 28px; color: var(--blue); font: 600 .8rem/1 var(--font-en); letter-spacing: .13em; }
.eyebrow span { min-width: 34px; padding-right: 10px; border-right: 1px solid currentColor; }
.section-heading h2 { margin: 0; font-size: clamp(2.65rem, 5.15vw, 5rem); line-height: 1.12; letter-spacing: -.05em; font-weight: 600; }
.section-heading--light .eyebrow { color: var(--blue-soft); }
.section-heading--light h2 { color: white; }

/* Home sections */
.intro__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 9vw; align-items: start; }
.intro__copy { padding-top: 36px; }
.intro__copy .lead { font-size: clamp(1.8rem, 2.8vw, 2.85rem); line-height: 1.55; font-weight: 600; letter-spacing: -.035em; margin: 0 0 32px; }
.intro__copy p:not(.lead) { max-width: 630px; font-size: 1rem; line-height: 2.05; margin: 0 0 22px; color: var(--muted); }

.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); margin-top: 72px; }
.portal-card { position: relative; min-height: 540px; padding: 38px; overflow: hidden; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: space-between; }
.portal-card:last-child { border-right: 0; }
.portal-card__image { position: absolute; inset: 0; }
.portal-card__image img { height: 100%; object-fit: cover; filter: grayscale(.65) brightness(.53); transition: transform .8s var(--ease), filter .6s; }
.portal-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,12,28,.22), rgba(0,12,28,.82)); }
.portal-card > *:not(.portal-card__image) { position: relative; z-index: 2; }
.portal-card__no { font: 600 .78rem/1 var(--font-en); letter-spacing: .12em; color: var(--blue-soft); }
.portal-card h3 { font-size: clamp(1.8rem, 2.6vw, 2.7rem); line-height: 1.25; font-weight: 600; margin: auto 0 18px; }
.portal-card p { color: #c8d4e6; font-size: .9rem; line-height: 1.9; margin: 0 0 30px; }
.portal-card__link { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.3); font: 600 .8rem/1 var(--font-en); letter-spacing: .1em; }
.portal-card:hover .portal-card__image img { transform: scale(1.06); filter: grayscale(.25) brightness(.62); }

.message-preview__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; }
.message-preview__media { position: relative; min-height: 620px; overflow: hidden; }
.message-preview__media img { height: 620px; object-fit: cover; filter: grayscale(.75); }
.message-preview__media::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(0,12,28,.45)); }
.message-preview__copy h2 { font-size: clamp(2.55rem, 4.6vw, 4.55rem); line-height: 1.18; letter-spacing: -.045em; margin: 0 0 34px; font-weight: 600; }
.message-preview__copy .lead { font-size: 1.22rem; line-height: 1.8; font-weight: 600; margin: 0 0 24px; }
.message-preview__copy p:not(.eyebrow):not(.lead) { color: var(--muted); line-height: 2.05; }
.text-link { display: inline-flex; align-items: center; gap: 34px; margin-top: 32px; padding-bottom: 9px; border-bottom: 1px solid currentColor; font: 600 .82rem/1 var(--font-en); letter-spacing: .1em; }
.text-link span { transition: transform .3s; }
.text-link:hover span { transform: translate(4px,-3px); }

.home-jobs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.home-jobs__copy { color: #c9d5e6; line-height: 2; max-width: 540px; }
.home-job-list { margin-top: 74px; border-top: 1px solid var(--line-light); }
.home-job-link { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line-light); transition: padding .3s, background .3s; }
.home-job-link span:first-child { color: var(--blue-soft); font: 600 .8rem/1 var(--font-en); letter-spacing: .1em; }
.home-job-link strong { font-size: 1.45rem; font-weight: 600; }
.home-job-link i { font-style: normal; font-size: 1.2rem; }
.home-job-link:hover { padding-left: 18px; background: rgba(255,255,255,.025); }

/* Inner page hero */
.page-hero { position: relative; min-height: 72svh; padding: 180px 0 80px; display: flex; align-items: flex-end; background: var(--navy-deep); color: white; overflow: hidden; }
.page-hero__media, .page-hero__shade, .page-hero__grid { position: absolute; inset: 0; }
.page-hero__media img { height: 100%; object-fit: cover; filter: grayscale(.8) contrast(1.05); }
.page-hero__shade { background: linear-gradient(90deg, rgba(0,12,28,.91), rgba(0,12,28,.48) 65%, rgba(0,12,28,.2)), linear-gradient(0deg, rgba(0,12,28,.7), transparent 65%); }
.page-hero__grid { opacity: .18; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 10vw 10vw; }
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 46px; color: #c4d2e8; font-size: .72rem; }
.breadcrumb a:hover { color: white; }
.page-hero__en { font: 600 .82rem/1 var(--font-en); letter-spacing: .16em; color: var(--blue-soft); margin: 0 0 22px; }
.page-hero h1 { margin: 0; font-size: clamp(3.8rem, 8vw, 7.9rem); line-height: .95; letter-spacing: -.06em; font-weight: 600; }
.page-hero__lead { max-width: 660px; margin: 35px 0 0; font-size: 1rem; line-height: 2; color: #d5deec; }
.page-hero__number { position: absolute; right: 5vw; bottom: -4vw; z-index: 1; font: 700 24vw/1 var(--font-en); color: rgba(255,255,255,.045); }

/* Business page */
.business-overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.business-overview__copy .lead { font-size: clamp(1.75rem, 2.8vw, 2.8rem); line-height: 1.55; font-weight: 600; margin: 0 0 28px; }
.business-overview__copy p:not(.lead) { color: var(--muted); line-height: 2.05; }
.business-visual { position: relative; min-height: 540px; overflow: hidden; }
.business-visual img { height: 540px; object-fit: cover; }
.business-visual::before { content: ""; position: absolute; inset: 28px; z-index: 1; border: 1px solid rgba(255,255,255,.55); }
.business-service { display: grid; grid-template-columns: 110px 1fr 1fr; gap: 40px; padding: 54px 0; border-top: 1px solid var(--line-light); align-items: start; }
.business-service:last-child { border-bottom: 1px solid var(--line-light); }
.business-service__no { font: 600 1rem/1 var(--font-en); color: var(--blue-soft); letter-spacing: .1em; }
.business-service h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.3; font-weight: 600; }
.business-service__copy p { color: #cbd7e7; line-height: 1.95; margin: 0 0 18px; }
.business-service__copy a { display: inline-flex; gap: 20px; align-items: center; margin-top: 8px; font: 600 .78rem/1 var(--font-en); letter-spacing: .08em; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card { padding: 34px 26px 42px; border-right: 1px solid var(--line); }
.process-card:last-child { border-right: 0; }
.process-card span { color: var(--blue); font: 600 .78rem/1 var(--font-en); letter-spacing: .1em; }
.process-card strong { display: block; font-size: 1.2rem; margin: 26px 0 16px; }
.process-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.85; }

/* Culture page */
.culture-top { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.culture-top__copy { padding-top: 34px; }
.culture-top__copy .lead { font-size: clamp(1.75rem,2.8vw,2.8rem); line-height: 1.55; font-weight: 600; margin: 0 0 28px; }
.culture-top__copy p:not(.lead) { color: var(--muted); line-height: 2; }
.photo-collage { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 350px 350px; gap: 18px; margin-top: 80px; }
.photo { margin: 0; position: relative; overflow: hidden; background: #d9dde2; }
.photo--wide { grid-column: 1; grid-row: 1 / 3; }
.photo img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0,12,28,.7)); }
.photo figcaption { position: absolute; left: 25px; bottom: 22px; z-index: 2; color: white; font: 600 .8rem/1 var(--font-en); letter-spacing: .09em; }
.photo figcaption span { margin-right: 12px; color: var(--blue-soft); }
.photo:hover img { transform: scale(1.035); }
.value-list { margin-top: 74px; border-top: 1px solid var(--line); }
.value-row { display: grid; grid-template-columns: 110px 1fr 1.15fr; gap: 34px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.value-row__no { color: var(--blue); font: 600 .82rem/1 var(--font-en); letter-spacing: .1em; }
.value-row h3 { margin: 0; font-size: 1.55rem; font-weight: 600; }
.value-row p { margin: 0; color: var(--muted); line-height: 1.9; }
.workstyle-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); margin-top: 68px; }
.workstyle-card { padding: 38px; border-right: 1px solid var(--line-light); min-height: 290px; }
.workstyle-card:last-child { border-right: 0; }
.workstyle-card span { color: var(--blue-soft); font: 600 .8rem/1 var(--font-en); letter-spacing: .1em; }
.workstyle-card h3 { margin: 58px 0 18px; font-size: 1.5rem; font-weight: 600; }
.workstyle-card p { margin: 0; color: #cad6e7; line-height: 1.9; }

/* Company page */
.message__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.message__media { position: sticky; top: 110px; min-height: 650px; overflow: hidden; }
.message__media img { height: 650px; object-fit: cover; filter: grayscale(.7); }
.image-stamp { position: absolute; right: 24px; bottom: 24px; width: 128px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; color: white; display: grid; place-content: center; text-align: center; font: 600 .66rem/1.5 var(--font-en); letter-spacing: .12em; }
.message__content h2 { margin: 0 0 36px; font-size: clamp(2.55rem,4.6vw,4.6rem); line-height: 1.18; letter-spacing: -.045em; font-weight: 600; }
.message__lead { font-size: 1.28rem; line-height: 1.8; font-weight: 600; margin: 0 0 28px; }
.message__content > p:not(.eyebrow):not(.message__lead) { color: var(--muted); line-height: 2.08; }
.message__signature { display: flex; align-items: baseline; gap: 25px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.message__signature span { color: var(--muted); font-size: .8rem; }
.message__signature strong { font-size: 1.35rem; font-weight: 600; }
.company-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: start; }
.company-table { margin: 0; border-top: 1px solid var(--line-light); }
.company-table div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid var(--line-light); }
.company-table dt { color: var(--blue-soft); font-size: .78rem; }
.company-table dd { margin: 0; line-height: 1.8; }

/* Jobs page */
.jobs-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.jobs-intro__copy { color: var(--muted); line-height: 2; }
.job-list { margin-top: 72px; border-top: 1px solid var(--line); }
.job-card { border-bottom: 1px solid var(--line); }
.job-card__head { width: 100%; border: 0; background: transparent; text-align: left; display: grid; grid-template-columns: 150px 1fr 1fr 50px; gap: 28px; align-items: center; padding: 30px 0; cursor: pointer; }
.job-card__group { color: var(--blue); font: 600 .85rem/1 var(--font-en); letter-spacing: .09em; }
.job-card__head h3 { margin: 0; font-size: 1.5rem; font-weight: 600; }
.job-card__head p { margin: 0; color: var(--muted); font-size: .88rem; }
.job-card__toggle { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; position: relative; justify-self: end; }
.job-card__toggle::before, .job-card__toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 1px; background: var(--ink); transform: translate(-50%,-50%); transition: .3s; }
.job-card__toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.job-card.is-open .job-card__toggle::after { transform: translate(-50%,-50%) rotate(0); }
.job-card__body { max-height: 0; overflow: hidden; opacity: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 45px; padding: 0 50px 0 178px; transition: max-height .6s var(--ease), opacity .45s, padding .55s var(--ease); }
.job-card.is-open .job-card__body { max-height: 900px; opacity: 1; padding-top: 10px; padding-bottom: 50px; }
.job-card__body h4 { margin: 0 0 12px; font-size: .9rem; color: var(--blue); }
.job-card__body p { margin: 0; color: var(--muted); line-height: 1.9; }
.job-card__body a { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding: 20px; background: var(--navy); color: white; font-size: .9rem; }
.flow-list { list-style: none; padding: 0; margin: 70px 0 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.flow-list li { padding: 38px 28px; border-right: 1px solid var(--line-light); }
.flow-list li:last-child { border-right: 0; }
.flow-list span { color: var(--blue-soft); font: 600 .8rem/1 var(--font-en); letter-spacing: .1em; }
.flow-list strong { display: block; font-size: 1.35rem; margin: 46px 0 18px; }
.flow-list p { color: #c8d4e6; font-size: .88rem; line-height: 1.85; margin: 0; }

/* Entry page */
.entry-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.entry-intro__copy p { color: var(--muted); line-height: 2; }
.entry-options { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.entry-option { padding: 42px; background: white; border: 1px solid var(--line); min-height: 310px; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s; }
.entry-option:hover { transform: translateY(-5px); border-color: var(--blue); }
.entry-option__en { color: var(--blue); font: 600 .82rem/1 var(--font-en); letter-spacing: .1em; }
.entry-option h2 { margin: 58px 0 18px; font-size: 1.7rem; font-weight: 600; }
.entry-option p { margin: 0; color: var(--muted); line-height: 1.85; }
.entry-option__link { margin-top: auto; padding-top: 30px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 600; }
.entry-note { margin-top: 45px; padding: 28px 32px; border-left: 3px solid var(--blue); background: rgba(7,93,232,.045); color: var(--muted); line-height: 1.9; }

/* CTA / footer */
.entry-cta { position: relative; background: var(--navy-deep); color: white; overflow: hidden; }
.entry-cta::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; right: -100px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(7,93,232,.62), transparent 68%); }
.entry-cta__grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 8vw 8vw; }
.entry-cta__inner { position: relative; padding: 112px 0; }
.entry-cta h2 { font-size: clamp(3.05rem, 6.4vw, 6.4rem); line-height: 1.08; letter-spacing: -.06em; margin: 0 0 30px; font-weight: 600; }
.entry-cta__inner > p:not(.eyebrow) { color: #c7d4e7; line-height: 1.9; }
.entry-cta__actions { display: flex; gap: 15px; margin-top: 48px; }
.entry-button { min-width: 270px; display: flex; align-items: center; justify-content: space-between; padding: 22px 23px; background: var(--blue); border: 1px solid var(--blue); font: 600 .82rem/1 var(--font-en); letter-spacing: .08em; transition: .3s; }
.entry-button:hover { background: white; border-color: white; color: var(--navy); transform: translateY(-3px); }
.entry-button--ghost { background: transparent; border-color: rgba(255,255,255,.42); }
.entry-button i { font-style: normal; }

.site-footer { background: #000711; color: white; overflow: hidden; padding: 72px 0 32px; }
.site-footer__top { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 17px; }
.footer-brand img { width: 236px; filter: brightness(0) invert(1); }
.footer-brand span { font: 600 .72rem/1 var(--font-en); letter-spacing: .14em; border-left: 1px solid rgba(255,255,255,.4); padding-left: 16px; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(130px, auto)); gap: 13px 48px; }
.site-footer nav a { color: #c3cfdf; font-size: .75rem; }
.site-footer__title { margin: 92px 0 33px; width: max-content; font: 700 10.2vw/.8 var(--font-en); letter-spacing: -.045em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.17); transform: translateX(-.55vw); white-space: nowrap; }
.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.15); color: #7f8ca0; font-size: .65rem; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }



/* Natural Japanese line breaking and responsive typography */
:where(h1, h2, h3, h4, p, dd, .lead, .page-hero__lead, .hero__bottom p) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}
:where(h1, h2, h3, .lead, .page-hero__lead, .hero__bottom p) {
  word-break: auto-phrase;
  text-wrap: balance;
}
:where(p, dd) { text-wrap: pretty; }
.heading-phrases { text-wrap: wrap; }
.heading-phrases .phrase { display: inline-block; }
.section-heading h2 {
  font-size: clamp(2.55rem, 4.35vw, 4.35rem);
  line-height: 1.16;
  letter-spacing: -.042em;
  max-width: 13em;
}
.business-overview__grid { grid-template-columns: 1.08fr .92fr; gap: clamp(56px, 7vw, 105px); }
.page-hero h1 { font-family: var(--font-en); letter-spacing: -.035em; }
.global-nav { gap: 22px; }
.global-nav a { font-family: var(--font-en); font-size: .8rem; letter-spacing: .035em; }
.header-entry span { text-transform: none; }
.mobile-menu a { font-family: var(--font-en), var(--font-ja); letter-spacing: -.015em; }
.column-preview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.column-preview__copy { max-width: 560px; }
.column-preview__copy p { color: var(--muted); line-height: 2; margin: 0 0 28px; }
.column-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.column-intro__copy { color: var(--muted); line-height: 2; margin: 0; }
.column-list { margin-top: 76px; display: grid; gap: 24px; }
.column-card { display: grid; grid-template-columns: minmax(320px, .82fr) 1.18fr; min-height: 400px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.column-card__media { overflow: hidden; }
.column-card__media img { height: 100%; min-height: 400px; object-fit: cover; filter: grayscale(.6); transition: transform .7s var(--ease), filter .5s; }
.column-card:hover .column-card__media img { transform: scale(1.035); filter: grayscale(.2); }
.column-card__body { padding: clamp(34px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.column-card__meta { display: flex; justify-content: space-between; gap: 24px; color: var(--blue); font: 600 .75rem/1 var(--font-en); letter-spacing: .11em; margin: 0 0 42px; }
.column-card h2 { font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.35; letter-spacing: -.035em; margin: 0 0 24px; font-weight: 600; }
.column-card__body > p:last-child { color: var(--muted); line-height: 2; margin: 0; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 48px, 960px); }
  .global-nav { display: none; }
  .header-entry { margin-left: auto; }
  .menu-button { display: block; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { min-height: 440px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .portal-card:last-child { border-bottom: 0; }
  .job-card__head { grid-template-columns: 130px 1fr 1fr 50px; }
  .job-card__body { padding-left: 158px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 36px); }
  .section { padding: 96px 0; }
  .cursor-dot, .cursor-ring { display: none; }
  .site-header, body.inner-page .site-header { height: 68px; padding: 0 17px; }
  .site-header.is-scrolled { height: 65px; }
  .brand img { width: 154px; }
  .brand span { display: none; }
  .header-entry { min-width: auto; padding: 13px 14px; gap: 13px; }
  .header-entry span { font-size: .68rem; }
  .menu-button { width: 40px; height: 40px; }
  .menu-button span { left: 8px; }

  .hero { min-height: 830px; }
  .hero__content { padding: 145px 0 72px; }
  .hero__label { font-size: .68rem; line-height: 1.5; max-width: 250px; }
  .hero__title { font-size: clamp(4rem, 19vw, 6.2rem); }
  .hero__title .outline { margin-left: 0; margin-top: 10px; }
  .hero__bottom { display: block; margin-top: 64px; }
  .hero__bottom p { font-size: .84rem; }
  .hero__actions { margin-top: 32px; }
  .circle-link { width: 95px; }
  .hero__side { display: none; }
  .hero__number { font-size: 54vw; right: -10vw; bottom: 3vw; }
  .hero__grid { background-size: 25vw 25vw; }
  .orbit-a { width: 100vw; right: -50vw; top: 12vh; }
  .orbit-b { width: 65vw; right: -20vw; top: 23vh; }
  .ticker { padding: 14px 0; }
  .ticker span { font-size: .75rem; }

  .intro__grid, .message-preview__grid, .home-jobs__grid, .business-overview__grid, .culture-top, .message__grid, .company-grid, .jobs-intro, .entry-intro { grid-template-columns: 1fr; gap: 48px; }
  .section-heading h2 { font-size: clamp(2.45rem, 12.5vw, 3.85rem); }
  .intro__copy { padding-top: 0; }
  .intro__copy .lead { font-size: 1.75rem; }
  .portal-card { min-height: 420px; padding: 28px; }
  .message-preview__media, .message-preview__media img { min-height: 460px; height: 460px; }
  .home-job-link { grid-template-columns: 90px 1fr auto; gap: 15px; }
  .home-job-link strong { font-size: 1.1rem; }

  .page-hero { min-height: 650px; padding: 150px 0 66px; }
  .page-hero h1 { font-size: clamp(3.4rem, 17vw, 5.7rem); }
  .page-hero__lead { font-size: .88rem; }
  .page-hero__number { font-size: 48vw; }
  .breadcrumb { margin-bottom: 34px; }

  .business-visual, .business-visual img { min-height: 420px; height: 420px; }
  .business-service { grid-template-columns: 50px 1fr; gap: 20px; padding: 38px 0; }
  .business-service__copy { grid-column: 2; }
  .process-grid, .workstyle-grid, .flow-list { grid-template-columns: 1fr; }
  .process-card, .workstyle-card, .flow-list li { border-right: 0; border-bottom: 1px solid var(--line); }
  .section--dark .process-card, .section--dark .workstyle-card, .section--dark .flow-list li { border-bottom-color: var(--line-light); }
  .process-card:last-child, .workstyle-card:last-child, .flow-list li:last-child { border-bottom: 0; }

  .photo-collage { grid-template-columns: 1fr; grid-template-rows: 430px 300px 300px; }
  .photo--wide { grid-column: auto; grid-row: auto; }
  .value-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .value-row p { grid-column: 2; }

  .message__media { position: relative; top: auto; min-height: 480px; }
  .message__media img { height: 480px; }
  .company-table div { grid-template-columns: 105px 1fr; gap: 15px; }

  .job-card__head { grid-template-columns: 1fr 44px; gap: 10px; padding: 24px 0; }
  .job-card__group { grid-column: 1; }
  .job-card__head h3 { grid-column: 1; grid-row: 2; }
  .job-card__head p { grid-column: 1; grid-row: 3; }
  .job-card__toggle { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .job-card__body { grid-template-columns: 1fr; padding: 0; }
  .job-card.is-open .job-card__body { padding: 6px 0 36px; }
  .job-card__body a { grid-column: auto; }
  .flow-list li { min-height: 220px; }

  .entry-options { grid-template-columns: 1fr; }
  .entry-option { padding: 30px; }

  .entry-cta__inner { padding: 92px 0; }
  .entry-cta__actions { flex-direction: column; }
  .entry-button { min-width: 0; width: 100%; }

  .section-heading h2 { font-size: clamp(2.15rem, 10.2vw, 3.2rem); line-height: 1.2; letter-spacing: -.035em; max-width: none; }
  .message-preview__copy h2, .message__content h2 { font-size: clamp(2.15rem, 10vw, 3.15rem); line-height: 1.2; }
  .entry-cta h2 { font-size: clamp(2.55rem, 11.5vw, 4rem); line-height: 1.14; }
  .page-hero h1 { font-size: clamp(3.25rem, 15vw, 5.25rem); line-height: 1; }
  .business-overview__grid, .column-preview__grid, .column-intro { grid-template-columns: 1fr; gap: 46px; }
  .column-list { margin-top: 54px; }
  .column-card { grid-template-columns: 1fr; min-height: 0; }
  .column-card__media img { height: 300px; min-height: 300px; }
  .column-card__body { padding: 30px 26px 36px; }
  .column-card__meta { margin-bottom: 28px; }
  .column-card h2 { font-size: clamp(1.55rem, 7vw, 2rem); line-height: 1.45; }

  .site-footer__top { flex-direction: column; gap: 50px; }
  .footer-brand img { width: 190px; }
  .site-footer nav { grid-template-columns: 1fr 1fr; gap: 13px 30px; }
  .site-footer__title { margin-top: 75px; font-size: 20vw; }
  .site-footer__bottom { gap: 18px; font-size: .58rem; }
}

@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; }
}

/* =========================================================
   Motion system added with JavaScript
   ========================================================= */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  will-change: transform;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}
.page-transition::before,
.page-transition span {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate3d(0, 105%, 0);
  transition: transform .56s var(--ease);
}
.page-transition::before { background: var(--blue); transition-delay: .04s; }
.page-transition span { background: var(--navy-deep); transition-delay: 0s; }
.page-transition.is-active { visibility: visible; }
.page-transition.is-active::before,
.page-transition.is-active span { transform: translate3d(0, 0, 0); }
.page-transition.is-active span { transition-delay: .08s; }

.site-header { will-change: transform, background-color; }
.site-header.is-hidden { transform: translate3d(0, -110%, 0); }

.hero,
.page-hero { --mouse-x: 0px; --mouse-y: 0px; }
.hero__content,
.page-hero__inner,
.hero__orbit,
.page-hero__number {
  transform: translate3d(var(--mouse-x), var(--mouse-y), 0);
  transition: transform 1.1s var(--ease);
}
.page-hero__number,
.hero__number { transform: translate3d(var(--mouse-x-neg, 0px), var(--mouse-y-neg, 0px), 0); }

.hero__media,
.page-hero__media {
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.065);
  will-change: transform;
}
.hero__media .rotator-image,
.page-hero__media .rotator-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.25s var(--ease), transform 7.2s linear;
  will-change: opacity, transform;
}
.hero__media .rotator-image { object-position: center 43%; filter: grayscale(1) contrast(1.04); }
.page-hero__media .rotator-image { filter: grayscale(.8) contrast(1.05); }
.hero__media .rotator-image.is-active,
.page-hero__media .rotator-image.is-active {
  opacity: 1;
  transform: scale(1.015);
}

.image-rotator__controls {
  position: absolute;
  right: clamp(24px, 4vw, 66px);
  bottom: clamp(26px, 5vw, 58px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .image-rotator__controls { bottom: clamp(30px, 5.2vw, 70px); }
.image-rotator__controls button {
  appearance: none;
  display: grid;
  grid-template-columns: auto 42px;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: color .35s var(--ease);
}
.image-rotator__controls button span {
  font: 600 .62rem/1 var(--font-en);
  letter-spacing: .08em;
}
.image-rotator__controls button i {
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.28);
  position: relative;
}
.image-rotator__controls button i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}
.image-rotator__controls button[aria-pressed="true"] { color: white; }
.image-rotator__controls button[aria-pressed="true"] i::after { transform: scaleX(1); }

.scroll-cue {
  position: absolute;
  left: clamp(18px, 3vw, 48px);
  bottom: clamp(24px, 4vw, 50px);
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.74);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.scroll-cue.is-hidden { opacity: 0; transform: translateY(10px); }
.scroll-cue span {
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: translateY(-100%);
  animation: scrollCue 1.8s var(--ease) infinite;
}
.scroll-cue em {
  font: 600 .62rem/1 var(--font-en);
  letter-spacing: .16em;
  font-style: normal;
  writing-mode: vertical-rl;
}
@keyframes scrollCue { 55%, 100% { transform: translateY(100%); } }

.mobile-menu {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  visibility: hidden;
  transition: clip-path .68s var(--ease), visibility 0s .68s;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .68s var(--ease), visibility 0s;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  width: min(74vw, 760px);
  aspect-ratio: 1;
  right: -24vw;
  top: 8vh;
  border: 1px solid rgba(122,169,247,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.mobile-menu__inner > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .45s var(--ease), transform .55s var(--ease);
}
.mobile-menu.is-open .mobile-menu__inner > * { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(1) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(2) { transition-delay: .24s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(3) { transition-delay: .28s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(4) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(5) { transition-delay: .36s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(6) { transition-delay: .40s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(7) { transition-delay: .44s; }
.mobile-menu a { position: relative; padding-right: 42px; transition: color .3s, padding-left .4s var(--ease); }
.mobile-menu a::after { content: "↗"; position: absolute; right: 4px; opacity: 0; transform: translate(-8px, 8px); transition: .35s var(--ease); }
.mobile-menu a:hover { color: var(--blue-soft); padding-left: 14px; }
.mobile-menu a:hover::after { opacity: 1; transform: translate(0, 0); }

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}
[data-image-reveal] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.05s var(--ease);
}
[data-image-reveal] img {
  transform: scale(1.08);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
[data-image-reveal].is-visible { clip-path: inset(0 0 0 0); }
[data-image-reveal].is-visible img { transform: scale(1); }

[data-motion-heading] {
  opacity: 0;
  transform: translateY(.45em);
  filter: blur(7px);
  transition: opacity .8s var(--ease), transform .95s var(--ease), filter .95s var(--ease);
}
[data-motion-heading].is-visible,
.reveal[data-motion-heading].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-motion-heading] .phrase,
[data-motion-heading] > span {
  transition: transform .85s var(--ease), opacity .75s var(--ease);
}
[data-motion-heading]:not(.is-visible) .phrase,
[data-motion-heading]:not(.is-visible) > span { transform: translateY(.35em); opacity: 0; }
[data-motion-heading].is-visible .phrase:nth-child(2),
[data-motion-heading].is-visible > span:nth-child(2) { transition-delay: .10s; }
[data-motion-heading].is-visible .phrase:nth-child(3),
[data-motion-heading].is-visible > span:nth-child(3) { transition-delay: .18s; }

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s var(--ease), border-color .35s, box-shadow .35s;
}
[data-tilt]:hover {
  box-shadow: 0 24px 70px rgba(0, 20, 48, .12);
}
.section--dark [data-tilt]:hover { box-shadow: 0 28px 80px rgba(0, 0, 0, .3); }
[data-tilt] > * { transform: translateZ(0); }

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.2vw, 34px);
  bottom: clamp(16px, 2.2vw, 34px);
  z-index: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,26,61,.22);
  background: rgba(244,244,241,.88);
  color: var(--navy);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  transition: opacity .35s, visibility .35s, transform .45s var(--ease), background .3s, color .3s;
  cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--blue); color: white; border-color: var(--blue); transform: translateY(-4px) scale(1); }

body.is-leaving main,
body.is-leaving .site-footer { transform: translateY(-10px); opacity: .84; transition: transform .45s var(--ease), opacity .35s; }

@media (max-width: 760px) {
  .scroll-progress { height: 2px; }
  .image-rotator__controls {
    right: 18px;
    bottom: 22px;
    gap: 10px;
  }
  .hero .image-rotator__controls { bottom: 25px; }
  .image-rotator__controls button { grid-template-columns: auto 24px; gap: 5px; }
  .image-rotator__controls button i { width: 24px; }
  .scroll-cue { left: 18px; bottom: 24px; }
  .scroll-cue span { height: 30px; }
  .back-to-top { width: 44px; height: 44px; }
  [data-tilt] { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .scroll-cue,
  .image-rotator__controls { display: none !important; }
  .hero__media .rotator-image,
  .page-hero__media .rotator-image { transition: none !important; transform: none !important; }
  [data-image-reveal],
  [data-motion-heading] { clip-path: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  [data-image-reveal] img { transform: none !important; }
  .site-header { transform: none !important; }
}

/* =========================================================
   Revision 2: kinetic backgrounds and tighter vertical rhythm
   ========================================================= */
.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .92;
}
.motion-canvas--dark { mix-blend-mode: screen; }
.motion-canvas--light { mix-blend-mode: multiply; opacity: .58; }

.hero > .motion-canvas,
.page-hero > .motion-canvas { z-index: 1; }
.hero__content,
.page-hero__inner,
.hero__side,
.hero__number,
.page-hero__number,
.scroll-cue,
.image-rotator__controls { z-index: 3; }

.section--dark,
.business-intro,
.entry-cta { isolation: isolate; }
.section--dark > .container,
.business-intro > .container,
.entry-cta > .container,
.entry-cta__grid { position: relative; z-index: 2; }

/* Reduce dead space while preserving the editorial layout. */
.section { padding: clamp(88px, 8vw, 112px) 0; }
.business-intro { padding-top: clamp(76px, 7vw, 102px); padding-bottom: clamp(76px, 7vw, 96px); }
.business-intro .business-overview__grid { align-items: center; }
.business-visual {
  min-height: 0;
  height: clamp(340px, 36vw, 470px);
  margin-top: clamp(38px, 4.5vw, 58px);
  background: #dfe7ef;
}
.business-visual img { min-height: 0; height: 100%; }
.business-page .section--dark { padding-top: clamp(82px, 7vw, 104px); padding-bottom: clamp(82px, 7vw, 104px); }
.business-page .section--dark .section-heading + div { margin-top: clamp(34px, 4vw, 52px) !important; }
.business-service { padding: clamp(32px, 3.5vw, 44px) 0; }
.business-service__copy p { margin-bottom: 0; }

/* Never leave an empty image block before IntersectionObserver fires. */
[data-image-reveal] { clip-path: none !important; opacity: 1 !important; }
[data-image-reveal] img {
  opacity: .78;
  transform: scale(1.035);
  transition: opacity .8s var(--ease), transform 1.15s var(--ease), filter .6s var(--ease);
}
[data-image-reveal].is-visible img { opacity: 1; transform: scale(1); }

@media (max-width: 1080px) {
  .section { padding: 86px 0; }
  .business-intro { padding: 76px 0 80px; }
  .business-visual { height: 410px; margin-top: 44px; }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .business-intro { padding: 58px 0 64px; }
  .business-overview__grid { gap: 34px; }
  .business-overview__copy .lead { margin-bottom: 20px; }
  .business-visual,
  .business-visual img { min-height: 0; height: 300px; }
  .business-visual { margin-top: 34px; }
  .business-page .section--dark { padding: 64px 0; }
  .business-page .section--dark .section-heading + div { margin-top: 32px !important; }
  .business-service { grid-template-columns: 40px 1fr; gap: 14px; padding: 28px 0; }
  .business-service__copy { grid-column: 2; }
  .business-service__copy p { line-height: 1.85; }
  .motion-canvas { opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-canvas { display: none !important; }
}


/* =========================================================
   Corporate site revision: navigation, content-specific pages
   ========================================================= */
.brand span,
.footer-brand span {
  font-family: var(--font-en);
  text-transform: none;
  letter-spacing: .035em;
  line-height: 1.35;
  white-space: nowrap;
}
.brand span { font-size: .64rem; max-width: 255px; }
.footer-brand span { font-size: .66rem; max-width: 285px; }
.global-nav { gap: 20px; }
.global-nav a { font-family: var(--font-ja); font-size: .76rem; letter-spacing: .02em; }
.header-entry { min-width: 142px; font-family: var(--font-ja); letter-spacing: .045em; }
.header-entry[aria-current="page"] { box-shadow: inset 0 -3px 0 #fff; }
.portal-grid--three { grid-template-columns: repeat(3, 1fr); }
.portal-grid--three .portal-card { min-height: 620px; }
.portal-card__image img[src$="company-logo.png"] { object-fit: contain; padding: 70px; background: rgba(255,255,255,.94); filter: none; }
.feature-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-link { min-height: 280px; display: grid; grid-template-columns: 110px 1fr auto; gap: 28px; align-items: center; padding: 52px 42px; border-right: 1px solid var(--line); transition: background .35s var(--ease), color .35s var(--ease); }
.feature-link:last-child { border-right: 0; }
.feature-link > span { color: var(--blue); font: 600 .78rem/1 var(--font-en); letter-spacing: .12em; }
.feature-link h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 600; }
.feature-link p { margin: 0; color: var(--muted); line-height: 1.8; }
.feature-link > i { font-style: normal; font-size: 1.5rem; }
.feature-link:hover { background: var(--navy); color: #fff; }
.feature-link:hover p { color: #cbd7e7; }
.company-table--light { border-top-color: var(--line); }
.company-table--light div { border-bottom-color: var(--line); }
.company-table--light dt { color: var(--blue); }
.company-table a { text-decoration: underline; text-underline-offset: 4px; }
.service-list { margin-top: 58px; }
.service-points { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; color: #bfcde1; font-size: .86rem; }
.service-points li { position: relative; padding-left: 18px; }
.service-points li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--blue-soft); }
.contact-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.contact-intro__copy { margin: 0; color: var(--muted); line-height: 2; }
.contact-form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.form-note { color: #cbd7e7; line-height: 1.8; max-width: 360px; }
.contact-form { display: grid; gap: 22px; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span { color: #cbd7e7; font-size: .8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.24); border-radius: 0; background: rgba(255,255,255,.04); color: #fff; padding: 16px 18px; outline: none; transition: border-color .25s, background .25s; }
.contact-form select { color-scheme: dark; }
.contact-form textarea { resize: vertical; min-height: 180px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue-soft); background: rgba(255,255,255,.075); }
.form-consent { grid-template-columns: auto 1fr !important; align-items: center; gap: 12px !important; }
.form-consent input { width: 18px; height: 18px; margin: 0; }
.form-consent span { line-height: 1.6; }
.form-submit { width: 100%; border: 0; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 21px 24px; cursor: pointer; font-weight: 600; }
.form-submit i { font-style: normal; }
.form-status { min-height: 1.4em; margin: -8px 0 0; color: var(--blue-soft); font-size: .82rem; }
.contact-address { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.contact-address h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.contact-address p { margin: 0 0 24px; color: var(--muted); line-height: 2; }
.partner-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.partner-intro__copy .lead { font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 600; line-height: 1.7; margin-top: 0; }
.partner-intro__copy p:not(.lead) { color: var(--muted); line-height: 2; }
.partner-types { margin-top: 68px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-type { padding: 44px 34px; border-right: 1px solid var(--line); }
.partner-type:last-child { border-right: 0; }
.partner-type > span { color: var(--blue); font: 600 .8rem/1 var(--font-en); }
.partner-type h3 { margin: 72px 0 18px; font-size: 1.5rem; }
.partner-type p { color: var(--muted); line-height: 1.9; margin: 0; }
.partner-note { margin-top: 54px; padding: 28px 32px; border: 1px solid var(--line-light); display: grid; grid-template-columns: 160px 1fr; gap: 32px; }
.partner-note strong { color: var(--blue-soft); }
.partner-note p { margin: 0; color: #cbd7e7; line-height: 1.85; }

@media (max-width: 1280px) {
  .global-nav { display: none; }
  .header-entry { margin-left: auto; }
  .menu-button { display: block; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
}
@media (max-width: 760px) {
  .header-entry span { font-size: .66rem; white-space: nowrap; }
  .portal-grid--three { grid-template-columns: 1fr; }
  .portal-grid--three .portal-card { min-height: 430px; }
  .portal-card__image img[src$="company-logo.png"] { padding: 45px; }
  .feature-links { grid-template-columns: 1fr; }
  .feature-link { grid-template-columns: 80px 1fr auto; min-height: 220px; padding: 35px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-link:last-child { border-bottom: 0; }
  .feature-link h2 { font-size: 1.65rem; }
  .contact-intro,
  .contact-form-layout,
  .contact-address,
  .partner-intro { grid-template-columns: 1fr; gap: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .partner-types { grid-template-columns: 1fr; }
  .partner-type { border-right: 0; border-bottom: 1px solid var(--line); }
  .partner-type:last-child { border-bottom: 0; }
  .partner-type h3 { margin-top: 38px; }
  .partner-note { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
  .footer-brand span { display: none; }
}

/* v4 refinement: cleaner mobile navigation, stronger motion and image presentation */
.brand img { width: 238px; }
.brand span { max-width: 310px; line-height: 1.35; white-space: normal; }
.site-header { transition: transform .55s cubic-bezier(.22,1,.36,1), height .35s, background-color .35s, color .35s, box-shadow .35s; }
.menu-button span { transition: transform .48s cubic-bezier(.22,1,.36,1), top .48s cubic-bezier(.22,1,.36,1), width .35s; }
.menu-button:hover span:first-child { width: 18px; }
.menu-button:hover span:last-child { width: 30px; }

.mobile-menu {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  visibility: hidden;
  transition: clip-path .78s cubic-bezier(.77,0,.18,1), visibility 0s linear .78s;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .78s cubic-bezier(.77,0,.18,1), visibility 0s;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 83% 28%, rgba(39,117,255,.2), transparent 34%);
}
.mobile-menu__inner { position: relative; z-index: 2; }
.mobile-menu a {
  position: relative;
  padding: 20px 6px;
  transform-origin: left center;
  transition: color .3s, padding-left .45s cubic-bezier(.22,1,.36,1), letter-spacing .45s;
}
.mobile-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--blue-soft);
  transition: width .55s cubic-bezier(.22,1,.36,1);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--blue-soft); padding-left: 16px; letter-spacing: .01em; }
.mobile-menu a:hover::before, .mobile-menu a:focus-visible::before { width: 100%; }

/* Higher quality image treatment: preserve detail and avoid the synthetic grayscale look. */
img { image-rendering: auto; }
.portal-card__image img, .column-card__media img, .photo img, .business-visual img, .message-preview__media img {
  filter: saturate(.88) contrast(1.035);
  transform: translateZ(0) scale(1.002);
}
.portal-card:hover .portal-card__image img, .column-card:hover .column-card__media img {
  filter: saturate(1) contrast(1.05);
}
.hero__media img, .page-hero__media img {
  filter: saturate(.82) contrast(1.08) brightness(.9);
  will-change: transform, opacity, filter;
}

/* More cinematic reveal timing, with no abrupt blank gaps. */
.reveal { transform: translateY(42px); transition-duration: 1.05s; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-image-reveal] { overflow: hidden; }
[data-image-reveal] img { transition: transform 1.45s cubic-bezier(.16,1,.3,1), clip-path 1.15s cubic-bezier(.16,1,.3,1); clip-path: inset(0 0 100% 0); transform: scale(1.07); }
[data-image-reveal].is-visible img { clip-path: inset(0); transform: scale(1); }

.motion-canvas { opacity: .92 !important; mix-blend-mode: screen; }
.motion-canvas--light { opacity: .42 !important; mix-blend-mode: multiply; }
.hero__grid, .page-hero__grid { animation: gridDrift 18s linear infinite; }
.hero__orbit { animation-duration: 18s; }
@keyframes gridDrift { to { background-position: 10vw 10vw; } }

/* Keep sections visually compact and remove excessive dead space. */
.section { padding-top: clamp(88px, 8vw, 132px); padding-bottom: clamp(88px, 8vw, 132px); }
.section + .section { margin-top: 0; }
.business-service { min-height: 0; }
.entry-cta__inner { padding-top: clamp(88px, 8vw, 120px); padding-bottom: clamp(88px, 8vw, 120px); }

@media (max-width: 760px) {
  .site-header, body.inner-page .site-header { height: 76px; padding-inline: 18px; }
  .site-header.is-scrolled { height: 70px; }
  .brand img { width: 186px; }
  .header-entry { padding: 14px 18px; }
  .mobile-menu { align-items: start; overflow-y: auto; }
  .mobile-menu__inner { width: calc(100vw - 48px); margin: 128px auto 64px; }
  .mobile-menu__eyebrow { margin-bottom: 28px; }
  .mobile-menu a { font-size: clamp(1.7rem, 9vw, 2.65rem); padding: 22px 4px; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .hero { min-height: 760px; }
  .hero__content { padding-top: 132px; }
  .entry-cta__inner { padding-top: 78px; padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu.is-open { clip-path: none; transition: opacity .15s; }
  .hero__grid, .page-hero__grid { animation: none; }
}
.section-heading, .portal-card__image, .feature-link, .business-service, .photo { translate: 0 var(--scroll-shift, 0); }

/* v5 responsive integrity fixes */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  width: 100%;
  max-width: 100vw;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.brand {
  min-width: 0;
  width: auto;
  max-width: 100%;
  overflow: hidden;
}

.brand img {
  flex: 0 1 auto;
  max-width: 100%;
}

.mobile-menu {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.mobile-menu__inner {
  min-width: 0;
  transform: none !important;
  translate: none !important;
}

.mobile-menu a {
  width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  :root { --container: min(calc(100% - 36px), 680px); }

  .site-header,
  body.inner-page .site-header {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 38vw) 42px;
    gap: 7px;
    padding-inline: 12px;
  }

  .brand {
    max-width: 100%;
  }

  .brand img {
    width: min(45vw, 184px);
    max-width: 100%;
  }

  .header-entry {
    min-width: 0;
    width: 100%;
    max-width: 38vw;
    padding: 13px 14px;
    gap: 8px;
    overflow: hidden;
  }

  .header-entry span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(.62rem, 2.7vw, .74rem);
  }

  .header-entry i {
    flex: 0 0 auto;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
  }

  .mobile-menu {
    display: block;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu__inner {
    width: auto;
    max-width: none;
    margin: 116px 24px 48px;
    padding: 0;
  }

  .mobile-menu__eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: .66rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 18px 2px;
    font-size: clamp(1.55rem, 7.8vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -.03em;
    white-space: normal;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    padding-left: 8px;
  }

  .motion-canvas,
  .hero__orbit,
  .page-hero__orbit {
    max-width: 100%;
  }

  .hero__media,
  .page-hero__media {
    overflow: hidden;
  }

  .hero__media img,
  .page-hero__media img {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 390px) {
  .site-header,
  body.inner-page .site-header {
    grid-template-columns: minmax(0, 1fr) 112px 40px;
    padding-inline: 10px;
    gap: 5px;
  }

  .brand img { width: min(43vw, 164px); }
  .header-entry { max-width: 112px; padding-inline: 11px; }
  .header-entry i { display: none; }
  .mobile-menu__inner { margin-inline: 20px; }
  .mobile-menu a { font-size: clamp(1.45rem, 7.6vw, 1.95rem); }
}

/* =========================================================
   v7 final polish: restored mobile header, typography,
   responsive integrity and refined motion
   ========================================================= */
:root {
  --font-ja: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --font-en: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

html { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body { font-feature-settings: "palt" 1; }
img { display: block; }

/* Refined image treatment: natural contrast without an artificial filter. */
.hero__media img,
.page-hero__media img,
.portal-card__image img,
.photo img,
.business-visual img,
.message__media img {
  filter: saturate(.96) contrast(1.035) brightness(.98);
}

/* SVG technical-motion layer created by JavaScript. */
.motion-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  opacity: .72;
  mix-blend-mode: screen;
}
.motion-svg circle,
.motion-svg path,
.motion-svg line {
  vector-effect: non-scaling-stroke;
  fill: none;
  stroke: rgba(133, 178, 255, .24);
  stroke-width: 1;
}
.motion-svg .motion-svg__dash { stroke-dasharray: 5 13; animation: svgDash 16s linear infinite; }
.motion-svg .motion-svg__orbit { transform-origin: center; animation: svgOrbit 24s linear infinite; }
.motion-svg .motion-svg__orbit--reverse { animation-direction: reverse; animation-duration: 31s; }
.motion-svg .motion-svg__dot { fill: #8bb8ff; stroke: rgba(255,255,255,.9); stroke-width: .6; animation: svgPulse 2.8s ease-in-out infinite; }
@keyframes svgDash { to { stroke-dashoffset: -180; } }
@keyframes svgOrbit { to { transform: rotate(360deg); } }
@keyframes svgPulse { 50% { opacity: .35; transform: scale(.72); } }

/* More controlled typography and natural line wrapping. */
.hero__title,
.page-hero h1,
.section-heading h2,
.entry-cta h2,
.message__content h2,
.feature-link h2 {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}
p, li { line-break: strict; }
.section-heading h2 { max-width: 13ch; }

/* Refined page transition: vertical curtain + content fade. */
.page-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(69,136,255,.16), transparent 65%);
  transform: translateX(-120%);
}
body.is-leaving .page-transition::after { animation: transitionSheen .62s .08s var(--ease) forwards; }
@keyframes transitionSheen { to { transform: translateX(120%); } }

/* Restore the original visual weight of the mobile header while preserving fit. */
@media (max-width: 760px) {
  .site-header,
  body.inner-page .site-header {
    display: flex;
    align-items: center;
    height: 74px;
    padding: 0 14px;
    gap: 8px;
  }
  .site-header.is-scrolled { height: 70px; }
  .brand { flex: 1 1 auto; min-width: 0; overflow: visible; }
  .brand img { width: clamp(154px, 42vw, 178px); max-width: 100%; }
  .brand span { display: none; }
  .header-entry {
    flex: 0 0 clamp(136px, 36vw, 154px);
    width: clamp(136px, 36vw, 154px);
    max-width: none;
    min-height: 48px;
    padding: 13px 16px;
    gap: 10px;
    justify-content: space-between;
    overflow: visible;
  }
  .header-entry span {
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
    font-size: clamp(.68rem, 2.8vw, .78rem);
  }
  .header-entry i { display: block; }
  .menu-button { flex: 0 0 42px; width: 42px; min-width: 42px; height: 42px; }

  .hero { min-height: max(760px, 100svh); }
  .page-hero { min-height: min(760px, 88svh); }
  .hero__media img, .page-hero__media img { object-position: center center; }
  .page-hero__content { width: 100%; }

  .section { padding: 82px 0; }
  .entry-cta__inner { padding: 82px 0; }
  .section-heading h2 { max-width: 10ch; }
  .portal-card { min-height: 380px; }

  .motion-svg { opacity: .55; }
}

@media (max-width: 420px) {
  .site-header,
  body.inner-page .site-header { padding-inline: 10px; gap: 6px; }
  .brand img { width: clamp(148px, 41vw, 170px); }
  .header-entry { flex-basis: 132px; width: 132px; padding-inline: 13px; }
  .menu-button { flex-basis: 40px; width: 40px; min-width: 40px; }
  .hero__title { font-size: clamp(3.5rem, 17.5vw, 4.65rem); }
  .page-hero h1 { font-size: clamp(3rem, 14.5vw, 4.5rem); }
  .section-heading h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
}

@media (max-width: 374px) {
  .brand img { width: 142px; }
  .header-entry { flex-basis: 118px; width: 118px; padding-inline: 11px; }
  .header-entry i { display: none; }
  .header-entry span { font-size: .65rem; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .global-nav { gap: 15px; margin-right: 16px; }
  .global-nav a { font-size: .7rem; }
  .brand img { width: 170px; }
  .brand span { max-width: 180px; font-size: .56rem; }
  .header-entry { min-width: 142px; padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-svg * { animation: none !important; }
}


/* ===== Column / Blogger integration (v9) ===== */
.column-section { background: #f5f5f2; }
.column-status { margin-top: 42px; padding: 24px; border: 1px solid rgba(8,27,47,.16); color: #607080; }
.column-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px; margin-top:48px; }
.column-card { background:#fff; min-width:0; border:1px solid rgba(8,27,47,.1); transition:transform .45s var(--ease),box-shadow .45s var(--ease); }
.column-card:hover { transform:translateY(-8px); box-shadow:0 24px 55px rgba(8,27,47,.12); }
.column-card__button { appearance:none; border:0; padding:0; width:100%; background:none; color:inherit; text-align:left; cursor:pointer; font:inherit; }
.column-card__image { aspect-ratio:16/10; overflow:hidden; background:#dfe5e9; }
.column-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.column-card:hover .column-card__image img { transform:scale(1.045); }
.column-card__body { padding:26px 24px 28px; }
.column-card__meta { display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px; margin-bottom:18px; font-size:.68rem; letter-spacing:.12em; color:#6c7a86; }
.column-card__meta span,.column-modal__labels span { padding:5px 9px; border:1px solid rgba(8,27,47,.16); }
.column-card h3 { font-size:clamp(1.18rem,1.8vw,1.55rem); line-height:1.55; margin:0 0 14px; overflow-wrap:anywhere; }
.column-card p { color:#607080; line-height:1.9; margin:0; }
.column-card__more { display:flex; justify-content:space-between; align-items:center; margin-top:24px; padding-top:18px; border-top:1px solid rgba(8,27,47,.12); font-size:.68rem; letter-spacing:.16em; }
.column-setup { margin-top:28px; padding:28px; background:#081b2f; color:#fff; }
.column-setup h3 { margin:0 0 12px; }
.column-setup p { margin:0; line-height:1.9; color:#c9d4df; }
.column-setup code { color:#78aefc; }
.column-modal { position:fixed; inset:0; z-index:10000; pointer-events:none; opacity:0; transition:opacity .35s ease; }
.column-modal.is-open { pointer-events:auto; opacity:1; }
.column-modal__backdrop { position:absolute; inset:0; background:rgba(2,12,24,.78); backdrop-filter:blur(8px); }
.column-modal__panel { position:absolute; top:0; right:0; width:min(860px,92vw); height:100%; overflow:auto; background:#fff; padding:clamp(70px,8vw,110px) clamp(24px,6vw,80px); transform:translateX(100%); transition:transform .55s var(--ease); }
.column-modal.is-open .column-modal__panel { transform:translateX(0); }
.column-modal__close { position:absolute; top:22px; right:24px; width:48px; height:48px; border:1px solid rgba(8,27,47,.18); background:#fff; font-size:2rem; line-height:1; cursor:pointer; }
.column-modal__date { color:#6c7a86; letter-spacing:.12em; font-size:.75rem; }
.column-modal__panel h2 { font-size:clamp(2rem,5vw,4rem); line-height:1.25; margin:18px 0 24px; overflow-wrap:anywhere; }
.column-modal__labels { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:34px; font-size:.68rem; letter-spacing:.1em; }
.column-modal__body { font-size:1rem; line-height:2; color:#26394b; }
.column-modal__body img { max-width:100%; height:auto; margin:28px 0; }
.column-modal__body h2,.column-modal__body h3 { font-size:clamp(1.35rem,3vw,2rem); margin:42px 0 16px; line-height:1.5; }
body.modal-open { overflow:hidden; }
@media (max-width:980px){ .column-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:640px){ .column-grid{grid-template-columns:1fr;gap:20px;margin-top:32px;} .column-card__body{padding:22px 20px 24px;} .column-modal__panel{width:100vw;} }

/* =========================================================
   v10 — mobile-first responsive reconstruction
   ========================================================= */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.motion-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.motion-word > span { display: inline-block; }

@media (max-width: 760px) {
  :root { --container: calc(100vw - 40px); }
  body { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
  .container { width: var(--container); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .heading-phrases { font-size: clamp(2rem, 9.2vw, 2.75rem) !important; line-height: 1.22 !important; letter-spacing: -.045em !important; overflow-wrap: normal; word-break: keep-all; }
  .heading-phrases .phrase { display: block; }
  .lead, .page-hero__lead, .contact-intro__copy { font-size: .94rem !important; line-height: 1.85 !important; }

  .site-header { height: 72px; padding: 0 16px; gap: 10px; }
  .brand { min-width: 0; flex: 1 1 auto; gap: 0; }
  .brand img { width: min(210px, 53vw); max-height: 50px; object-fit: contain; object-position: left center; }
  .brand span { display: none; }
  .header-entry { min-width: 0; width: auto; height: 46px; padding: 0 14px; gap: 8px; flex: 0 0 auto; }
  .header-entry span { font-size: .72rem; white-space: nowrap; }
  .header-entry i { font-size: .82rem; }
  .menu-button { width: 44px; height: 44px; flex: 0 0 44px; }

  .mobile-menu { align-items: start; overflow-y: auto; overscroll-behavior: contain; }
  .mobile-menu__inner { width: calc(100vw - 40px); margin: 106px auto 54px; }
  .mobile-menu__eyebrow { margin: 0 0 22px; font-size: .65rem; line-height: 1.6; }
  .mobile-menu a { min-height: 58px; display: flex; align-items: center; padding: 14px 38px 14px 0; font-size: clamp(1.36rem, 6vw, 1.85rem); line-height: 1.25; }

  .page-hero { min-height: 78svh; max-height: none; padding: 124px 0 58px; align-items: flex-end; }
  .page-hero__inner { width: calc(100vw - 40px); }
  .breadcrumb { margin-bottom: 26px; font-size: .62rem; }
  .page-hero__en { margin-bottom: 16px; font-size: .7rem; line-height: 1.5; letter-spacing: .13em; }
  .page-hero h1 { max-width: 11em; font-size: clamp(2.55rem, 12.6vw, 3.55rem) !important; line-height: 1.14 !important; letter-spacing: -.055em !important; word-break: keep-all; overflow-wrap: normal; }
  .page-hero__lead { max-width: 22em; margin-top: 24px; }
  .page-hero__number, .scroll-cue { display: none; }
  .page-hero__shade { background: linear-gradient(90deg, rgba(0,12,28,.94), rgba(0,12,28,.62) 80%), linear-gradient(0deg, rgba(0,12,28,.88), transparent 78%); }
  .page-hero__media img, .page-hero__media .rotator-image { object-position: center center; }
  .image-rotator__controls { bottom: 20px; right: 20px; transform: scale(.82); transform-origin: right bottom; }

  .button, .link-button, .form-submit, .entry-option__link { min-height: 56px !important; }
  .header-entry { min-height: 46px !important; }
  .entry-option { padding: 28px 22px; }
  .entry-option h2 { font-size: 1.45rem; line-height: 1.35; }

  .contact-intro,
  .contact-form-layout,
  .contact-address { grid-template-columns: 1fr !important; gap: 34px !important; }
  .contact-options { grid-template-columns: 1fr !important; }
  .contact-form { gap: 18px; }
  .form-row { grid-template-columns: 1fr !important; gap: 18px !important; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; padding: 14px 15px; }

  .site-footer { padding: 64px 0 26px; }
  .site-footer__top { gap: 40px; }
  .footer-brand img { width: min(290px, 78vw); }
  .footer-brand span { display: none; }
  .site-footer nav { width: 100%; display: grid; grid-template-columns: 1fr !important; gap: 0 !important; }
  .site-footer nav a { display: flex; align-items: center; min-height: 50px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
  .site-footer__title { display: none; }
  .site-footer__bottom { margin-top: 44px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .back-to-top { width: 52px; height: 52px; right: 18px; bottom: 18px; }

  [data-tilt] { transform: none !important; }
}

@media (max-width: 390px) {
  :root { --container: calc(100vw - 32px); }
  .site-header { padding-inline: 12px; }
  .brand img { width: min(178px, 49vw); }
  .header-entry { padding-inline: 10px; }
  .header-entry span { font-size: .65rem; }
  .menu-button { width: 40px; height: 40px; flex-basis: 40px; }
  .page-hero__inner, .mobile-menu__inner { width: calc(100vw - 32px); }
  .page-hero h1 { font-size: clamp(2.25rem, 12vw, 3rem) !important; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  :root { --container: calc(100vw - 64px); }
  .section { padding: 104px 0; }
  .global-nav { display: none; }
  .menu-button { display: grid; }
  .page-hero { min-height: 68svh; }
  .page-hero h1 { font-size: clamp(4rem, 9vw, 6rem); }
}

/* =========================================================
   v12 — mobile overflow and natural line-break correction
   ========================================================= */
html, body { max-width: 100%; overflow-x: clip; }
img, svg, video, canvas { max-width: 100%; }

@media (max-width: 760px) {
  /* The home hero must fit the real CSS viewport, including 320–430px phones. */
  .hero { min-height: max(700px, 100svh); overflow: hidden; }
  .hero__content {
    width: calc(100vw - 36px);
    max-width: none;
    padding: 118px 0 52px;
  }
  .hero__label {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(.58rem, 2.6vw, .68rem);
    letter-spacing: .12em;
  }
  .hero__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.8rem, 13.2vw, 3.75rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.065em !important;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .hero__title > span {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .hero__title .outline {
    margin: 8px 0 0;
    -webkit-text-stroke-width: 1px;
  }
  .hero__bottom {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }
  .hero__bottom .heading-phrases {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.12rem, 5.7vw, 1.42rem) !important;
    line-height: 1.58 !important;
    letter-spacing: -.025em !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: pretty;
  }
  .hero__bottom .heading-phrases .phrase {
    display: inline;
  }
  .hero__bottom .heading-phrases .phrase + .phrase::before {
    content: " ";
  }
  .hero__actions {
    margin-top: 26px;
    gap: 12px;
  }
  .circle-link {
    width: 88px;
    min-width: 88px;
    font-size: .65rem;
  }
  .hero__number { display: none; }

  /* Never let animation wrappers turn a complete Japanese sentence into
     one unbreakable inline block on small screens. */
  .hero .motion-word,
  .hero .motion-word > span,
  .page-hero .motion-word,
  .page-hero .motion-word > span,
  .section-heading .motion-word,
  .section-heading .motion-word > span,
  .entry-cta .motion-word,
  .entry-cta .motion-word > span {
    display: inline;
    overflow: visible;
    transform: none !important;
  }

  .page-hero h1,
  .section-heading h2,
  .entry-cta h2,
  .message__content h2,
  .feature-link h2 {
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: pretty;
  }

  .ticker { overflow: hidden; }
  .ticker__track { width: max-content; }
}

@media (max-width: 390px) {
  .hero__content { width: calc(100vw - 30px); padding-top: 108px; }
  .hero__title { font-size: clamp(2.58rem, 12.9vw, 3.25rem) !important; }
  .hero__bottom .heading-phrases { font-size: clamp(1.02rem, 5.4vw, 1.25rem) !important; }
  .circle-link { width: 82px; min-width: 82px; }
}


/* =========================================================
   LIGHTER COLOR THEME — v13
   Revert by replacing this file with the v12 backup version.
   ========================================================= */
:root {
  --navy: #164d83;
  --navy-deep: #0a2d52;
  --blue: #2678ee;
  --blue-soft: #9fc7ff;
  --ice: #edf6ff;
  --paper: #fafaf7;
  --ink: #10243a;
  --muted: #60758b;
  --line: rgba(16, 36, 58, .13);
  --line-light: rgba(255,255,255,.28);
}
.section--dark,.mobile-menu,.page-loader,.hero,.page-hero,.site-footer { background-color: var(--navy-deep); }
.hero__media img { filter: grayscale(.35) saturate(.92) brightness(1.08) contrast(1.02); }
.hero__shade { background: linear-gradient(90deg, rgba(10,45,82,.78) 0%, rgba(10,45,82,.40) 56%, rgba(10,45,82,.16) 100%), linear-gradient(0deg, rgba(10,45,82,.58), transparent 62%); }
.page-hero__media img { filter: grayscale(.30) saturate(.92) brightness(1.08) contrast(1.02); }
.page-hero__shade { background: linear-gradient(90deg, rgba(10,45,82,.80), rgba(10,45,82,.38) 65%, rgba(10,45,82,.12)), linear-gradient(0deg, rgba(10,45,82,.55), transparent 68%); }
.portal-card__image img { filter: grayscale(.30) saturate(.90) brightness(.72) contrast(1.02); }
.portal-card::after { background: linear-gradient(180deg, rgba(10,45,82,.10), rgba(10,45,82,.68)); }
.portal-card:hover .portal-card__image img { filter: grayscale(.10) saturate(1) brightness(.80); }
.message-preview__media img { filter: grayscale(.30) saturate(.90) brightness(1.04); }
.hero__grid,.page-hero__grid { opacity: .14; }
.hero__orbit { border-color: rgba(159,199,255,.42); }
.section-index { color: rgba(22,77,131,.05); }
.site-header.is-scrolled,body.inner-page .site-header { background: rgba(250,250,247,.95); border-bottom-color: rgba(22,77,131,.12); }
.header-entry,.ticker,.section--blue { background: var(--blue); }
.cursor-ring { border-color: rgba(38,120,238,.55); }
.cursor-ring.is-hover { background: rgba(38,120,238,.10); }
.section--dark .home-jobs__copy,.section--dark .portal-card p,.site-footer,.mobile-menu { color: #f5f9ff; }
@media (max-width: 767px) {
  .hero__shade { background: linear-gradient(180deg, rgba(10,45,82,.24) 0%, rgba(10,45,82,.48) 45%, rgba(10,45,82,.76) 100%); }
  .page-hero__shade { background: linear-gradient(180deg, rgba(10,45,82,.30), rgba(10,45,82,.68)); }
}

/* NEWS page v14 */
.news-section{background:#f7f8fa;padding-block:clamp(80px,9vw,150px)}
.news-container{max-width:1180px;margin-inline:auto}
.news-heading{max-width:760px;margin:0 auto 64px;text-align:center}
.news-heading h2{font-size:clamp(4rem,10vw,9rem);line-height:.9;letter-spacing:-.055em;margin:20px 0 28px;color:var(--navy)}
.news-heading>p:last-child{color:var(--muted);line-height:1.9}
.news-tools{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;padding:26px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin-bottom:20px}
.news-search{display:grid;gap:8px;min-width:min(360px,100%)}
.news-search span{font-size:.66rem;letter-spacing:.18em;color:var(--blue)}
.news-search input{border:0;border-bottom:1px solid rgba(8,27,47,.3);background:transparent;padding:11px 2px;font:inherit;color:var(--navy);outline:none}
.news-search input:focus{border-color:var(--blue)}
.news-categories{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}
.news-categories button{border:1px solid rgba(8,27,47,.2);background:transparent;padding:9px 13px;cursor:pointer;color:var(--navy);font:inherit;font-size:.75rem;transition:.25s}
.news-categories button:hover,.news-categories button.is-active{background:var(--navy);color:#fff;border-color:var(--navy)}
.news-list{width:100%;margin:0 auto;border-top:1px solid var(--line)}
.news-row{border-bottom:1px solid var(--line);transition:background .35s}
.news-row:hover{background:#fff}
.news-row__link{display:grid;grid-template-columns:180px 150px 1fr 54px;align-items:center;gap:34px;padding:32px 24px;color:inherit}
.news-row__media{aspect-ratio:16/10;overflow:hidden;background:#e5e9ed}
.news-row__media img{width:100%;height:100%;object-fit:cover;transition:transform .65s var(--ease),filter .65s var(--ease)}
.news-row:hover .news-row__media img{transform:scale(1.06);filter:saturate(1.08)}
.news-row__meta{display:grid;gap:10px;align-self:start;padding-top:4px}
.news-row__meta time{font-size:.78rem;letter-spacing:.12em;color:#657585}
.news-row__meta span{width:max-content;padding:5px 8px;border:1px solid rgba(8,27,47,.16);font-size:.66rem}
.news-row__copy h3{font-size:clamp(1.25rem,2vw,1.8rem);line-height:1.45;margin:0 0 10px}
.news-row__copy p{margin:0;color:var(--muted);line-height:1.85}
.news-row__arrow{font-size:1.45rem;transition:transform .35s}
.news-row:hover .news-row__arrow{transform:translate(6px,-6px)}
.news-pagination{display:flex;justify-content:center;gap:8px;margin-top:48px}
.news-pagination button{width:44px;height:44px;border:1px solid var(--line);background:#fff;cursor:pointer;font:inherit}
.news-pagination button.is-active,.news-pagination button:hover{background:var(--navy);color:#fff}
.news-empty{text-align:center;padding:80px 20px;color:var(--muted);border-bottom:1px solid var(--line)}

.news-detail-main{background:#f7f8fa}
.news-detail{padding:clamp(90px,10vw,150px) 0}
.news-detail__inner{max-width:900px;margin:auto}
.news-detail__breadcrumb{display:flex;gap:10px;align-items:center;font-size:.72rem;letter-spacing:.08em;color:var(--muted);margin-bottom:50px}
.news-detail__meta{display:flex;gap:14px;align-items:center;margin-bottom:24px;color:var(--muted);font-size:.78rem;letter-spacing:.1em}
.news-detail__meta span{border:1px solid var(--line);padding:5px 9px}
.news-detail h1{font-size:clamp(2.2rem,6vw,5.4rem);line-height:1.2;letter-spacing:-.04em;margin:0 0 48px}
.news-detail__image{aspect-ratio:16/9;overflow:hidden;background:#e4e9ed;margin-bottom:55px}
.news-detail__image img{width:100%;height:100%;object-fit:cover}
.news-detail__body{max-width:760px;margin:auto;font-size:1rem;line-height:2.1;color:#34485c}
.news-detail__body p{margin:0 0 1.5em}
.news-share{display:flex;align-items:center;gap:12px;margin:55px auto 0;max-width:760px;padding-top:30px;border-top:1px solid var(--line)}
.news-share span{font-size:.72rem;letter-spacing:.14em;margin-right:8px}
.news-share a,.news-share button{border:1px solid var(--line);background:#fff;padding:10px 14px;color:inherit;cursor:pointer;font:inherit;font-size:.78rem}
.related-news{max-width:900px;margin:100px auto 0}
.related-news h2{font-size:clamp(2rem,5vw,4rem);margin:0 0 35px}
.related-news__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.related-news__card{background:#fff;border:1px solid var(--line);padding:24px;min-height:180px;display:flex;flex-direction:column;justify-content:space-between}
.related-news__card time{font-size:.7rem;color:var(--muted);letter-spacing:.1em}
.related-news__card h3{font-size:1rem;line-height:1.6;margin:20px 0 0}

@media(max-width:900px){
 .news-tools{align-items:stretch;flex-direction:column}.news-categories{justify-content:flex-start}.news-search{min-width:0;width:100%}
 .news-row__link{grid-template-columns:140px 1fr 42px;gap:20px;padding:24px 0}.news-row__meta{grid-column:2}.news-row__copy{grid-column:2}.news-row__arrow{grid-column:3;grid-row:1/3}.news-row__media{grid-row:1/3}
 .related-news__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
 .news-heading{text-align:left;margin-bottom:44px}.news-heading h2{font-size:clamp(3.6rem,22vw,6rem)}
 .news-categories{display:grid;grid-template-columns:repeat(2,1fr)}.news-categories button{text-align:center}
 .news-row__link{grid-template-columns:1fr 34px;gap:14px;padding:26px 0}.news-row__media{grid-column:1/3;grid-row:auto;aspect-ratio:16/9}.news-row__meta{grid-column:1;grid-row:auto;display:flex;flex-wrap:wrap}.news-row__copy{grid-column:1/3}.news-row__arrow{grid-column:2;grid-row:2;align-self:start}.news-row__copy p{font-size:.9rem}.news-row__copy h3{font-size:1.25rem}
 .news-detail{padding-top:70px}.news-detail__breadcrumb{margin-bottom:35px}.news-detail h1{font-size:2.35rem;margin-bottom:34px}.news-detail__image{margin-bottom:38px}.news-detail__body{font-size:.96rem}.news-share{flex-wrap:wrap}.related-news{margin-top:70px}.related-news__grid{grid-template-columns:1fr}
}

/* v15 CMS + flowing typography */
.flowing-type{position:relative;overflow:hidden;background:#0b3f86;color:#fff;border-top:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);padding:clamp(18px,2.1vw,30px) 0;z-index:3}
.flowing-type__track{display:flex;width:max-content;white-space:nowrap;will-change:transform}
.flowing-type__item{display:flex;align-items:center;gap:clamp(32px,5vw,86px);padding-right:clamp(32px,5vw,86px);font-family:Avenir Next,Avenir,Inter,Helvetica Neue,sans-serif;font-size:clamp(2.1rem,5.7vw,6.8rem);font-weight:700;line-height:.95;letter-spacing:-.045em;text-transform:uppercase}
.flowing-type__item i{display:block;width:clamp(34px,4vw,70px);height:1px;background:currentColor;opacity:.65}
.slide-reveal{position:relative;overflow:hidden}
.slide-reveal > .slide-reveal__inner{display:block;transform:translateX(-105%);opacity:.01;will-change:transform,opacity}
.cms-status{margin:0 0 28px;padding:14px 18px;border-left:3px solid #2f78d0;background:#eef6ff;font-size:.88rem;line-height:1.8}
.news-loading{padding:56px 0;text-align:center;color:#64748b;letter-spacing:.08em}
@media(max-width:760px){.flowing-type{padding:14px 0}.flowing-type__item{font-size:clamp(2rem,12vw,3.6rem);gap:28px;padding-right:28px}.flowing-type__item i{width:32px}}
@media(prefers-reduced-motion:reduce){.flowing-type__track{transform:none!important}.slide-reveal>.slide-reveal__inner{transform:none!important;opacity:1!important}}


/* =========================================================
   v16 — typography clipping fix / flowing banner removal
   ========================================================= */
.ticker,
.flowing-type { display: none !important; }

/* Never clip headings or Japanese copy during reveal animations. */
[data-motion-heading],
.section-heading h2,
.heading-phrases,
.hero__title,
.hero__bottom p,
.business-overview__copy,
.intro__copy,
.page-hero__inner {
  overflow: visible !important;
  clip-path: none !important;
  max-width: 100%;
}

.motion-word {
  overflow: visible !important;
  white-space: normal !important;
  max-width: 100%;
}

/* Natural Japanese wrapping without creating one unbreakable giant word. */
.section-heading h2,
.heading-phrases,
.hero__bottom p,
.business-overview__copy p,
.intro__copy p,
.page-hero h1,
.page-hero__lead,
.message-preview__copy h2,
.message__content h2,
.entry-cta h2 {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  line-break: strict;
  text-wrap: pretty;
}

.heading-phrases .phrase {
  max-width: 100%;
  white-space: normal !important;
}

/* Keep two-column copy inside its own grid cell. */
.business-overview__grid > *,
.intro__grid > *,
.culture-top > *,
.jobs-intro > *,
.message-preview__grid > *,
.message__grid > * {
  min-width: 0;
}

@media (min-width: 761px) {
  .section-heading h2,
  .heading-phrases { font-size: clamp(2.6rem, 4.6vw, 4.8rem); }
  .business-overview__grid { gap: clamp(52px, 7vw, 112px); }
}

@media (max-width: 760px) {
  .section-heading h2,
  .heading-phrases,
  .hero__bottom .heading-phrases {
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: pretty;
  }
  .heading-phrases .phrase { display: block; }
}

/* v17: headings controlled by scroll-linked GSAP motion. */
[data-motion-heading] {
  will-change: transform, opacity, filter;
  transform-origin: left center;
}
@media (prefers-reduced-motion: reduce) {
  [data-motion-heading] { opacity: 1 !important; transform: none !important; filter: none !important; }
}


/* =========================================================
   v18 — thin hero boundary runner + slower heading reveal
   ========================================================= */
.boundary-runner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 8px; /* approximately 2mm on standard displays */
  overflow: hidden;
  background: #075de8;
}
.boundary-runner span {
  position: absolute;
  inset: 0 auto 0 -28%;
  width: 28%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.32) 42%,
    rgba(255,255,255,.9) 50%,
    rgba(255,255,255,.32) 58%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  animation: boundaryRunner 13s linear infinite;
  will-change: transform;
}
@keyframes boundaryRunner {
  from { transform: translateX(0) skewX(-18deg); }
  to   { transform: translateX(460%) skewX(-18deg); }
}

[data-motion-heading]:not(.hero__title) {
  backface-visibility: hidden;
}

@media (max-width: 760px) {
  .boundary-runner { height: 7px; }
  .boundary-runner span { width: 38%; inset-inline-start: -38%; animation-duration: 11s; }
}

@media (prefers-reduced-motion: reduce) {
  .boundary-runner span { animation: none; opacity: .35; transform: none; left: 36%; }
}

/* =========================================================
   v19 — spacing system, readable hierarchy, responsive polish
   ========================================================= */
:root {
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
}

/* Consistent section rhythm based on an 8px grid. */
.section { padding-block: clamp(88px, 9vw, 144px); }
.section-heading { position: relative; min-width: 0; }
.section-heading .eyebrow { margin-bottom: clamp(24px, 2.4vw, 32px); }
.section-heading h2,
.entry-cta h2,
.news-heading h2 {
  margin-top: 0;
  text-wrap: balance;
}

/* Give large headings a deliberate reading pause before supporting copy. */
.section-heading + :is(.intro__copy,.business-overview__copy,.culture-top__copy,.jobs-intro__copy,.partner-intro__copy,.contact-intro__copy),
.entry-cta h2 + p,
.news-heading h2 + p {
  position: relative;
}

.intro__grid,
.business-overview__grid,
.culture-top,
.jobs-intro,
.partner-intro,
.contact-intro {
  column-gap: clamp(56px, 8vw, 120px);
  row-gap: var(--space-7);
}

.intro__copy,
.business-overview__copy,
.culture-top__copy,
.jobs-intro__copy,
.partner-intro__copy,
.contact-intro__copy {
  padding-top: clamp(40px, 5vw, 72px);
}

:is(.intro__copy,.business-overview__copy,.culture-top__copy,.jobs-intro__copy,.partner-intro__copy,.contact-intro__copy) .lead {
  margin-bottom: var(--space-4);
}

:is(.intro__copy,.business-overview__copy,.culture-top__copy,.jobs-intro__copy,.partner-intro__copy,.contact-intro__copy) p + p {
  margin-top: var(--space-3);
}

/* Home contact CTA: prevent the lead from visually touching the display heading. */
.entry-cta__inner { padding-block: clamp(104px, 10vw, 152px); }
.entry-cta h2 {
  margin-bottom: clamp(48px, 5vw, 72px);
  max-width: 12ch;
}
.entry-cta__inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  font-size: clamp(.98rem, 1.3vw, 1.12rem);
  line-height: 2;
}
.entry-cta__actions { margin-top: clamp(40px, 4.5vw, 64px); }

/* NEWS: keep title and description in normal document flow with ample separation. */
.news-section { padding-block: clamp(96px, 10vw, 160px); }
.news-heading {
  max-width: 880px;
  margin: 0 auto clamp(72px, 8vw, 112px);
  text-align: center;
  position: relative;
}
.news-heading .eyebrow { justify-content: center; margin-bottom: clamp(28px, 3vw, 40px); }
.news-heading h2 {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  font-size: clamp(4.6rem, 10vw, 8.5rem);
  line-height: .88;
  margin: 0;
  color: var(--navy);
  opacity: 1;
}
.news-heading > p:last-child {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: clamp(56px, 6vw, 80px) auto 0;
  line-height: 2;
  color: var(--muted);
}

/* Decorative giant labels should remain atmospheric, not compete with copy. */
.section-index {
  opacity: .55;
  color: rgba(0, 26, 61, .055);
  transform: translateY(-3%);
  font-size: clamp(6.5rem, 15vw, 15rem);
}

/* Maintain consistent image treatment and alignment. */
.business-visual,
.message-preview__media,
.message__media,
.photo,
.portal-card__image,
.news-row__media {
  background: #dfe5eb;
}
.business-visual img,
.message-preview__media img,
.message__media img,
.photo img,
.portal-card__image img,
.news-row__media img {
  object-position: center center;
}
.business-visual { margin-top: clamp(64px, 7vw, 104px); }
.photo-collage { margin-top: clamp(64px, 7vw, 96px); }

/* Unified interactive rhythm. */
.entry-button,
.header-entry,
.text-link,
.circle-link,
.portal-card,
.news-row,
.home-job-link {
  transition-timing-function: var(--motion-ease) !important;
}

@media (max-width: 900px) {
  .intro__grid,
  .business-overview__grid,
  .culture-top,
  .jobs-intro,
  .partner-intro,
  .contact-intro {
    grid-template-columns: 1fr;
    row-gap: var(--space-5);
  }
  .intro__copy,
  .business-overview__copy,
  .culture-top__copy,
  .jobs-intro__copy,
  .partner-intro__copy,
  .contact-intro__copy {
    padding-top: 0;
    max-width: 720px;
  }
  .news-heading { text-align: left; }
  .news-heading .eyebrow { justify-content: flex-start; }
  .news-heading > p:last-child { margin-left: 0; margin-right: 0; }
}

@media (max-width: 760px) {
  .section { padding-block: 80px; }
  .section-heading .eyebrow { margin-bottom: 24px; }
  .section-heading h2 { line-height: 1.18; }
  .entry-cta__inner { padding-block: 88px; }
  .entry-cta h2 {
    max-width: 100%;
    margin-bottom: 40px;
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    line-height: 1.16;
  }
  .entry-cta__inner > p:not(.eyebrow) {
    font-size: .94rem;
    line-height: 1.9;
  }
  .entry-cta__actions { margin-top: 40px; }
  .news-section { padding-block: 80px 96px; }
  .news-heading { margin-bottom: 64px; }
  .news-heading h2 { font-size: clamp(4rem, 21vw, 6rem); }
  .news-heading > p:last-child {
    margin-top: 40px;
    font-size: .94rem;
    line-height: 1.9;
  }
  .section-index {
    font-size: clamp(5.5rem, 25vw, 8rem);
    opacity: .42;
    top: 22px;
  }
  .business-visual,
  .photo-collage { margin-top: 56px; }
}

@media (max-width: 390px) {
  .section { padding-block: 72px; }
  .entry-cta h2 { font-size: clamp(2.25rem, 10.8vw, 3rem); }
  .news-heading h2 { font-size: clamp(3.8rem, 20vw, 5.2rem); }
}

/* =========================================================
   v20 — 4mm English marquee + scroll-triggered typewriter copy
   ========================================================= */
.boundary-runner {
  height: 4mm;
  min-height: 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(0,12,28,.18);
}
.boundary-runner__track {
  flex: 0 0 auto;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  white-space: nowrap;
  color: #fff;
  animation: boundaryMarquee 38s linear infinite;
  will-change: transform;
}
.boundary-runner__track span {
  font: 700 9px/1 var(--font-en);
  letter-spacing: .22em;
}
.boundary-runner__track i {
  font-style: normal;
  font-size: 5px;
  opacity: .76;
}
@keyframes boundaryMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[data-typewriter-group].typewriter-ready .typewriter-line {
  position: relative;
}
[data-typewriter-group].typewriter-ready .typewriter-char {
  opacity: 0;
}
[data-typewriter-group].typewriter-ready .typewriter-char.is-typed {
  opacity: 1;
}
[data-typewriter-group].is-typing .typewriter-line.is-current::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .95em;
  margin-left: 3px;
  vertical-align: -.08em;
  background: var(--blue);
  animation: typewriterCaret .58s steps(1,end) infinite;
}
@keyframes typewriterCaret { 50% { opacity: 0; } }

@media (max-width: 760px) {
  .boundary-runner { height: 4mm; min-height: 15px; }
  .boundary-runner__track { gap: 17px; animation-duration: 31s; }
  .boundary-runner__track span { font-size: 8px; letter-spacing: .18em; }
}

@media (prefers-reduced-motion: reduce) {
  .boundary-runner__track { animation: none; }
  [data-typewriter-group] .typewriter-char { opacity: 1 !important; }
  [data-typewriter-group] .typewriter-line::after { display: none !important; }
}

/* =========================================================
   v21 — sitewide intro typewriter + faster heading reveal
   ========================================================= */
[data-typewriter-group] {
  min-width: 0;
}
[data-typewriter-group] .typewriter-line {
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
.contact-intro__copy[data-typewriter-group] p {
  margin: 0;
}
@media (max-width: 760px) {
  .boundary-runner__track {
    animation-duration: 36s;
  }
}

/* =========================================================
   v22 — responsive text-motion system
   ========================================================= */
.text-line-reveal { will-change: clip-path, transform, opacity; }

.text-word-rise { overflow: hidden; }
.text-word-rise__word,
.text-word-rise__space { display: inline-block; }
.text-word-rise__space { white-space: pre-wrap; }
.text-word-rise__word { will-change: transform, opacity; }

.text-highlight-sweep {
  --text-highlight-progress: 0%;
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(90deg,
    rgba(7,93,232,.13) 0,
    rgba(7,93,232,.13) var(--text-highlight-progress),
    transparent var(--text-highlight-progress),
    transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% .44em;
  background-position: 0 88%;
  transition: background-size .35s ease;
}

.hero__title .outline {
  background-image: linear-gradient(100deg, transparent 34%, rgba(255,255,255,.9) 49%, transparent 64%);
  background-size: 260% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.entry-button span,
.header-entry span,
.text-link,
.portal-card__link {
  transition: letter-spacing .35s var(--ease), transform .35s var(--ease);
}
.entry-button:hover span,
.header-entry:hover span,
.text-link:hover,
.portal-card:hover .portal-card__link { letter-spacing: .14em; }

/* Typewriter is intentionally enabled on mobile as well. Each character remains
   inline so Japanese wraps naturally without causing horizontal overflow. */
.typewriter-line { min-height: 1em; }
.typewriter-char { display: inline; }

@media (max-width: 760px) {
  [data-typewriter-group] .typewriter-line {
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
  }
  [data-typewriter-group].typewriter-ready .typewriter-char { opacity: 0; }
  [data-typewriter-group].typewriter-ready .typewriter-char.is-typed { opacity: 1; }
  [data-typewriter-group].is-typing .typewriter-line.is-current::after {
    width: 1.5px;
    margin-left: 2px;
  }
  .text-highlight-sweep { background-size: 100% .34em; }
  .text-word-rise { overflow: clip; }
  .entry-button:hover span,
  .header-entry:hover span,
  .text-link:hover { letter-spacing: inherit; }
}

@media (prefers-reduced-motion: reduce) {
  .text-line-reveal,
  .text-word-rise__word { clip-path: none !important; transform: none !important; opacity: 1 !important; }
  .text-highlight-sweep { --text-highlight-progress: 0% !important; background-image: none !important; }
}


/* =========================================================
   v23 — footer info / column spacing / phrase highlight tune
   ========================================================= */
.footer-brand-wrap { display: grid; gap: 18px; align-items: start; }
.footer-brand { align-items: center; }
.footer-brand__info { display: grid; gap: 6px; padding-left: 253px; }
.footer-brand__info p { margin: 0; color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.8; letter-spacing: .01em; }
.footer-brand__info a { color: inherit; }
.footer-brand__info a:hover { color: #fff; }

.page-hero__lead { max-width: 720px; margin-top: 48px; }
.page-hero--column .page-hero__lead { margin-top: 54px; }
.page-hero--column h1 { margin-bottom: 0; }

.text-highlight-sweep--phrases { background-image: none; }
.text-highlight-sweep--phrases .phrase {
  display: inline;
  background-image: linear-gradient(90deg,
    rgba(7,93,232,.13) 0,
    rgba(7,93,232,.13) var(--text-highlight-progress),
    transparent var(--text-highlight-progress),
    transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% .44em;
  background-position: 0 88%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.boundary-runner__track { gap: 18px; }
.boundary-runner__track i { font-size: 8px; opacity: .82; }

@media (max-width: 900px) {
  .footer-brand__info { padding-left: 0; }
}

@media (max-width: 760px) {
  .page-hero__lead { margin-top: 34px; }
  .page-hero--column .page-hero__lead { margin-top: 40px; }
  .footer-brand-wrap { gap: 14px; }
  .footer-brand__info { gap: 4px; }
  .footer-brand__info p { font-size: .82rem; line-height: 1.7; }
}


/* =========================================================
   v25 — final fix: readable product ticker + full phrase marker
   ========================================================= */
/* Override the legacy v18 rule that accidentally styled every ticker span. */
.boundary-runner .boundary-runner__track span {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  min-width: 0 !important;
  background: none !important;
  transform: none !important;
  animation: none !important;
  opacity: 1 !important;
  color: #fff !important;
}
.boundary-runner .boundary-runner__track {
  position: relative;
  flex: 0 0 auto;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  white-space: nowrap;
  color: #fff;
  animation: boundaryMarquee 46s linear infinite !important;
  will-change: transform;
}
.boundary-runner .boundary-runner__track span {
  font: 700 9px/1 var(--font-en) !important;
  letter-spacing: .20em !important;
  white-space: nowrap !important;
}
.boundary-runner .boundary-runner__track i {
  display: inline-block;
  color: rgba(255,255,255,.72);
  font: 400 9px/1 var(--font-en);
  font-style: normal;
  opacity: 1;
}

/* Start the blue marker at the first character and clone it on every wrapped line. */
.intro__copy .lead.text-highlight-sweep,
.intro__copy .lead.text-highlight-sweep--phrases {
  background-image: none !important;
}
.intro__copy .lead .typewriter-content {
  --marker-progress: var(--text-highlight-progress, 0%);
  display: inline;
  padding-inline: .03em;
  background-image: linear-gradient(90deg,
    rgba(7,93,232,.14) 0,
    rgba(7,93,232,.14) var(--marker-progress),
    transparent var(--marker-progress),
    transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% .42em;
  background-position: 0 91%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 760px) {
  .boundary-runner .boundary-runner__track {
    gap: 18px;
    padding-inline: 18px;
    animation-duration: 42s !important;
  }
  .boundary-runner .boundary-runner__track span {
    font-size: 8px !important;
    letter-spacing: .17em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boundary-runner .boundary-runner__track { animation: none !important; }
  .intro__copy .lead .typewriter-content { --marker-progress: 100%; }
}


/* =========================================================
   v26 HOTFIX — isolated product marquee and stable marker lines
   ========================================================= */
/* New class names intentionally avoid every legacy .boundary-runner rule. */
.product-marquee {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 16px;
  min-height: 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #075de8;
  border: 0;
  contain: layout paint;
}
.product-marquee__track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  color: #fff;
  transform: translate3d(0,0,0);
  animation: productMarqueeMove 56s linear infinite;
  will-change: transform;
}
.product-marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
  white-space: nowrap;
}
.product-marquee strong {
  position: static;
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0;
  color: #fff;
  background: none;
  font: 700 8px/1 var(--font-en);
  letter-spacing: .19em;
  white-space: nowrap;
  transform: none;
  opacity: 1;
}
.product-marquee em {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.72);
  font: 400 8px/1 var(--font-en);
  font-style: normal;
  line-height: 1;
}
@keyframes productMarqueeMove {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

/* Preserve the two intended Japanese phrase lines during typewriter setup. */
.intro__copy .lead .typewriter-content--segmented {
  display: block;
  width: 100%;
  background: none !important;
}
.intro__copy .lead .typewriter-segment {
  --marker-progress: var(--text-highlight-progress, 0%);
  display: block;
  width: fit-content;
  max-width: 100%;
  padding-inline: .03em;
  background-image: linear-gradient(rgba(7,93,232,.14), rgba(7,93,232,.14));
  background-repeat: no-repeat;
  background-size: var(--marker-progress) .42em;
  background-position: 0 91%;
}
.intro__copy .lead .typewriter-segment + .typewriter-segment {
  margin-top: .08em;
}
/* Disable the old single-inline marker only for segmented copy. */
.intro__copy .lead .typewriter-content--segmented {
  background-image: none !important;
}

@media (max-width: 760px) {
  .product-marquee { height: 16px; min-height: 16px; }
  .product-marquee__track { animation-duration: 48s; }
  .product-marquee__group { gap: 15px; padding-right: 15px; }
  .product-marquee strong { font-size: 7px; letter-spacing: .16em; }
  .product-marquee em { font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .product-marquee__track { animation: none; }
  .intro__copy .lead .typewriter-segment { --marker-progress: 100%; }
}


/* =========================================================
   v30 — requested single-line mobile labels
   ========================================================= */
.company-name-row dd,
.one-line-slogan {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (max-width: 760px) {
  /* Keep the corporate name on one readable line without squeezing other rows. */
  .company-table .company-name-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .company-table .company-name-row dd {
    white-space: nowrap !important;
    font-size: clamp(.93rem, 4.1vw, 1.08rem) !important;
    letter-spacing: -.025em;
  }

  /* This copy is intentionally kept on one line as requested. */
  .intro__copy .one-line-slogan {
    white-space: nowrap !important;
    display: block;
    width: max-content;
    max-width: none;
    font-size: clamp(1rem, 4.35vw, 1.18rem) !important;
    line-height: 1.35 !important;
    letter-spacing: -.04em;
  }
  .intro__copy .one-line-slogan .phrase {
    display: inline !important;
    white-space: nowrap !important;
  }
  .intro__copy .one-line-slogan .phrase + .phrase::before {
    content: "" !important;
  }
}

@media (max-width: 390px) {
  .intro__copy .one-line-slogan {
    font-size: clamp(.92rem, 4.15vw, 1.02rem) !important;
  }
}


/* =========================================================
   v31 — hosted contact form + completion page
   ========================================================= */
.contact-form label > span em { color: var(--blue-soft); font-size: .72em; font-style: normal; margin-left: .45em; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none !important; }
.contact-form.is-submitting { pointer-events: none; }
.contact-form.is-submitting input, .contact-form.is-submitting select, .contact-form.is-submitting textarea { opacity: .76; }
.thanks-main { background: var(--navy-deep); }
.thanks-section { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding: 150px 0 100px; color: #fff; }
.thanks-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(7,93,232,.3), transparent 36%), linear-gradient(135deg, #001a3d, #000c1c 70%); }
.thanks-card { position: relative; z-index: 2; max-width: 920px; }
.thanks-card h1 { margin: 0; font-size: clamp(3.2rem, 8vw, 7.6rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 600; }
.thanks-card > p:not(.eyebrow) { max-width: 640px; margin: 42px 0 0; color: #d5deec; font-size: 1.05rem; line-height: 2; }
.thanks-actions { display: flex; gap: 14px; margin-top: 48px; }
@media (max-width: 760px) {
  .thanks-section { min-height: 82svh; padding: 130px 0 72px; }
  .thanks-card h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); line-height: 1.12; }
  .thanks-card > p:not(.eyebrow) { margin-top: 30px; font-size: .94rem; line-height: 1.85; }
  .thanks-actions { display: grid; margin-top: 36px; }
}


/* =========================================================
   v33 — contact form heading/readability spacing fix
   ========================================================= */
.contact-form-layout > .section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.contact-form-layout > .section-heading h2 {
  display: block;
  width: 100%;
  margin: 0 0 clamp(40px, 4.5vw, 64px) !important;
  line-height: 1.18;
  overflow: visible !important;
}
.contact-form-layout > .section-heading h2 .phrase {
  display: block;
  line-height: inherit;
  overflow: visible !important;
}
.contact-form-layout .form-note {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 !important;
  max-width: 32em;
  line-height: 2;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .contact-form-layout > .section-heading h2 {
    margin-bottom: 32px !important;
    line-height: 1.2;
  }
  .contact-form-layout .form-note {
    font-size: .92rem;
    line-height: 1.85;
  }
}
