:root {
  --ink: #162d3a;
  --charcoal: #213342;
  --deep: #102733;
  --blue: #00698f;
  --cyan: #00b1ee;
  --mint: #6bd4c6;
  --mist: #eff3f4;
  --pale: #eaf9f6;
  --white: #fff;
  --paper: #fff;
  --tms-blue: #00b1ee;
  --muted: #647681;
  --line: rgba(22, 45, 58, .16);
  --line-light: rgba(239, 243, 244, .24);
  --header-height: 82px;
  --shell: min(1440px, calc(100vw - 96px));
  --article: min(1120px, calc(100vw - 96px));
  --reading: min(780px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}

body[data-locale="en"] {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  letter-spacing: .015em;
}

body.is-menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

figure,
h1,
h2,
h3,
p {
  margin-top: 0;
}

.serif {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-weight: 400;
}

body[data-locale="en"] .serif {
  font-family: "Noto Serif", "Noto Serif JP", serif;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.home-page main .section-shell {
  width: min(1160px, calc(100vw - 176px));
}

.home-page main > section {
  overflow-x: hidden;
  overflow-x: clip;
}

.article-width {
  width: var(--article);
}

.reading-width {
  width: var(--reading);
}

.section-dark {
  color: var(--mist);
  background: var(--ink);
}

.section-light {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 8px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-140%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(520px, 1fr) auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 34px;
  border-bottom: 1px solid rgba(22, 45, 58, .09);
  background: rgba(247, 250, 250, .96);
  box-shadow: 0 10px 40px rgba(16, 39, 51, .05);
  transition: background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-compact {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 32px rgba(16, 39, 51, .1);
}

.site-logo {
  position: relative;
  display: block;
  width: min(360px, 26vw);
}

.site-logo img {
  width: 100%;
  height: auto;
  transition: opacity .25s ease, filter .25s ease;
}

.site-logo__firstview,
.site-logo__accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-logo__firstview,
.site-logo__accent {
  opacity: 0;
}

.logo-accent--symbol {
  clip-path: inset(0 84.2% 0 0);
}

.logo-accent--m {
  clip-path: inset(34% 82.55% 44% 15.85%);
}

/* Homepage first view: dark, translucent header inspired by Axella. */
.home-page .site-header:not(.is-compact) {
  border-bottom-color: rgba(239, 243, 244, .18);
  color: var(--mist);
  background: rgba(16, 39, 51, .82);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(.8);
}

.home-page .site-header:not(.is-compact) .site-logo__default {
  opacity: 0;
}

.home-page .site-header:not(.is-compact) .site-logo__firstview {
  opacity: 1;
}

.home-page .site-header:not(.is-compact) .site-logo:hover .site-logo__accent--color,
.home-page .site-header:not(.is-compact) .site-logo:focus-visible .site-logo__accent--color {
  opacity: 1;
}

.home-page .site-header:not(.is-compact) .global-nav a {
  color: var(--mist);
}

.home-page .site-header:not(.is-compact) .global-nav a:hover,
.home-page .site-header:not(.is-compact) .global-nav a.is-active {
  color: var(--cyan);
}

.home-page .site-header:not(.is-compact) .header-contact {
  border-color: rgba(0, 177, 238, .86);
  color: var(--mist);
  background: rgba(0, 177, 238, .08);
}

.home-page .site-header:not(.is-compact) .header-contact:hover {
  color: var(--ink);
  background: var(--cyan);
}

.home-page .site-header:not(.is-compact) .language__button {
  color: var(--mist);
}

.home-page .site-header:not(.is-compact) .menu-button span {
  background: var(--mist);
}

.global-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.global-nav a {
  position: relative;
  display: grid;
  height: 100%;
  padding: 0 clamp(11px, 1.15vw, 24px);
  place-items: center;
  white-space: nowrap;
  font-size: clamp(13px, .82vw, 16px);
  font-weight: 500;
  transition: color .2s ease;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: 0;
  left: 22%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.global-nav a:hover,
.global-nav a.is-active {
  color: var(--blue);
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 16px;
}

.header-contact {
  display: grid;
  min-width: 150px;
  min-height: 48px;
  padding: 8px 20px;
  border: 1px solid var(--cyan);
  place-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}

.header-contact:hover {
  color: var(--white);
  background: var(--blue);
}

.language {
  position: relative;
}

.language__button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  padding: 6px 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language__label {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.language__current {
  display: none;
}

.globe-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 3px 7px;
  border: 1px solid currentColor;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.globe-icon::after {
  inset: 10px 2px auto;
  height: 1px;
  border: 0;
  background: currentColor;
}

.language__chevron {
  width: 9px;
  height: 9px;
  margin-left: 3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.language__button[aria-expanded="true"] .language__chevron {
  transform: translateY(3px) rotate(225deg);
}

.language__menu {
  position: absolute;
  top: calc(100% + 18px);
  right: -16px;
  width: 250px;
  border: 1px solid rgba(22, 45, 58, .12);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 39, 51, .2);
}

.language__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(22, 45, 58, .1);
  color: var(--ink);
  font-size: 15px;
  transition: color .2s ease, background .2s ease;
}

.language__option:last-child {
  border-bottom: 0;
}

.language__option:hover,
.language__option.is-current {
  color: var(--white);
  background: var(--blue);
}

.language__option small {
  color: var(--muted);
  font-family: "Noto Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.language__option:hover small,
.language__option.is-current small {
  color: var(--pale);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 39, 51, .88) 0%, rgba(16, 39, 51, .45) 46%, rgba(16, 39, 51, .08) 74%), linear-gradient(0deg, rgba(16, 39, 51, .58), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 42px) 0 64px;
}

.hero-kicker {
  margin-bottom: 22px;
  color: var(--mint);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 3.8vw, 62px);
  line-height: 1.34;
  letter-spacing: .07em;
}

body[data-locale="en"] .hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 16px;
}

.hero-progress {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  z-index: 3;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.hero-progress button {
  position: relative;
  width: 62px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero-progress button::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, .38);
  content: "";
  transform: translateY(-50%);
}

.hero-progress button.is-active::before {
  background: var(--cyan);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 4px;
  justify-items: center;
  color: var(--white);
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.hero-scroll span {
  margin-bottom: 6px;
}

.hero-scroll i {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: hero-arrow-down 1.35s ease-in-out infinite;
}

.hero-scroll i + i {
  margin-top: -8px;
  animation-delay: .14s;
}

@keyframes hero-arrow-down {
  0% {
    opacity: 0;
    transform: translateY(-4px) rotate(45deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(8px) rotate(45deg);
  }
}

.business,
.news-section,
.blog-section,
.access-section,
.philosophy-teaser,
.company-teaser {
  padding: 130px 0;
}

.section-title {
  position: relative;
  margin-bottom: 52px;
  padding-top: 34px;
  padding-left: clamp(24px, 4vw, 58px);
  isolation: isolate;
  text-align: left;
}

.section-title > span {
  position: absolute;
  top: -24px;
  left: -6px;
  z-index: -1;
  color: rgba(22, 45, 58, .045);
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(76px, 14vw, 156px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(150px);
  filter: blur(16px);
  transition:
    opacity 1.35s .08s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s .08s cubic-bezier(.16, 1, .3, 1),
    filter 1.35s .08s cubic-bezier(.16, 1, .3, 1);
}

.section-title > span.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(120px);
  filter: blur(14px);
  transition:
    opacity 1.25s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s cubic-bezier(.16, 1, .3, 1);
}

.section-title h2.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-title h2 em {
  color: var(--cyan);
  font-style: normal;
}

html[lang="ja"] .section-title h2::first-letter {
  color: var(--cyan);
}

.section-title p {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
}

.section-title--invert {
  color: var(--mist);
}

.section-title--invert > span {
  color: rgba(239, 243, 244, .055);
}

.section-title--invert h2 {
  color: var(--mist);
}

.section-title--invert p {
  color: var(--mist);
}

.business-intro,
.access-heading-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 110px;
  align-items: start;
  margin-bottom: 78px;
}

.business-intro {
  grid-template-columns: 1.12fr .88fr;
  gap: 80px;
}

.business-intro h3,
.access-heading-row h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1.55;
  letter-spacing: .07em;
}

.business-intro h3 {
  font-size: clamp(34px, 3vw, 42px);
  letter-spacing: .04em;
}

.business-intro__heading span {
  display: block;
}

html[lang="ja"] .business-intro__heading span {
  white-space: nowrap;
}

.business-intro p,
.access-heading-row p {
  margin: 16px 0 0;
  color: rgba(239, 243, 244, .8);
}

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

.service-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 270px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-card__image {
  min-height: 270px;
  overflow: hidden;
  background: var(--white);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(.96);
}

.service-card__body {
  position: relative;
  padding: 42px 38px;
}

.service-card__body > span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: rgba(239, 243, 244, .72);
  font-size: 14px;
}

.business-showcase {
  border-top: 1px solid var(--line-light);
}

.business-service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line-light);
}

.business-service-tab {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 0;
  color: var(--mist);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .25s ease;
}

.business-service-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .25s ease, transform .25s ease;
}

.business-service-tab:hover,
.business-service-tab.is-active {
  background: rgba(239, 243, 244, .06);
}

.business-service-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.business-service-tab__body {
  display: flex;
  min-height: 180px;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 22px;
}

.business-service-tab__body > small {
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.business-service-tab__body > strong {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.business-service-tab__body > em {
  color: rgba(239, 243, 244, .66);
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.business-service-panels {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.business-service-panel {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  min-height: 560px;
}

.business-service-panel[hidden] {
  display: none;
}

.business-service-panel__copy {
  padding: 54px 46px;
  border-right: 1px solid var(--line-light);
}

.business-service-panel__copy h4 {
  margin-bottom: 22px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.65;
}

.business-service-panel__copy > div {
  color: rgba(239, 243, 244, .7);
  font-size: 13px;
}

.business-service-panel__copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  border-bottom: 1px solid var(--cyan);
  padding: 12px 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
}

.business-service-panel__copy > a b {
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s ease;
}

.business-service-panel__copy > a:hover b {
  transform: translateX(5px);
}

.business-service-panel__visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 170px;
  min-width: 0;
  background: var(--deep);
}

.business-service-panel__visual figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.business-service-panel__visual > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.02);
}

.business-service-panel__visual > figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 28px 22px;
  background: linear-gradient(transparent, rgba(16, 39, 51, .88));
}

.business-service-panel__visual > figure small,
.business-service-panel__visual > figure strong {
  display: block;
}

.business-service-panel__visual > figure small {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 10px;
}

.business-service-panel__visual > figure strong {
  font-size: 19px;
  font-weight: 500;
}

.business-service-panel__visual > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.business-service-panel__visual > div figure + figure {
  border-left: 1px solid var(--line-light);
}

.business-service-panel__visual > div img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  filter: saturate(.65);
}

.business-service-panel__visual > div figcaption {
  overflow: hidden;
  padding: 12px 14px;
  color: rgba(239, 243, 244, .78);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.split-feature {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.split-feature--reverse {
  grid-template-columns: 1.08fr .92fr;
}

.feature-statement {
  margin-bottom: 30px;
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.55;
  letter-spacing: .07em;
}

.company-teaser__statement {
  font-size: clamp(34px, 3vw, 44px);
  letter-spacing: .05em;
}

.section-smoky {
  background:
    radial-gradient(circle at 82% 18%, rgba(107, 212, 198, .1), transparent 34%),
    linear-gradient(135deg, #294654 0%, #315260 56%, #365866 100%);
}

.company-teaser .feature-statement {
  color: var(--mist);
}

.company-teaser .split-feature > div > p:not(.eyebrow) {
  color: rgba(239, 243, 244, .72);
}

.company-teaser .text-arrow {
  border-color: var(--cyan);
  color: var(--cyan);
}

.company-teaser .feature-image {
  border: 1px solid var(--line-light);
}

.company-teaser__statement span {
  display: block;
}

html[lang="ja"] .company-teaser__statement span {
  white-space: nowrap;
}

.split-feature > div > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.feature-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}

.feature-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 1;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 177, 238, .65);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.03);
}

.feature-image--product img {
  object-fit: cover;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  min-width: 230px;
  margin-top: 30px;
  padding: 12px 0;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.text-arrow span {
  margin-left: auto;
  transition: transform .2s ease;
}

.text-arrow:hover span {
  transform: translateX(6px);
}

.text-arrow--light {
  border-color: var(--cyan);
  color: var(--cyan);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.location-card {
  position: relative;
  display: block;
  min-height: 280px;
  padding: 34px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color .2s ease, background .2s ease;
}

.location-card:hover {
  color: var(--ink);
  background: var(--pale);
}

.location-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .15em;
}

.location-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 500;
}

.location-card p {
  margin: 0;
  color: rgba(239, 243, 244, .68);
  font-size: 12px;
  line-height: 1.75;
}

.location-card:hover p {
  color: var(--muted);
}

.location-card b {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--cyan);
  font-weight: 400;
}

.location-card:last-child {
  grid-column: 3 / 4;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-news {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f7faf9 100%);
}

.home-news .section-title {
  margin-bottom: 32px;
}

.home-news-list {
  border-top: 1px solid var(--line);
}

.home-news-item > a {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(130px, 180px) minmax(0, 1fr) 48px;
  gap: clamp(22px, 3vw, 52px);
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.home-news-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: flex-start;
  gap: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: "Noto Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.home-news-date small {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
}

.home-news-date small::after {
  content: ".";
}

.home-news-date strong {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .08em;
}

.home-news-category {
  justify-self: start;
  min-width: 116px;
  padding: 6px 15px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f0ef;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.home-news-item h3 {
  margin: 0;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.65;
  letter-spacing: .045em;
  transition: color .2s ease;
}

.home-news-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 105, 143, .2);
  transition: transform .2s ease, background .2s ease;
}

.home-news-item > a:hover h3 {
  color: var(--blue);
}

.home-news-item > a:hover .home-news-arrow {
  background: var(--cyan);
  transform: translateX(4px);
}

.home-news-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.news-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 188px;
  padding: 12px 18px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}

.news-all-button b {
  font-weight: 400;
}

.news-all-button:hover {
  color: var(--white);
  background: var(--blue);
}

.content-card a {
  position: relative;
  display: block;
  min-height: 100%;
  padding-bottom: 36px;
}

.content-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  background: var(--mist);
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(.98);
  transition: transform .5s ease;
}

.content-card a:hover .content-card__image img {
  transform: scale(1.035);
}

.content-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
}

.content-card__meta span {
  color: var(--blue);
  font-weight: 600;
}

.content-card--news .content-card__meta span {
  color: var(--cyan);
}

.content-card__meta time {
  color: var(--muted);
}

.content-card--news .content-card__meta time {
  color: rgba(239, 243, 244, .65);
}

.content-card h3 {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.65;
  letter-spacing: .04em;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.content-card--news p {
  color: rgba(239, 243, 244, .66);
}

.content-card > a > b {
  position: absolute;
  right: 2px;
  bottom: 0;
  color: var(--cyan);
  font-weight: 400;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag-list span {
  padding: 3px 9px;
  border: 1px solid rgba(22, 45, 58, .24);
  color: var(--muted);
  font-size: 10px;
}

.blog-section.section-dark .content-card__image {
  border: 1px solid var(--line-light);
  background: var(--deep);
}

.blog-section.section-dark .content-card__meta span {
  color: var(--mint);
}

.blog-section.section-dark .content-card__meta time {
  color: rgba(239, 243, 244, .66);
}

.blog-section.section-dark .tag-list span {
  border-color: rgba(239, 243, 244, .26);
  color: rgba(239, 243, 244, .72);
}

.blog-slider {
  position: relative;
}

.blog-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.blog-slider__track::-webkit-scrollbar {
  display: none;
}

.blog-slider__track:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 8px;
}

.blog-slider__track .content-card {
  min-width: 0;
  scroll-snap-align: start;
}

.blog-slider__arrow {
  position: absolute;
  top: 86px;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(239, 243, 244, .28);
  border-radius: 50%;
  place-items: center;
  padding: 0 0 4px;
  color: var(--mist);
  background: rgba(16, 39, 51, .88);
  box-shadow: 0 18px 36px rgba(16, 39, 51, .18);
  font-size: 25px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.blog-slider__arrow:hover:not(:disabled),
.blog-slider__arrow:focus-visible:not(:disabled) {
  border-color: var(--cyan);
  color: var(--deep);
  background: var(--cyan);
}

.blog-slider__arrow:disabled {
  opacity: .24;
  cursor: default;
}

.blog-slider__arrow--prev {
  left: -76px;
}

.blog-slider__arrow--next {
  right: -76px;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 46px;
}

.home-contact {
  padding: 100px 0;
}

.home-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.home-contact__lead {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.6vw, 56px);
  letter-spacing: .07em;
}

body[data-locale="ja"] .home-contact__lead {
  white-space: nowrap;
}

.home-contact p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-contact .section-title p {
  margin-bottom: 8px;
  color: var(--ink);
}

.outline-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 280px;
  min-height: 72px;
  padding: 16px 24px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}

.outline-button:hover {
  color: var(--white);
  background: var(--blue);
}

.outline-button b {
  font-weight: 400;
}

.site-footer {
  color: var(--ink);
  padding: 0;
  background: #09151c;
}

.footer-box {
  color: var(--mist);
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 243, 244, .13);
  border-radius: 0 0 20px 20px;
  background: #111c24;
  box-shadow: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(600px, 2.15fr);
  gap: clamp(50px, 5vw, 90px);
  align-items: start;
  padding: 52px 0 58px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  position: relative;
  display: block;
  width: min(390px, 100%);
}

.footer-logo img {
  width: 100%;
  height: auto;
  transition: opacity .28s ease;
}

.footer-logo__accent {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.footer-logo:hover .footer-logo__accent,
.footer-logo:focus-visible .footer-logo__accent {
  opacity: 1;
}

.footer-brand__copy {
  margin: 24px 0 0;
  color: rgba(239, 243, 244, .72);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .09em;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-facebook {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(239, 243, 244, .42);
  border-radius: 50%;
  color: rgba(239, 243, 244, .92);
}

.footer-facebook b {
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 58px);
}

.footer-nav__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-nav__title {
  margin: 0 0 8px;
  color: rgba(239, 243, 244, .92);
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
}

.footer-nav__group > a {
  color: rgba(239, 243, 244, .68);
  font-size: 13px;
  letter-spacing: .08em;
  transition: color .2s ease;
}

.footer-nav__group > a:hover,
.footer-nav__group > a:focus-visible {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-top: 1px solid var(--line-light);
  color: rgba(239, 243, 244, .62);
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
}

.footer-bottom p {
  margin: 0;
}

.service-page main .section-shell {
  width: min(1160px, calc(100vw - 176px));
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--mist);
  background:
    linear-gradient(90deg, rgba(13, 34, 46, .94) 0%, rgba(13, 34, 46, .84) 36%, rgba(13, 34, 46, .52) 63%, rgba(13, 34, 46, .24) 100%),
    radial-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px),
    var(--service-hero-image) center / cover no-repeat;
  background-size: auto, 4px 4px, cover;
}

.service-detail-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 177, 238, .18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 38%, rgba(9, 28, 39, .18));
  content: "";
  pointer-events: none;
}

.service-detail-hero > .section-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 290px;
  align-items: center;
}

.service-detail-hero__copy {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 680px) minmax(210px, 260px);
  grid-template-rows: repeat(4, auto);
  column-gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding: 30px 0 28px;
  transform: none;
}

.service-detail-hero__eyebrow {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  gap: 18px;
  align-items: center;
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
}

.service-detail-hero__eyebrow span {
  white-space: nowrap;
}

.service-detail-hero__eyebrow b {
  position: relative;
  padding-left: 24px;
  color: rgba(239, 243, 244, .72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
}

.service-detail-hero__eyebrow b::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background: rgba(239, 243, 244, .5);
  content: "";
}

.service-detail-hero h1 {
  grid-column: 1;
  grid-row: 2;
  margin: 0 0 8px;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .04em;
  text-shadow: 0 3px 20px rgba(9, 28, 39, .22);
}

body[data-locale="en"] .service-detail-hero h1 {
  max-width: 760px;
  line-height: 1.06;
  letter-spacing: -.02em;
}

.service-detail-hero__kicker {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .06em;
}

.service-detail-hero__lead {
  grid-column: 1;
  grid-row: 4;
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(239, 243, 244, .74);
  font-size: 12px;
  line-height: 1.65;
}

.service-hero-contact {
  display: flex;
  width: 100%;
  max-width: none;
  grid-column: 2;
  grid-row: 2 / 5;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .62);
  padding: 11px 16px;
  color: var(--white);
  background: rgba(13, 34, 46, .22);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: 500;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.service-hero-contact b {
  font-size: 18px;
  font-weight: 400;
}

.service-hero-contact:hover {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.service-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-switcher a {
  display: flex;
  min-height: 82px;
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  transition: color .2s ease, background .2s ease;
}

.service-switcher a small {
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
}

.service-switcher a:hover,
.service-switcher a[aria-current="page"] {
  color: var(--ink);
  background: var(--pale);
}

.service-switcher a[aria-current="page"] {
  box-shadow: inset 0 -3px var(--cyan);
}

.service-detail-section {
  padding: 110px 0;
}

.service-page .service-lineup {
  padding-top: 48px;
}

.service-section-heading {
  display: flex;
  gap: 34px;
  align-items: baseline;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.service-section-heading > p {
  order: 2;
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.service-section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.35;
}

.service-strength-grid,
.service-consult-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-strength-grid article {
  min-height: 290px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 28px;
}

.service-strength-grid article > span,
.service-consult-grid article > span {
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
}

.service-strength-grid h3 {
  margin: 68px 0 18px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.service-strength-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-product-slider {
  position: relative;
}

.service-product-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 2);
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-product-slider__track::-webkit-scrollbar {
  display: none;
}

.service-product-slider__track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
}

.service-product-slider__track article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  scroll-snap-align: start;
}

.service-product-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--white);
}

.service-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter: saturate(.72) contrast(.98);
  transition: transform .45s ease;
}

.service-product-slider__track article:hover .service-product-image img {
  transform: scale(1.025);
}

.service-product-body {
  padding: 30px 28px 34px;
}

.service-product-body > span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: var(--blue);
  background: var(--pale);
  font-size: 9px;
  font-weight: 500;
}

.service-product-body h3 {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.55;
}

.service-product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.service-product-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 39, 51, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.service-product-slider__arrow--prev {
  left: -72px;
}

.service-product-slider__arrow--next {
  right: -72px;
}

.service-product-slider__arrow:hover:not(:disabled),
.service-product-slider__arrow:focus-visible:not(:disabled) {
  background: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.service-product-slider__arrow:focus-visible {
  outline: 3px solid rgba(107, 212, 198, .72);
  outline-offset: 3px;
}

.service-product-slider__arrow:disabled {
  opacity: .24;
  cursor: default;
}

.service-section-heading--dark {
  border-color: var(--line-light);
}

.service-section-heading--dark > p,
.service-section-heading--dark h2 {
  color: var(--mist);
}

.service-section-heading--dark > p {
  color: var(--cyan);
}

.service-consult-grid {
  border-color: var(--line-light);
}

.service-consult-grid article {
  min-height: 235px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 32px 28px;
}

.service-consult-grid h3 {
  margin: 54px 0 14px;
  font-size: 22px;
  font-weight: 400;
}

.service-consult-grid p {
  margin: 0;
  color: rgba(239, 243, 244, .68);
  font-size: 12px;
}

.subpage main {
  padding-top: var(--header-height);
}

.page-hero {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 34, 46, .94) 0%, rgba(13, 34, 46, .84) 36%, rgba(13, 34, 46, .52) 63%, rgba(13, 34, 46, .24) 100%),
    radial-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px),
    var(--page-hero-image) center / cover no-repeat;
  background-size: auto, 4px 4px, cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 177, 238, .16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 38%, rgba(9, 28, 39, .18));
  content: "";
  pointer-events: none;
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 0 38px;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .14em;
}

.page-hero h1,
.page-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .04em;
  text-shadow: 0 3px 20px rgba(9, 28, 39, .22);
}

.page-hero__intro {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(239, 243, 244, .72);
  font-size: 14px;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  color: var(--muted);
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-section {
  padding: 110px 0;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
}

.eyebrow--light {
  color: var(--cyan);
}

.subpage-heading {
  margin-bottom: 52px;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: .07em;
}

.subpage-heading--light {
  color: var(--mist);
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 110px;
  align-items: center;
}

.message-grid h2 {
  margin-bottom: 36px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.55;
  letter-spacing: .07em;
}

.message-grid p:last-child {
  color: var(--muted);
}

.message-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.65);
}

.profile-table {
  border-top: 1px solid var(--line);
}

.profile-table > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--line);
}

.profile-table dt,
.profile-table dd {
  margin: 0;
  padding: 26px 24px;
}

.profile-table dt {
  color: var(--blue);
  font-weight: 500;
}

.profile-table dd small {
  color: var(--muted);
}

.history-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.history-list li {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-bottom: 1px solid var(--line-light);
  padding: 32px 0;
}

.history-list time {
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 28px;
}

.history-list p {
  margin: 0;
  color: rgba(239, 243, 244, .75);
}

.philosophy-statement h2 {
  margin-bottom: 62px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.55;
  letter-spacing: .08em;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.value-grid article {
  min-height: 350px;
  padding: 44px 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.value-grid article > span {
  color: var(--cyan);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
}

.value-grid h3 {
  margin: 70px 0 24px;
  font-size: 36px;
}

.value-grid p {
  margin: 0;
  color: rgba(239, 243, 244, .7);
}

.centered-copy {
  text-align: center;
}

.centered-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 4.5vw, 64px);
  letter-spacing: .08em;
}

.centered-copy p:last-child {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.blog-index-page .breadcrumbs {
  min-height: 52px;
}

.blog-index-page .page-section {
  padding-top: 36px;
}

.company-page .breadcrumbs + .page-section,
.philosophy-page .breadcrumbs + .page-section {
  padding-top: 48px;
}

.filter-row button {
  min-width: 150px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 15px 24px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.filter-row button.is-active {
  border-color: var(--cyan);
  color: var(--blue);
}

.content-empty-state {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(52px, 7vw, 88px) 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
  text-align: center;
}

.content-empty-state--dark {
  border-color: var(--line-light);
  color: rgba(239, 243, 244, .7);
  background: rgba(255, 255, 255, .025);
}

.news-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.news-archive .section-shell {
  width: min(1160px, calc(100vw - 176px));
}

.news-archive-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.news-archive-tabs button {
  display: inline-flex;
  flex: 1 0 132px;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 14px;
  color: var(--muted);
  background: #f4f6f6;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.news-archive-tabs button + button {
  border-left: 1px solid var(--white);
}

.news-archive-tabs button:hover,
.news-archive-tabs button.is-active {
  border-bottom-color: var(--cyan);
  color: var(--blue);
  background: var(--pale);
}

.news-archive-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 18px;
}

.news-archive-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.news-archive-tools strong {
  color: var(--blue);
  font-family: "Noto Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.news-archive-tools select {
  min-width: 150px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 40px 0 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  cursor: pointer;
}

.news-archive-list {
  border-top: 1px solid var(--line);
}

.news-archive-item > a {
  display: grid;
  grid-template-columns: 112px 120px minmax(0, 1fr) 24px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}

.news-archive-item time {
  color: var(--muted);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.news-archive-item > a > span {
  justify-self: start;
  min-width: 104px;
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f0ef;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

.news-archive-item h3 {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  transition: color .2s ease;
}

.news-archive-item b {
  color: var(--blue);
  font-size: 24px;
  font-weight: 300;
  transition: transform .2s ease;
}

.news-archive-item > a:hover h3 {
  color: var(--blue);
}

.news-archive-item > a:hover b {
  transform: translateX(4px);
}

.news-archive-empty {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  color: var(--muted);
  text-align: center;
}

.news-archive-side {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  border-top: 3px solid var(--blue);
}

.news-archive-side > h2 {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 4px 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.news-archive-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-year > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.news-year > button small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.news-year > button b {
  color: var(--blue);
  font-size: 18px;
  font-weight: 300;
}

.news-year > ul {
  border-bottom: 1px solid var(--line);
  padding: 8px 0 15px;
}

.news-year > ul a {
  display: block;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.news-year > ul time {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
}

.news-year > ul a:hover {
  color: var(--blue);
}

.news-index {
  border-top: 1px solid var(--line);
}

.news-index > a {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: 220px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.news-index__image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--mist);
}

.news-index__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72);
  transition: transform .4s ease;
}

.news-index > a:hover img {
  transform: scale(1.04);
}

.news-index__body > div {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
}

.news-index__body span {
  color: var(--blue);
  font-weight: 600;
}

.news-index__body time {
  color: var(--muted);
}

.news-index h2 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
}

.news-index p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.news-index > a > b {
  color: var(--cyan);
  font-weight: 400;
}

.card-grid--index {
  row-gap: 70px;
}

.detail-article {
  padding-top: 70px;
}

.detail-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
}

.detail-meta span {
  padding: 4px 12px;
  color: var(--white);
  background: var(--blue);
}

.detail-meta time {
  color: var(--muted);
}

.detail-header h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.55;
  letter-spacing: .06em;
}

.detail-lead {
  max-width: 760px;
  margin: 0 0 14px;
  color: #344c58;
  font-size: 17px;
  line-height: 1.9;
}

.detail-byline {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
}

.detail-hero {
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-top: 35px;
  margin-bottom: 80px;
  background: var(--mist);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
}

.detail-body {
  color: #344c58;
}

.detail-body > p {
  margin-bottom: 2em;
}

.document-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 58px 0;
  padding: 22px 24px;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.document-link b {
  margin-left: auto;
  font-weight: 400;
}

.back-link {
  display: inline-block;
  margin-top: 54px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  width: min(1160px, calc(100vw - 176px));
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 7vw, 92px);
  align-items: start;
}

.contact-layout aside {
  position: sticky;
  top: 130px;
}

.contact-layout aside h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.5;
}

.contact-layout aside > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-layout aside dl {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.contact-layout aside dl > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-layout aside dt {
  color: var(--muted);
  font-size: 12px;
}

.contact-layout aside dd {
  margin: 4px 0 0;
  color: var(--blue);
  font-family: "Noto Sans", sans-serif;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 54px;
  background: var(--mist);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0 0 10px;
  list-style: none;
}

.contact-progress::before {
  position: absolute;
  top: 16px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: var(--line);
  content: "";
}

.contact-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
}

.contact-progress li span {
  display: grid;
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: var(--muted);
  background: var(--mist);
  font-size: 11px;
}

.contact-progress li.is-active,
.contact-progress li.is-complete {
  color: var(--blue);
  font-weight: 600;
}

.contact-progress li.is-active span,
.contact-progress li.is-complete span {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.contact-progress li.is-complete span::before {
  content: "✓";
}

.contact-progress li.is-complete span {
  font-size: 0;
}

.contact-progress li.is-complete span::before {
  font-size: 12px;
}

.contact-form__step {
  display: grid;
  gap: 32px;
}

.contact-form__step[hidden] {
  display: none;
}

.contact-form__note {
  margin: 0 -4px -4px;
  padding: 0 4px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.contact-form__step > label:not(.privacy-check) {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  font-weight: 500;
}

.contact-form em {
  margin-left: 10px;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 45, 58, .2);
  border-radius: 0;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 177, 238, .12);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 2px rgba(180, 35, 24, .1);
}

.contact-confirm {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-confirm > div {
  display: grid;
  grid-template-columns: minmax(130px, .36fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-confirm dt {
  color: var(--muted);
  font-size: 12px;
}

.contact-confirm dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
}

.contact-recaptcha {
  display: grid;
  gap: 8px;
  max-width: 100%;
}

.contact-recaptcha p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-recaptcha--score {
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--soft-blue);
}

.contact-recaptcha--score > span {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.contact-form__actions {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 14px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border: 1px solid var(--blue);
  padding: 15px 24px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
}

.submit-button:hover {
  background: var(--ink);
}

.submit-button:disabled {
  cursor: wait;
  opacity: .68;
}

.submit-button--secondary {
  color: var(--blue);
  background: transparent;
}

.submit-button--secondary:hover {
  color: var(--white);
}

.submit-button b {
  font-weight: 400;
}

.form-status {
  min-height: 1.6em;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  white-space: pre-line;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #067647;
}

.contact-complete {
  justify-items: start;
  padding: 34px 0 8px;
}

.contact-complete h2 {
  margin: -14px 0 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.45;
}

.contact-complete > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.contact-complete__reference {
  padding: 8px 12px;
  color: var(--blue) !important;
  background: var(--white);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
}

.policy > p:first-child {
  margin-bottom: 64px;
}

.policy section {
  margin-bottom: 52px;
}

.policy h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.policy p {
  color: var(--muted);
}

.policy-date {
  margin-top: 72px;
  text-align: right;
}

.coming-soon-page .site-header,
.coming-soon-page .site-footer {
  display: none;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  padding: 48px;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--mist), var(--pale));
}

.coming-soon__inner {
  width: min(700px, 100%);
  padding: 74px 60px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.coming-soon__inner > a:first-child {
  display: block;
  width: min(420px, 90%);
  margin: 0 auto 64px;
}

.coming-soon h1 {
  margin-bottom: 26px;
  color: var(--blue);
  font-size: clamp(52px, 8vw, 92px);
  letter-spacing: .04em;
}

.coming-soon__sub {
  color: var(--muted);
  font-size: 13px;
}

.coming-soon__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 42px;
}

.coming-soon__actions .outline-button {
  min-width: 160px;
  min-height: 58px;
  justify-content: center;
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 12px 26px rgba(16, 39, 51, .2);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.page-top span {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(45deg);
}

.page-top:hover,
.page-top:focus-visible {
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(16, 39, 51, .28);
  transform: translateY(-2px);
}

.page-top:focus-visible {
  outline: 3px solid rgba(107, 212, 198, .72);
  outline-offset: 4px;
}

.contact-page .page-top {
  bottom: 96px;
}

@media (max-width: 1320px) {
  :root {
    --header-height: 82px;
    --shell: min(1200px, calc(100vw - 64px));
    --article: min(1040px, calc(100vw - 64px));
  }

  .site-header {
    grid-template-columns: minmax(260px, 330px) 1fr auto;
    padding: 0 24px;
  }

  .site-logo {
    width: min(310px, 25vw);
  }

  .global-nav a {
    padding: 0 10px;
    font-size: 13px;
  }

  .header-actions {
    gap: 18px;
    margin-left: 10px;
  }

  .header-contact {
    min-width: 126px;
  }

  .language__label {
    display: none;
  }

  .footer-main {
    grid-template-columns: minmax(240px, .9fr) minmax(540px, 2.1fr);
    gap: 60px;
  }

  .service-product-slider__arrow--prev {
    left: 14px;
  }

  .service-product-slider__arrow--next {
    right: 14px;
  }
}

@media (max-width: 1080px) {
  .blog-slider__track {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

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

  .site-logo {
    width: 330px;
    max-width: calc(100vw - 150px);
  }

  .global-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    left: 10px;
    width: 28px;
    height: 1px;
    background: var(--ink);
    transition: transform .25s ease, opacity .2s ease;
  }

  .menu-button span:nth-child(1) { transform: translateY(-8px); }
  .menu-button span:nth-child(3) { transform: translateY(8px); }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: auto;
    padding: 36px 32px 70px;
    color: var(--mist);
    background: var(--ink);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    border-top: 1px solid var(--line-light);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    border-bottom: 1px solid var(--line-light);
    font-size: 18px;
  }

  .mobile-menu nav a::after {
    content: "→";
    color: var(--cyan);
  }

  .mobile-menu > .language {
    margin-top: 34px;
  }

  .mobile-menu .language__label {
    display: inline;
  }

  .mobile-menu .language__current {
    display: inline;
    color: var(--mint);
    font-size: 13px;
  }

  .mobile-menu .language__menu {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card:last-child {
    grid-column: auto;
  }

  .service-card {
    grid-template-columns: 34% 1fr;
  }

  .business-service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-service-panel {
    grid-template-columns: 1fr;
  }

  .business-service-panel__copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .business-service-panel__visual {
    min-height: 520px;
  }

  .service-detail-hero__copy {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 220px;
    column-gap: 32px;
  }

  .service-strength-grid,
  .service-consult-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-product-slider__track {
    grid-auto-columns: 68%;
  }

  .contact-layout {
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
    gap: 44px;
  }

  .contact-form {
    padding: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout aside {
    position: static;
  }
}

@media (max-width: 780px) {
  .blog-slider__track {
    grid-auto-columns: 82%;
    gap: 20px;
  }

  .blog-slider__arrow {
    display: none;
  }

  :root {
    --header-height: 74px;
    --shell: calc(100vw - 40px);
    --article: calc(100vw - 40px);
  }

  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .site-logo {
    width: 270px;
    max-width: calc(100vw - 92px);
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 56px);
    line-height: 1.45;
  }

  body[data-locale="en"] .hero h1 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(16, 39, 51, .88), rgba(16, 39, 51, .35)), linear-gradient(0deg, rgba(16, 39, 51, .68), transparent 55%);
  }

  .hero-progress {
    bottom: 96px;
    justify-content: flex-start;
  }

  .hero-scroll {
    bottom: 24px;
    font-size: 12px;
  }

  .page-top {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .contact-page .page-top {
    bottom: 90px;
  }

  .home-news.news-section {
    padding: 70px 0;
  }

  .home-page main .section-shell {
    width: calc(100vw - 40px);
  }

  .service-page main .section-shell {
    width: calc(100vw - 40px);
  }

  .contact-layout {
    width: calc(100vw - 40px);
    gap: 40px;
  }

  .home-news-item > a {
    grid-template-columns: 78px minmax(0, 1fr) 42px;
    gap: 10px 16px;
    min-height: 0;
    padding: 28px 0;
  }

  .home-news-date {
    grid-row: 1 / 3;
    align-self: stretch;
    padding-right: 14px;
  }

  .home-news-date small {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .home-news-date strong {
    font-size: 19px;
  }

  .home-news-category {
    grid-column: 2;
    min-width: 0;
    padding: 5px 12px;
    font-size: 10px;
  }

  .home-news-item h3 {
    grid-column: 2;
    font-size: 17px;
    line-height: 1.65;
  }

  .home-news-arrow {
    grid-row: 1 / 3;
    grid-column: 3;
    width: 38px;
    height: 38px;
  }

  .home-news-actions {
    margin-top: 30px;
  }

  .news-all-button {
    width: 100%;
  }

  .news-archive-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .news-archive .section-shell {
    width: calc(100vw - 40px);
  }

  .news-archive-tabs button {
    flex-basis: 124px;
    min-height: 54px;
    padding: 8px 12px;
  }

  .news-archive-tools {
    padding-top: 24px;
  }

  .news-archive-tools strong {
    font-size: 22px;
  }

  .news-archive-tools select {
    min-width: 132px;
    height: 42px;
  }

  .news-archive-item > a {
    grid-template-columns: 82px minmax(0, 1fr) 20px;
    gap: 8px 16px;
    min-height: 0;
    padding: 22px 0;
  }

  .news-archive-item time {
    grid-row: 1 / 3;
  }

  .news-archive-item > a > span {
    grid-column: 2;
    min-width: 0;
    padding: 4px 11px;
  }

  .news-archive-item h3 {
    grid-column: 2;
    font-size: 17px;
  }

  .news-archive-item b {
    grid-row: 1 / 3;
    grid-column: 3;
  }

  .news-archive-side {
    position: static;
  }

  .business,
  .news-section,
  .blog-section,
  .access-section,
  .philosophy-teaser,
  .company-teaser,
  .page-section {
    padding: 82px 0;
  }

  .section-title {
    margin-bottom: 46px;
    padding-top: 26px;
    padding-left: 18px;
  }

  .section-title > span {
    top: -10px;
    left: -3px;
    font-size: clamp(62px, 20vw, 92px);
  }

  .section-title h2 {
    font-size: clamp(38px, 12vw, 56px);
    letter-spacing: .01em;
  }

  .business-intro,
  .access-heading-row,
  .split-feature,
  .split-feature--reverse,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .business-intro h3,
  .access-heading-row h3,
  .feature-statement {
    font-size: 34px;
  }

  .company-teaser__statement {
    font-size: clamp(28px, 8.6vw, 34px);
    letter-spacing: .04em;
  }

  .business-intro h3 {
    font-size: clamp(24px, 6.4vw, 30px);
    letter-spacing: .035em;
  }

  .service-grid,
  .card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .business-service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-service-tab__body {
    min-height: 170px;
    padding: 22px 18px;
  }

  .business-service-tab__body > strong {
    font-size: 17px;
  }

  .business-service-tab__body > em {
    font-size: 11px;
  }

  .business-service-panel {
    min-height: 0;
  }

  .business-service-panel__copy {
    padding: 38px 24px;
  }

  .business-service-panel__copy > span {
    margin-bottom: 24px;
  }

  .business-service-panel__visual {
    grid-template-rows: 330px 138px;
    min-height: 0;
  }

  .business-service-panel__visual > div img {
    height: 92px;
  }

  .business-service-panel__visual > div figcaption {
    padding: 10px 8px;
    font-size: 9px;
  }

  .service-detail-hero {
    background:
      linear-gradient(90deg, rgba(13, 34, 46, .94) 0%, rgba(13, 34, 46, .86) 60%, rgba(13, 34, 46, .64) 100%),
      radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
      var(--service-hero-image) 64% center / cover no-repeat;
    background-size: auto, 4px 4px, cover;
  }

  .service-detail-hero > .section-shell {
    min-height: 240px;
    align-items: flex-end;
  }

  .service-detail-hero__copy {
    display: block;
    width: 100%;
    padding: 28px 0 24px;
    transform: none;
  }

  .service-detail-hero__eyebrow {
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 8px;
    font-size: 10px;
  }

  .service-detail-hero__eyebrow b {
    padding-left: 18px;
  }

  .service-detail-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .service-detail-hero__kicker {
    font-size: 14px;
    line-height: 1.45;
  }

  .service-detail-hero__lead,
  .service-hero-contact {
    display: none;
  }

  .service-switcher {
    display: flex;
    overflow-x: auto;
  }

  .service-switcher a {
    flex: 0 0 190px;
  }

  .service-detail-section {
    padding: 82px 0;
  }

  .service-section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .service-section-heading > p {
    margin-top: 12px;
  }

  .service-strength-grid,
  .service-consult-grid {
    grid-template-columns: 1fr;
  }

  .service-strength-grid article,
  .service-consult-grid article {
    min-height: 230px;
  }

  .service-product-slider__track {
    grid-auto-columns: 86%;
    gap: 20px;
  }

  .service-product-slider__arrow {
    display: none;
  }

  .service-product-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-card {
    grid-template-columns: 38% 1fr;
    min-height: 230px;
  }

  .service-card__image {
    min-height: 230px;
  }

  .service-card__body {
    padding: 28px 22px;
  }

  .service-card__body > span {
    margin-bottom: 18px;
  }

  .feature-image {
    order: -1;
  }

  .split-feature--reverse .feature-image {
    order: 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 230px;
  }

  .card-grid {
    gap: 54px;
  }

  .content-card h3 {
    font-size: 22px;
  }

  .home-contact__inner {
    display: block;
  }

  .home-contact__inner > div {
    margin-bottom: 42px;
  }

  body[data-locale="ja"] .home-contact__lead {
    font-size: clamp(22px, 5.8vw, 34px);
    letter-spacing: .035em;
  }

  .outline-button {
    width: 100%;
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 38px;
  }

  .footer-box {
    margin: 0;
    border-radius: 0 0 14px 14px;
  }

  .footer-logo {
    width: 100%;
    max-width: 390px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-bottom {
    display: block;
    min-height: 0;
    padding: 16px 0;
  }

  .footer-bottom p {
    margin: 0 0 8px;
  }

  .page-hero,
  .page-hero .section-shell {
    min-height: 240px;
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgba(13, 34, 46, .94) 0%, rgba(13, 34, 46, .86) 60%, rgba(13, 34, 46, .64) 100%),
      radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
      var(--page-hero-image) 64% center / cover no-repeat;
    background-size: auto, 4px 4px, cover;
  }

  .page-hero .section-shell {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 42px 0 32px;
  }

  .page-hero h1,
  .page-hero .page-hero__title {
    font-size: clamp(34px, 9.8vw, 46px);
    letter-spacing: .04em;
  }

  .page-hero p {
    margin: 0 0 10px;
    font-size: 11px;
  }

  .page-hero__intro {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .message-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .message-grid img {
    width: min(260px, 70vw);
  }

  .profile-table > div,
  .history-list li {
    grid-template-columns: 1fr;
  }

  .profile-table dt {
    padding-bottom: 0;
  }

  .history-list time {
    margin-bottom: 14px;
  }

  .philosophy-statement h2 {
    font-size: 37px;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-grid article {
    min-height: 270px;
  }

  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-row button {
    min-width: max-content;
  }

  .news-index > a {
    grid-template-columns: 110px 1fr;
    gap: 20px;
    min-height: 160px;
  }

  .news-index > a > b,
  .news-index p {
    display: none;
  }

  .news-index h2 {
    font-size: 18px;
  }

  .news-index__body > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .detail-header h1 {
    font-size: 36px;
  }

  .detail-hero {
    aspect-ratio: 16 / 9;
    margin-bottom: 52px;
  }

  .contact-layout aside {
    position: static;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form__step {
    gap: 26px;
  }

  .contact-confirm > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
  }

  .contact-form__actions {
    grid-template-columns: 1fr;
  }

  .contact-form__actions .submit-button--secondary {
    order: 2;
  }

  .contact-progress li {
    font-size: 10px;
  }

  .coming-soon {
    padding: 20px;
  }

  .coming-soon__inner {
    padding: 52px 20px;
  }

  .coming-soon__actions {
    display: grid;
  }
}

@media (max-width: 780px) {
  .home-news {
    padding: 58px 0;
  }

  .home-news .section-title {
    margin-bottom: 30px;
  }

  .home-news-item > a {
    grid-template-columns: 94px minmax(0, 1fr) 38px;
    padding: 16px 0;
  }

  .home-news-date {
    padding-right: 12px;
  }

  .home-news-date small {
    margin-bottom: 0;
  }

  .home-news-actions {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  html[lang="ja"] .business-intro__heading span,
  html[lang="ja"] .company-teaser__statement span,
  body[data-locale="ja"] .home-contact__lead {
    white-space: normal;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    min-height: 180px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-nav__group > a {
    font-size: 11px;
    line-height: 1.6;
  }

  .news-index > a {
    grid-template-columns: 1fr;
  }

  .news-index__image {
    max-width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
