:root {
  color-scheme: light;
  --black: #000000;
  --gray-900: #1a1a1a;
  --gray-700: #404040;
  --gray-500: #7a7a7a;
  --gray-300: #a6a6a6;
  --gray-200: #d9d9d9;
  --gray-100: #f2f2f2;
  --white: #ffffff;
  --yellow: #ebd531;
  --green: #28cb5e;
  --purple: #b422e5;
  --blue: #22aae5;
  --header-height: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--white); scroll-behavior: auto; }
html.is-intro-pending,
html.is-intro-pending body { overflow: hidden; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--black);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Yu Gothic UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

#webgl-canvas {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
  /* 導入完了までは画面外に隠し、完了後は固定表示する */
  transform: translateY(-110%);
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.site-header.is-docked { transform: translateY(0); }
/* module が止まってもインライン保険による loader 完了後は主要UIを表示する */
html:not(.is-ui-docked) #page-loading.is-loaded ~ .site-header { transform: translateY(0); }
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(24px, 3vw, 56px);
}
.brand { display: block; flex: 0 0 auto; width: clamp(174px, 15vw, 232px); }
.brand img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.35vw, 28px); margin-left: auto; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  font-size: clamp(11px, .82vw, 14px);
  font-weight: 650;
  white-space: nowrap;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { color: var(--black); background: var(--yellow); }
.menu-button { display: none; }

.loading {
  position: fixed;
  z-index: 110; /* ヘッダー(120)より下＝参考サイト同様、ローダー中もナビが見える */
  inset: 0;
  display: grid;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0);
}
.is-intro-pending .loading {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.loading.is-loaded { visibility: hidden; pointer-events: none; }
.loading__bg {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--white);
}
.loading__inner {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  padding: 24px;
}
.loading__title {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: clamp(30px, 5.8vw, 92px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.loading__title-gray { display: flex; color: var(--gray-300); }
.loading__char { display: inline-block; opacity: 0; transform: translateY(.2em); }
.loading__title-black {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--black);
  clip-path: inset(0 100% 0 0);
}

main { position: relative; z-index: 2; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 64px) clamp(24px, 5vw, 84px) 72px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 38%, rgba(255,255,255,.32) 68%, rgba(255,255,255,.06) 100%);
}
.hero::before {
  position: absolute;
  inset: auto auto -34vw -18vw;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 170, 229, .12), transparent 67%);
  content: "";
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; grid-column: 1; padding-bottom: 2vh; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
}
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }
h1 { margin: 0; font-size: clamp(48px, 6vw, 104px); line-height: 1.08; letter-spacing: -.065em; }
.headline {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.nb { white-space: nowrap; }
.headline--purple { background-image: linear-gradient(98deg, var(--purple), var(--blue)); }
.headline--green { margin-top: .16em; background-image: linear-gradient(98deg, var(--green), var(--yellow)); }
.text-gradation-reveal {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
}
.visual-label {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 52px);
  bottom: 8%;
  display: flex;
  gap: 14px;
  margin: 0;
  font-size: 9px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
/* 英語ラベルは導入完了時に見出し・ヘッダーと同時に出す */
.hero .eyebrow,
.visual-label {
  opacity: 0;
  transition: opacity .6s ease;
}
html.is-ui-docked .hero .eyebrow,
html.is-ui-docked .visual-label { opacity: 1; }
html:not(.is-ui-docked) #page-loading.is-loaded ~ main .hero .eyebrow,
html:not(.is-ui-docked) #page-loading.is-loaded ~ main .hero .visual-label { opacity: 1; }
html:not(.is-ui-docked) #page-loading.is-loaded ~ main .hero .text-gradation-reveal {
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
}
.visual-label span { color: var(--gray-500); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}
.scroll-cue i { position: relative; display: block; width: 62px; height: 1px; overflow: hidden; background: var(--gray-200); }
.scroll-cue i::after { position: absolute; inset: 0; background: var(--black); content: ""; animation: scroll-line 1.8s ease-in-out infinite; }

.statement {
  position: relative;
  z-index: 3;
  color: #10233e;
  background: #f4f6f5;
}
.statement-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #f4f6f5;
}
.statement-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
}
.statement-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,.93) 30%, rgba(255,255,255,.8) 64%, rgba(255,255,255,.62) 100%);
}
.statement-inner {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: -100vh auto 0;
  padding-block: 30vh 36vh;
  text-align: left;
}
.statement-block + .statement-block {
  margin-top: 4.2em;
}
.st-line {
  margin: 0;
  font-size: clamp(15px, 1.86vw, 22px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .06em;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.statement-en {
  margin: 4.2em 0 0;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  color: #10233e;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.section-label {
  margin: 0 0 20px;
  color: #52657b;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
}
.about-glance {
  position: relative;
  z-index: 3;
  padding: 116px 24px 122px;
  color: #10233e;
  background: var(--white);
}
.about-glance__inner { width: min(100%, 1002px); margin: 0 auto; }
.about-glance h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 760;
  line-height: 1.5;
  letter-spacing: .045em;
}
.about-glance__inner > p:not(.section-label) {
  max-width: 840px;
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: .035em;
}
.about-glance__inner > .text-link + .text-link { margin-left: 24px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span,
.text-link:focus-visible span { transform: translateX(5px); }
.text-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }

.services {
  position: relative;
  z-index: 3;
  scroll-margin-top: var(--header-height);
  padding: 124px 24px 150px;
  background: var(--white);
  color: #10233e;
}
.services-heading { text-align: center; }
.services-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #52657b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.services-label::before,
.services-label::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}
.services h2 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 30px);
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: .05em;
}
.services-lead {
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1002px);
  margin: 58px auto 0;
}
.service-card {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: #dfe5e9;
}
.service-card img,
.service-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-card img {
  z-index: -2;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.service-card__overlay {
  z-index: -1;
  background: rgba(16, 35, 62, .55);
  transition: background-color .45s ease;
}
.service-card__number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: clamp(40px, 3.35vw, 48px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: .03em;
}
.service-card__body {
  display: block;
  width: 100%;
  padding: 0 18px;
  text-align: center;
}
.service-card__label {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .24em;
}
.service-card h3 {
  margin: 9px 0 0;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.55;
  letter-spacing: .04em;
}
.service-card__description {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: .02em;
}
.service-card:hover img,
.service-card:focus-visible img { transform: scale(1.06); }
.service-card:hover .service-card__overlay,
.service-card:focus-visible .service-card__overlay { background: rgba(16, 35, 62, .42); }
.service-card:focus-visible { z-index: 1; outline: 3px solid var(--blue); outline-offset: 3px; }

.noukano {
  position: relative;
  z-index: 3;
  overflow: clip;
  color: var(--white);
  background: #0d1f38;
}
.noukano-pin {
  display: grid;
  min-height: 100svh;
  padding: clamp(84px, 8vw, 128px) clamp(24px, 5vw, 80px);
  place-items: center;
  background: #0d1f38;
}
.noukano-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(360px, 30vw);
  align-items: center;
  gap: clamp(54px, 8vw, 132px);
  width: min(100%, 1180px);
  margin: 0 auto;
}
.noukano-copy { min-width: 0; }
.noukano-ghost {
  margin: 0 0 34px;
  color: transparent;
  font-size: clamp(64px, 8.2vw, 124px);
  font-weight: 750;
  line-height: .8;
  letter-spacing: .025em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255,255,255,.45);
}
.noukano h2 {
  margin: 0;
  font-size: clamp(26px, 2.9vw, 42px);
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: .055em;
}
.noukano-lead {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
}
.noukano-stats {
  margin: 10px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
}
.noukano-list {
  display: grid;
  gap: 0;
  margin-top: clamp(34px, 4.2vw, 56px);
}
.noukano-item {
  position: relative;
  width: 100%;
  padding: 15px 0 15px 22px;
  color: rgba(255,255,255,.45);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color .3s ease;
}
.noukano-item::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 6px;
  height: 6px;
  opacity: 0;
  background: var(--white);
  border-radius: 50%;
  content: "";
  transform: scale(.45);
  transition: opacity .3s ease, transform .3s ease;
}
.noukano-item:hover,
.noukano-item:focus-visible,
.noukano-item.is-active { color: var(--white); }
.noukano-item.is-active::before { opacity: 1; transform: scale(1); }
.noukano-item:focus-visible { outline: 1px solid rgba(255,255,255,.75); outline-offset: 3px; }
.noukano-item__name {
  display: block;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 720;
  line-height: 1.5;
  letter-spacing: .05em;
}
.noukano-item__description {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .035em;
}
.noukano-link {
  display: inline-block;
  margin-top: 34px;
  padding: 8px 0;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: color .25s ease, border-color .25s ease;
}
.noukano-link:hover,
.noukano-link:focus-visible { color: var(--white); border-color: var(--white); }
.noukano-link:focus-visible { outline: 1px solid var(--white); outline-offset: 5px; }
.noukano-phone-stage {
  position: relative;
  width: min(360px, 30vw);
}
.noukano-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  padding: 9px;
  overflow: hidden;
  background: #07152a;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 44px;
  box-shadow: 0 38px 80px rgba(0,0,0,.5), 0 10px 28px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.noukano-phone-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}
.noukano-phone-nav::before {
  position: absolute;
  inset: 6px;
  background: rgba(7,21,42,.78);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  content: "";
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.noukano-phone-nav:hover::before {
  background: rgba(255,255,255,.16);
  border-color: var(--white);
  transform: scale(1.06);
}
.noukano-phone-nav:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.noukano-phone-nav--prev { left: -22px; }
.noukano-phone-nav--next { right: -22px; }
.noukano-phone-nav__icon {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.noukano-phone-nav--prev .noukano-phone-nav__icon { transform: translateX(1px) rotate(-135deg); }
.noukano-phone-nav--next .noukano-phone-nav__icon { transform: translateX(-1px) rotate(45deg); }
.noukano-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 35px;
}
.noukano-caption { display: none; }
.noukano-screen {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
}
.noukano-screen.is-active { opacity: 1; }

.news-section {
  position: relative;
  z-index: 3;
  scroll-margin-top: var(--header-height);
  padding: 124px 24px;
  color: #10233e;
  background: var(--white);
}
.news-section__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}
.news-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}
.news-section h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 820;
  line-height: .95;
  letter-spacing: -.035em;
}
.news-view-all {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 126px;
  aspect-ratio: 1;
  border: 1px solid #10233e;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .08em;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.news-view-all span:last-child { font-size: 18px; font-weight: 500; }
.news-view-all:hover,
.news-view-all:focus-visible { color: var(--white); background: #10233e; transform: rotate(5deg); }
.news-view-all:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.news-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 0 18px;
  overscroll-behavior-inline: contain;
  scrollbar-color: #10233e #e4e8eb;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.news-card {
  display: block;
  flex: 0 0 384px;
  min-height: 384px;
  scroll-snap-align: start;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.news-card__thumbnail {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f4f6;
}
.news-card__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.news-card__meta { display: block; padding: 17px 2px 0; }
.news-card time { display: block; color: #62778a; font-size: 11px; font-weight: 650; letter-spacing: .1em; }
.news-card__title { display: block; margin-top: 8px; font-size: 15px; font-weight: 750; line-height: 1.65; letter-spacing: .025em; }
.news-card:hover,
.news-card:focus-visible { transform: translateY(-4px); }
.news-card:hover .news-card__thumbnail img,
.news-card:focus-visible .news-card__thumbnail img { transform: scale(1.05); }
.news-card:hover .news-card__title,
.news-card:focus-visible .news-card__title { color: #285f8f; }
.news-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }

.insights-section {
  position: relative;
  z-index: 3;
  padding: 0 24px 104px;
  color: #10233e;
  background: var(--white);
}
.insights-section__inner { width: min(100%, 1002px); margin: 0 auto; }
.insights-list { border-top: 1px solid #cbd4dc; }
.insights-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 14px 0;
  border-bottom: 1px solid #cbd4dc;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
  letter-spacing: .025em;
  transition: color .25s ease, background .25s ease;
}
.insights-item:hover,
.insights-item:focus-visible { color: #285f8f; background: #f5f8fa; }
.insights-item:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.insights-all { margin-top: 28px; }

.company-menu {
  position: relative;
  z-index: 3;
  min-height: 640px;
  overflow: hidden;
  color: rgba(255,255,255,.96);
  background: #142230;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  isolation: isolate;
}
.company-menu__bg,
.company-menu__overlay {
  position: absolute;
  inset: 0;
}
.company-menu__bg {
  z-index: -3;
  background-image: url("./assets/svc-biz.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity .3s ease;
}
.company-menu__bg.is-active { opacity: 1; }
.company-menu__bg.is-next { z-index: -2; }
.company-menu__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,16,27,.82) 0%, rgba(5,16,27,.7) 52%, rgba(5,16,27,.55) 100%);
}
.company-menu__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 760px);
  min-width: 0;
  padding: clamp(64px, 6vw, 104px) clamp(40px, 6vw, 112px);
}
.company-menu__label {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
}
.company-menu__catch {
  margin: 34px 0 68px;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
.company-menu__links {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.38);
}
.company-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 22px 0;
  color: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(255,255,255,.38);
  font-size: 28px;
  font-weight: 780;
  line-height: 1.55;
  letter-spacing: .025em;
  transition: color .25s ease, background-color .25s ease;
}
.company-menu__links a > span:first-child { min-width: 0; }
.company-menu__links a:hover,
.company-menu__links a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.company-menu__links a:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.company-menu__arrow {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #10233e;
  background: rgba(255,255,255,.94);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform .25s ease;
}
.company-menu__links a:hover .company-menu__arrow,
.company-menu__links a:focus-visible .company-menu__arrow { transform: translateX(4px); }

.dual-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #52657b;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: .12em;
}
.dual-label span:last-child { font-size: 10px; letter-spacing: .22em; }
.message-section,
.vision-section,
.company-section {
  position: relative;
  z-index: 3;
  scroll-margin-top: var(--header-height);
  color: #10233e;
  background: var(--white);
}
.message-section { padding: 128px 24px 142px; border-top: 1px solid #d6dde3; }
.message-section__inner,
.vision-section__inner,
.company-section__inner { width: min(100%, 1002px); margin: 0 auto; }
.message-section h2 {
  max-width: 920px;
  margin: 38px 0 0;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 780;
  line-height: 1.42;
  letter-spacing: .035em;
}
.message-copy { max-width: 780px; margin: 54px 0 0 auto; }
.message-copy p { margin: 0; font-size: 15px; line-height: 2.35; letter-spacing: .04em; }
.message-copy p + p { margin-top: 26px; }
.message-signature { margin: 42px 0 0; font-size: 13px; font-weight: 650; text-align: right; letter-spacing: .05em; }

.vision-section { padding: 140px 24px; background: #f7f8f9; }
.philosophy-block + .philosophy-block { margin-top: 148px; }
.philosophy-block h2 {
  margin: 38px 0 0;
  font-size: clamp(46px, 6.8vw, 88px);
  font-weight: 790;
  line-height: 1.25;
  letter-spacing: .015em;
}
.philosophy-copy { max-width: 800px; margin: 34px 0 0; font-size: 15px; line-height: 2; letter-spacing: .04em; }
.value-block { margin-top: 148px; }
.value-list { margin: 38px 0 0; padding: 16px 40px; background: #eceff1; border-radius: 22px; }
.value-item { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.35fr); gap: 52px; padding: 36px 0; }
.value-item + .value-item { border-top: 1px solid #cbd4dc; }
.value-item dt { font-size: 20px; font-weight: 760; line-height: 1.65; letter-spacing: .035em; }
.value-item dd { margin: 0; font-size: 14px; line-height: 2; letter-spacing: .035em; }

.company-section { padding: 134px 24px 142px; }
.company-list { margin: 46px 0 0; border-top: 1px solid #cbd4dc; }
.company-list > div { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 34px; padding: 27px 0; border-bottom: 1px solid #cbd4dc; }
.company-list dt { color: #52657b; font-size: 13px; font-weight: 750; letter-spacing: .06em; }
.company-list dd { margin: 0; font-size: 14px; line-height: 1.9; letter-spacing: .035em; }
.company-list dd a { text-decoration: underline; text-decoration-color: #9aa9b6; text-underline-offset: 5px; }
.company-list dd a:hover,
.company-list dd a:focus-visible { color: #285f8f; }
.company-list dd a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.company-list dd span { margin: 0 8px; color: #8b9aa8; }
.company-clients { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 34px; margin-top: 54px; padding: 30px 0; border-top: 1px solid #10233e; border-bottom: 1px solid #cbd4dc; }
.company-clients h3 { margin: 0; font-size: 14px; font-weight: 760; letter-spacing: .06em; }
.company-clients p { margin: 0; font-size: 14px; line-height: 1.9; letter-spacing: .04em; }

.top-contact-cta {
  position: relative;
  z-index: 3;
  padding: 100px 24px;
  color: #10233e;
  background: #f1f4f6;
  text-align: center;
}
.top-contact-cta__inner { width: min(100%, 880px); margin: 0 auto; }
.top-contact-cta h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.55;
  letter-spacing: .045em;
}
.top-contact-cta p { margin: 22px 0 0; font-size: 15px; line-height: 2; letter-spacing: .03em; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-width: 230px;
  margin-top: 34px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .08em;
  transition: color .25s ease, background .25s ease;
}
.primary-button:hover,
.primary-button:focus-visible { color: var(--black); background: var(--yellow); }
.primary-button:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.site-footer {
  position: relative;
  z-index: 3;
  color: #fff;
  background: #1e1e1e;
  border-top: none;
}
.site-footer__inner { width: min(100%, 1240px); margin: 0 auto; padding: 77px 24px 115px; }
.site-footer a {
  color: #fff;
  transition: color .2s ease;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(34px, 5vw, 76px);
}
.footer-company img { display: block; width: 180px; height: auto; }
.footer-company__name { margin: 22px 0 0; font-size: 13px; font-weight: 750; letter-spacing: .04em; }
.footer-company__representative { margin: 7px 0 0; font-size: 12px; letter-spacing: .025em; }
.footer-company address {
  margin-top: 20px;
  font-size: 12px;
  font-style: normal;
  line-height: 2;
  letter-spacing: .025em;
}
.footer-company address a:hover,
.footer-company address a:focus-visible { color: #bdbdbd; text-decoration: underline; text-underline-offset: 4px; }
.footer-company address a:focus-visible { outline: 2px solid #bdbdbd; outline-offset: 3px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-heading { margin: 0 0 7px; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.footer-column a { font-size: 13px; line-height: 1.6; }
.footer-column a:hover,
.footer-column a:focus-visible { color: #bdbdbd; text-decoration: underline; text-underline-offset: 4px; }
.footer-column a:focus-visible { outline: 2px solid #bdbdbd; outline-offset: 3px; }
.footer-copyright {
  margin: 58px 0 0;
  padding-top: 22px;
  border-top: 1px solid #3d3d3d;
  color: #bdbdbd;
  font-size: 11px;
  letter-spacing: .05em;
}

.service-page { color: #10233e; }
.service-page main { padding-top: var(--header-height); }
.service-hero {
  position: relative;
  display: grid;
  height: 300px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.service-hero__media,
.service-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-hero__media {
  z-index: -2;
  display: block;
  object-fit: cover;
}
.service-hero::after {
  z-index: -1;
  background: rgba(13,31,56,.58);
  content: "";
}
.service-hero h1 {
  margin: 0;
  padding: 0 24px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .14em;
  text-align: center;
}
.breadcrumbs { width: min(calc(100% - 48px), 1002px); margin: 0 auto; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 18px 0;
  list-style: none;
  color: #667b8e;
  font-size: 11px;
  line-height: 1.6;
}
.breadcrumbs li { display: flex; align-items: center; min-width: 0; overflow-wrap: anywhere; }
.breadcrumbs li + li::before { margin-right: 8px; color: #a4b0ba; content: "/"; }
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: #285f8f; text-decoration: underline; text-underline-offset: 3px; }
.service-detail {
  padding: 92px 24px 124px;
  background: var(--white);
}
.service-detail__inner { width: min(100%, 1002px); margin: 0 auto; }
.service-catch {
  margin: 0;
  color: #285f8f;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 750;
  line-height: 1.7;
  letter-spacing: .06em;
  text-align: center;
}
.service-intro {
  width: min(100%, 780px);
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .035em;
  text-align: center;
}
.service-intro--supplement { margin-top: 8px; }
.service-status {
  width: fit-content;
  margin: 28px auto 0;
  padding: 7px 16px;
  color: #285f8f;
  background: #eef4f8;
  border: 1px solid #d7e4ed;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.service-feature-list {
  margin: 68px 0 0;
  border-top: 1px solid #cbd4dc;
}
.service-feature {
  display: grid;
  grid-template-columns: minmax(330px, 42%) minmax(0, 1fr);
  align-items: center;
  min-height: 156px;
  padding: 34px 0;
  border-bottom: 1px solid #cbd4dc;
}
.service-feature__heading {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  padding-right: 38px;
}
.service-feature__number {
  color: #7992a9;
  font-size: 50px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: .02em;
}
.service-feature h2 {
  margin: 0;
  color: #285f8f;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.65;
  letter-spacing: .035em;
}
.service-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .025em;
}
.service-practice,
.service-consult,
.service-process { margin-top: 88px; }
.service-practice {
  padding: 46px 54px;
  background: #f2f6f8;
}
.service-practice > h2 {
  margin: 0;
  color: #285f8f;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 760;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
}
.service-practice > p {
  width: min(100%, 780px);
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .035em;
}
.service-consult > h2,
.service-process > h2,
.other-services h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 760;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
}
.service-consult ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.service-consult li {
  position: relative;
  min-height: 62px;
  padding: 19px 20px 19px 54px;
  background: #f2f6f8;
  font-size: 14px;
  line-height: 1.7;
}
.service-consult li::before {
  position: absolute;
  top: 20px;
  left: 22px;
  color: #285f8f;
  font-weight: 800;
  content: "✓";
}
.service-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.service-process li {
  min-height: 174px;
  padding: 26px;
  background: #10233e;
  color: var(--white);
}
.service-process span { color: #8eabc1; font-size: 28px; font-weight: 250; letter-spacing: .04em; }
.service-process p { margin: 24px 0 0; font-size: 15px; font-weight: 650; line-height: 1.8; letter-spacing: .035em; }
.service-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 72px auto 0;
  padding: 10px 0;
  color: #285f8f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}
.service-back::before { content: "←"; transition: transform .25s ease; }
.service-back:hover::before,
.service-back:focus-visible::before { transform: translateX(-5px); }
.service-back:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.service-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 72px;
}
.service-closing {
  margin: 0 0 26px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
  line-height: 1.7;
  letter-spacing: .045em;
  text-align: center;
}
.service-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 230px;
  padding: 17px 22px;
  color: var(--white);
  background: #10233e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .25s ease, background .25s ease;
}
.service-contact:hover,
.service-contact:focus-visible { color: #10233e; background: var(--yellow); }
.service-contact:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.service-actions .service-back { margin-top: 24px; }
.other-services { padding: 80px 24px 94px; background: #f1f4f6; }
.other-services__inner { width: min(100%, 1002px); margin: 0 auto; }
.other-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.other-services__grid a {
  display: grid;
  min-height: 82px;
  padding: 16px;
  place-items: center;
  background: var(--white);
  border: 1px solid #d3dce3;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.other-services__grid a:hover,
.other-services__grid a:focus-visible { color: #285f8f; border-color: #285f8f; transform: translateY(-3px); }
.other-services__grid a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* Company page */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.company-page { color: #1e1e1e; }
.company-page main { padding-top: var(--header-height); }
.company-page .dual-label {
  gap: 5px;
  color: #595959;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: .055em;
}
.company-page .dual-label span:last-child { font-size: 16px; letter-spacing: .09em; }
.company-hero {
  position: relative;
  height: 572px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.company-hero__media,
.company-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.company-hero__media { z-index: -2; object-fit: cover; }
.company-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,18,33,.86) 0%, rgba(7,18,33,.55) 48%, rgba(7,18,33,.2) 100%);
  content: "";
}
.company-hero__copy {
  position: absolute;
  right: 0;
  bottom: 52px;
  left: 0;
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto;
}
.company-hero h1 {
  margin: 0;
  font-size: clamp(82px, 12.5vw, 180px);
  font-weight: 760;
  line-height: .84;
  letter-spacing: -.035em;
}
.company-hero__copy p { margin: 30px 0 0; font-size: 28px; font-weight: 750; letter-spacing: .1em; }
.company-page-nav { padding: 0 24px; background: var(--white); }
.company-breadcrumbs,
.company-anchor-nav { width: min(100%, 1290px); margin: 0 auto; }
.company-breadcrumbs ol {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 42px 0 0;
  list-style: none;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
}
.company-breadcrumbs li + li::before { margin-right: 9px; color: #8a8a8a; content: "/"; }
.company-breadcrumbs a:hover,
.company-breadcrumbs a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.company-anchor-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 82px 0 48px;
}
.company-anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #dedede;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: .04em;
}
.company-anchor-nav i {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: #1e1e1e;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  line-height: 1;
  transition: transform .25s ease;
}
.company-anchor-nav a:hover i,
.company-anchor-nav a:focus-visible i { transform: translateY(4px); }
.company-anchor-nav a:focus-visible { outline: 2px solid #1e1e1e; outline-offset: 5px; }
.company-message,
.company-vision,
.company-value,
.company-overview {
  scroll-margin-top: var(--header-height);
  background: var(--white);
}
.company-message { padding: 122px 24px 142px; }
.company-message__inner,
.company-vision__inner,
.company-value__inner,
.company-overview__inner { width: min(100%, 1002px); margin: 0 auto; }
.company-message__layout {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 66px;
  align-items: start;
  margin-top: 42px;
}
.company-message__photo {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}
.company-message__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 50%; }
.company-message__body h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.65;
  letter-spacing: .035em;
}
.company-message__copy { margin-top: 30px; }
.company-message__copy p { margin: 0; font-size: 16px; line-height: 2.1; letter-spacing: .025em; }
.company-message__copy p + p { margin-top: 23px; }
.company-message__copy .company-message__signature { margin-top: 34px; font-size: 14px; font-weight: 650; line-height: 1.8; text-align: right; }
.company-vision { padding: 128px 24px 142px; background: #f7f7f7; }
.company-philosophy + .company-philosophy { margin-top: 118px; }
.company-philosophy h2 {
  margin: 36px 0 0;
  font-size: clamp(40px, 5.3vw, 68px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .015em;
}
.company-philosophy__copy { max-width: 780px; margin: 34px 0 0; font-size: 16px; line-height: 2; letter-spacing: .03em; }
.company-value { padding: 126px 24px 148px; }
.company-value__card {
  margin: 42px 0 0;
  padding: 20px 56px;
  background: #f1f1f1;
  border-radius: 28px;
}
.company-value__card > div {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.25fr);
  gap: 54px;
  padding: 44px 0;
}
.company-value__card > div + div { border-top: 1px solid #cecece; }
.company-value__card dt { font-size: 21px; font-weight: 780; line-height: 1.65; letter-spacing: .035em; }
.company-value__card dd { margin: 0; font-size: 16px; line-height: 2; letter-spacing: .025em; }
.company-overview { padding: 132px 24px 160px; }
.company-overview__inner {
  display: grid;
  grid-template-columns: 202px minmax(0, 748px);
  gap: 52px;
  align-items: start;
}
.company-overview__list { margin: 0; border-top: 1px solid #bdbdbd; }
.company-overview__list > div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #d0d0d0;
}
.company-overview__list dt { color: #595959; font-size: 16px; font-weight: 760; letter-spacing: .04em; }
.company-overview__list dd { margin: 0; font-size: 16px; line-height: 1.9; letter-spacing: .02em; }
.company-overview__list dd a { text-decoration: underline; text-decoration-color: #9a9a9a; text-underline-offset: 5px; }
.company-overview__list dd span { margin: 0 7px; color: #888; }
.company-overview__list dd a:hover,
.company-overview__list dd a:focus-visible { color: #285f8f; }
.company-overview__list dd a:focus-visible { outline: 2px solid #285f8f; outline-offset: 4px; }

@keyframes scroll-line { 0% { transform: translateX(-105%); } 55%, 100% { transform: translateX(105%); } }

@media (max-width: 1180px) {
  :root { --header-height: 76px; }
  .header-inner { padding-inline: 24px; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding: 12px 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
  }
  .menu-icon, .menu-icon::before { display: block; width: 24px; height: 1px; background: var(--black); transition: transform .25s ease; }
  .menu-icon { position: relative; }
  .menu-icon::before { position: absolute; top: 7px; content: ""; }
  .menu-button[aria-expanded="true"] .menu-icon { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon::before { transform: translateY(-7px) rotate(-90deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 22px 24px 28px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.nav-cta) { padding: 15px 0; border-bottom: 1px solid var(--gray-200); font-size: 15px; }
  .nav-cta { min-height: 54px; margin-top: 20px; padding-inline: 20px; font-size: 14px; }
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-company { grid-column: 1 / -1; }
  .other-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-item { grid-template-columns: 1fr; gap: 12px; }
  .company-message__layout { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 38px; }
  .company-overview__inner { grid-template-columns: 170px minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 820px) {
  .brand { width: 176px; }
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 100svh;
    padding: calc(var(--header-height) + 48px) 20px 80px;
    background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.74) 58%, rgba(255,255,255,.12) 100%);
  }
  h1 { font-size: clamp(40px, 11.4vw, 64px); }
  .headline { width: auto; }
  .loading__inner { padding-inline: 16px; }
  .loading__title { font-size: clamp(25px, 8.5vw, 54px); }
  .scroll-cue { left: 20px; }

  .service-feature { grid-template-columns: minmax(280px, 44%) minmax(0, 1fr); }
  .service-feature__heading { grid-template-columns: 70px minmax(0, 1fr); padding-right: 24px; }
  .service-feature__number { font-size: 44px; }
}

@media (max-width: 767px) {
  /* 英語ビルボードのnowrapは390pxで438px幅になり横はみ出しするため、スマホでは折り返す（実測バグ修正） */
  .statement-en .nb { white-space: normal; }
  .about-glance { padding: 76px 20px 82px; }
  .about-glance__inner > p:not(.section-label) { margin-top: 22px; font-size: 14px; line-height: 2; }
  .services { padding: 78px 20px 92px; }
  .services-lead { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .service-card { width: 100%; min-height: 330px; }
  .service-card__number { font-size: 44px; }
  .service-card__body { padding-inline: 24px; }

  .noukano-pin {
    display: block;
    min-height: 0;
    padding: 76px 20px 88px;
  }
  .noukano-layout { display: flex; flex-direction: column; gap: 58px; }
  .noukano-phone-stage {
    width: min(76vw, 320px);
    margin-inline: auto;
    margin-bottom: 74px;
  }
  .noukano-phone {
    overflow: visible;
  }
  .noukano-caption {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    color: var(--white);
    text-align: center;
  }
  .noukano-caption__name {
    font-size: 18px;
    font-weight: 720;
    line-height: 1.5;
    letter-spacing: .05em;
  }
  .noukano-caption__description {
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .035em;
  }
  .noukano-copy { width: 100%; }
  .noukano-ghost { margin-bottom: 28px; font-size: clamp(54px, 17.2vw, 86px); }
  .noukano h2 { font-size: clamp(24px, 7vw, 32px); }
  .noukano-lead { font-size: 13px; }
  .noukano-stats { font-size: 11px; }
  .noukano-list { margin-top: 32px; }
  .noukano-item { padding-block: 13px; }
  .noukano-item::before { top: 23px; }
  .noukano-item__name { font-size: 18px; }

  .news-section { padding: 82px 20px; }
  .news-section__header { align-items: flex-end; margin-bottom: 42px; }
  .news-view-all { width: 94px; font-size: 9px; }
  .news-view-all span:last-child { font-size: 15px; }
  .news-track { gap: 16px; }
  .news-card { flex-basis: min(84vw, 340px); min-height: 0; }
  .insights-section { padding: 0 20px 74px; }
  .insights-item { min-height: 0; padding: 18px 0; }
  .company-menu { min-height: 0; }
  .company-menu__overlay { background: rgba(5,16,27,.72); }
  .company-menu__content { padding: 72px 20px 76px; }
  .company-menu__catch { margin: 28px 0 54px; font-size: clamp(34px, 10vw, 48px); }
  .company-menu__links a { gap: 18px; padding: 20px 0; font-size: 28px; line-height: 1.55; }
  .company-menu__arrow { flex-basis: 44px; width: 44px; height: 44px; font-size: 20px; }
  .top-contact-cta { padding: 72px 20px; }
  .top-contact-cta p { font-size: 14px; text-align: left; }
  .primary-button { width: min(100%, 300px); }

  .message-section { padding: 82px 20px 92px; }
  .message-section h2 { margin-top: 28px; font-size: clamp(30px, 8.8vw, 42px); }
  .message-copy { margin-top: 38px; }
  .message-copy p { font-size: 14px; line-height: 2.15; }
  .message-signature { margin-top: 34px; line-height: 1.8; }
  .vision-section { padding: 90px 20px; }
  .philosophy-block + .philosophy-block,
  .value-block { margin-top: 96px; }
  .philosophy-block h2 { margin-top: 28px; font-size: clamp(38px, 11.5vw, 58px); line-height: 1.35; }
  .philosophy-copy { margin-top: 26px; font-size: 14px; }
  .value-list { margin-top: 28px; padding: 8px 22px; border-radius: 16px; }
  .value-item { padding: 28px 0; }
  .value-item dt { font-size: 18px; }
  .company-section { padding: 86px 20px 94px; }
  .company-list { margin-top: 34px; }
  .company-list > div { grid-template-columns: 1fr; gap: 10px; padding: 23px 0; }
  .company-list dd { font-size: 13px; }
  .company-list dd span { margin: 0 5px; }
  .company-clients { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }

  .site-footer__inner { padding: 77px 20px 115px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-company { grid-column: auto; }
  .footer-copyright { margin-top: 44px; line-height: 1.7; }

  .service-hero { height: 250px; }
  .service-hero h1 { padding-inline: 20px; font-size: clamp(25px, 7vw, 34px); }
  .breadcrumbs { width: calc(100% - 40px); }
  .service-detail { padding: 64px 20px 84px; }
  .service-intro { font-size: 14px; text-align: left; }
  .service-feature-list { margin-top: 50px; }
  .service-feature { display: block; min-height: 0; padding: 30px 0; }
  .service-feature__heading { grid-template-columns: 62px minmax(0, 1fr); padding: 0; }
  .service-feature__number { font-size: 40px; }
  .service-feature h2 { font-size: 17px; }
  .service-feature p { margin-top: 20px; font-size: 14px; }
  .service-practice,
  .service-consult,
  .service-process { margin-top: 66px; }
  .service-practice { padding: 34px 24px; }
  .service-practice > p { font-size: 14px; }
  .service-consult ul,
  .service-process ol { grid-template-columns: 1fr; margin-top: 28px; }
  .service-consult li { padding-right: 16px; }
  .service-process li { min-height: 0; }
  .service-actions { margin-top: 54px; }
  .service-contact { width: min(100%, 340px); min-width: 0; }
  .other-services { padding: 64px 20px 74px; }
  .other-services__grid { grid-template-columns: 1fr; }

  .company-page .dual-label,
  .company-page .dual-label span:last-child { font-size: 14px; }
  .company-hero { height: 390px; }
  .company-hero__copy { bottom: 36px; width: calc(100% - 40px); }
  .company-hero h1 { font-size: clamp(58px, 20vw, 88px); }
  .company-hero__copy p { margin-top: 22px; font-size: 20px; }
  .company-page-nav { padding-inline: 20px; }
  .company-breadcrumbs ol { padding-top: 28px; }
  .company-anchor-nav { grid-template-columns: 1fr 1fr; gap: 8px 20px; padding: 48px 0 36px; }
  .company-anchor-nav a { font-size: 13px; }
  .company-message,
  .company-vision,
  .company-value,
  .company-overview { padding: 80px 20px 92px; }
  .company-message__layout { grid-template-columns: 1fr; gap: 38px; margin-top: 30px; }
  .company-message__photo { border-radius: 18px; }
  .company-message__body h2 { font-size: 25px; }
  .company-message__copy { margin-top: 24px; }
  .company-message__copy p { font-size: 15px; line-height: 2; }
  .company-message__copy .company-message__signature { text-align: left; }
  .company-philosophy + .company-philosophy { margin-top: 86px; }
  .company-philosophy h2 { margin-top: 28px; font-size: clamp(38px, 11vw, 52px); line-height: 1.38; }
  .company-philosophy__copy { margin-top: 26px; font-size: 15px; }
  .company-value__card { margin-top: 30px; padding: 8px 24px; border-radius: 20px; }
  .company-value__card > div { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .company-value__card dt { font-size: 19px; }
  .company-value__card dd { font-size: 15px; line-height: 1.9; }
  .company-overview__inner { grid-template-columns: 1fr; gap: 34px; }
  .company-overview__list > div { grid-template-columns: 1fr; gap: 9px; padding: 23px 0; }
  .company-overview__list dt,
  .company-overview__list dd { font-size: 14px; }
}

@media (max-width: 390px) {
  .header-inner { padding-inline: 16px; }
  .brand { width: 150px; }
  .menu-button { gap: 8px; }
  .hero { padding-inline: 16px; }
  .eyebrow { margin-bottom: 20px; }
  h1 { font-size: 11.2vw; }
  .scroll-cue { left: 16px; }
  .loading__title { font-size: 8vw; }
  .company-page-nav { padding-inline: 16px; }
  .company-hero__copy { width: calc(100% - 32px); }
  .company-anchor-nav { grid-template-columns: 1fr; }
  .company-anchor-nav a { padding-block: 11px; }
  .company-overview__list dd span { display: block; height: 5px; margin: 0; font-size: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html, html body { scroll-behavior: auto; }
  html.is-intro-pending, html.is-intro-pending body { overflow: auto; }
  .loading { display: none !important; }
  .text-gradation-reveal { -webkit-mask: none; mask: none; }
  .site-header { transition: none; }
  .st-line, .statement-en, .service-card, .section-reveal { opacity: 1 !important; filter: none !important; transform: none !important; }
  [data-reveal-item] { opacity: 1 !important; transform: none !important; }
  .noukano-pin { min-height: 0; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Shared company-style secondary pages */
.company-page-nav--compact { padding-bottom: 42px; }
.company-hero__title--long { font-size: clamp(64px, 9.2vw, 132px) !important; }
.subpage-inner { width: min(100%, 1120px); margin: 0 auto; }
.subpage-inner--narrow { width: min(100%, 920px); }
.subpage-intro { padding: 92px 24px 112px; background: var(--white); }
.subpage-intro--short { padding-bottom: 88px; }
.subpage-intro__inner { width: min(100%, 1002px); }
.subpage-intro h2,
.subpage-heading h2,
.subpage-split h2,
.contact-guide h2 {
  margin: 30px 0 0;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .015em;
}
.subpage-lead { max-width: 760px; margin: 30px 0 0; font-size: 17px; line-height: 2; letter-spacing: .035em; }
.subpage-section { padding: 118px 24px 132px; background: var(--white); }
.subpage-section--tint { background: #f3f4f4; }
.subpage-heading { margin-bottom: 50px; }
.subpage-heading h2 { font-size: clamp(30px, 3.6vw, 48px); }
.subpage-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 46px; }
.subpage-actions .primary-button { margin-top: 0; }
.primary-button--line { background: #167749; }
.inline-arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 280px;
  margin-top: 30px;
  padding: 17px 0;
  border-bottom: 1px solid #777;
  font-size: 14px;
  font-weight: 760;
}
.inline-arrow-link:hover,
.inline-arrow-link:focus-visible { color: #285f8f; border-color: #285f8f; }
.inline-arrow-link:focus-visible { outline: 2px solid #285f8f; outline-offset: 4px; }

.producer-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.producer-service-card { overflow: hidden; background: var(--white); border: 1px solid #d9d9d9; border-radius: 18px; }
.producer-service-card__visual { display: grid; height: 320px; overflow: hidden; place-items: end center; background: linear-gradient(155deg, #e8eef1, #d4e0e6); }
.producer-service-card:nth-child(2) .producer-service-card__visual { background: linear-gradient(155deg, #e8f1ed, #ceded7); }
.producer-service-card:nth-child(3) .producer-service-card__visual { background: linear-gradient(155deg, #f0eee7, #ded8c9); }
.producer-service-card:nth-child(4) .producer-service-card__visual { background: linear-gradient(155deg, #eee9f2, #d9cfe0); }
.producer-service-card__visual img { display: block; width: 78%; height: 90%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 18px 18px rgba(20,30,38,.15)); }
.producer-service-card__copy { padding: 24px 22px 28px; }
.producer-service-card__copy > span { color: #777; font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.producer-service-card h3 { min-height: 3.2em; margin: 12px 0 0; font-size: 18px; line-height: 1.6; letter-spacing: .03em; }
.producer-service-card p { margin: 14px 0 0; color: #4f4f4f; font-size: 14px; line-height: 1.85; }
.consult-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.consult-card { position: relative; min-height: 330px; padding: 42px; overflow: hidden; color: var(--white); background: #142c44; border-radius: 22px; }
.consult-card:nth-child(2) { background: #294238; }
.consult-card__index { position: absolute; top: 12px; right: 24px; color: rgba(255,255,255,.15); font-size: 108px; font-weight: 800; line-height: 1; }
.consult-card__label { margin: 0; font-size: 12px; font-weight: 750; letter-spacing: .15em; }
.consult-card h3 { position: relative; margin: 62px 0 0; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.5; }
.consult-card h3 + p { position: relative; margin: 22px 0 0; font-size: 15px; line-height: 1.9; }
.consult-card__link { position: relative; display: block; margin-top: 28px; font-size: 13px; font-weight: 760; }
.consult-card:hover,
.consult-card:focus-visible { transform: translateY(-4px); }
.consult-card:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.product-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-showcase-card { position: relative; min-height: 430px; padding: 34px 32px; overflow: hidden; color: #173123; background: linear-gradient(145deg, #e2eee3, #c8ddcc); border-radius: 24px; }
.product-showcase-card--tomato { color: #411b14; background: linear-gradient(145deg, #f2ded5, #e9c3b3); }
.product-showcase-card--sweetpotato { color: #321e3a; background: linear-gradient(145deg, #e7dce9, #d4c0d9); }
.product-showcase-card::after { position: absolute; right: -50px; bottom: -85px; width: 230px; height: 230px; background: rgba(255,255,255,.28); border-radius: 50%; content: ""; }
.product-showcase-card__index { display: block; color: currentColor; font-size: 12px; font-weight: 800; letter-spacing: .12em; opacity: .6; }
.product-showcase-card__tag { display: inline-block; margin: 88px 0 0 !important; padding: 7px 12px; background: rgba(255,255,255,.58); border-radius: 99px; font-size: 11px !important; font-weight: 750; }
.product-showcase-card h3 { position: relative; z-index: 1; margin: 20px 0 0; font-size: clamp(21px, 2vw, 28px); line-height: 1.55; }
.product-showcase-card h3 + p { position: relative; z-index: 1; margin: 18px 0 0; font-size: 14px; line-height: 1.9; }
.product-showcase-card a { position: absolute; z-index: 2; right: 32px; bottom: 30px; left: 32px; padding-top: 18px; border-top: 1px solid currentColor; font-size: 13px; font-weight: 760; }
.product-showcase-card a:hover,
.product-showcase-card a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.product-showcase-card a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.subpage-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.subpage-split h2 { font-size: clamp(30px, 3.6vw, 48px); }
.subpage-split__copy { padding-top: 43px; }
.subpage-split__copy p { margin: 0; font-size: 16px; line-height: 2; }

.news-archive-list { border-top: 1px solid #aeb3b6; }
.news-archive-item { display: grid; grid-template-columns: 205px minmax(0, 1fr); gap: 42px; padding: 40px 0; border-bottom: 1px solid #c8cccf; }
.news-archive-item__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.news-archive-item time { font-size: 14px; font-weight: 760; letter-spacing: .08em; }
.news-archive-item__meta span { padding: 5px 10px; color: #4e5b63; border: 1px solid #9da5aa; border-radius: 99px; font-size: 10px; font-weight: 750; }
.news-archive-item > p { margin: 0; font-size: 17px; font-weight: 650; line-height: 1.9; letter-spacing: .025em; }

.contact-layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: 66px; align-items: start; }
.contact-guide h2 { font-size: clamp(30px, 3.6vw, 48px); }
.contact-guide ul { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid #b8bec2; }
.contact-guide li { padding: 18px 0; border-bottom: 1px solid #cbd0d3; font-size: 14px; font-weight: 680; line-height: 1.7; }
.contact-guide li::before { margin-right: 10px; content: "・"; }
.contact-direct { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 36px; padding: 26px; color: var(--white); background: #1e1e1e; border-radius: 14px; }
.contact-direct p { margin: 0 0 8px; font-size: 13px; }
.contact-direct a { font-size: 18px; font-weight: 780; letter-spacing: .04em; }
.contact-direct span { font-size: 11px; opacity: .72; }
.contact-form-card { padding: 40px; background: var(--white); border: 1px solid #d3d7da; border-radius: 22px; box-shadow: 0 20px 50px rgba(20,30,40,.07); }
.contact-form-note { margin: 0 0 30px; padding: 16px 18px; color: #3f4549; background: #f0f1f2; border-left: 4px solid #5e6971; font-size: 13px; line-height: 1.8; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 20px; }
.contact-field { display: flex; flex-direction: column; gap: 9px; }
.contact-field--full { grid-column: 1 / -1; }
.contact-field label { font-size: 13px; font-weight: 750; }
.contact-field label span { margin-left: 7px; color: #a33d31; font-size: 10px; }
.contact-field input,
.contact-field select,
.contact-field textarea { width: 100%; min-height: 52px; padding: 12px 14px; background: #fff; border: 1px solid #b9bfc3; border-radius: 4px; font: inherit; }
.contact-field textarea { min-height: 180px; resize: vertical; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { outline: 2px solid #285f8f; outline-offset: 2px; }
.contact-form-submit p { margin: 0; font-size: 12px; line-height: 1.8; }
.contact-form-submit p a { text-decoration: underline; text-underline-offset: 3px; }
.contact-form-submit button { min-height: 54px; margin-top: 10px; color: var(--white); background: var(--ink); border: 0; font-size: 13px; font-weight: 760; cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.contact-form-submit button:hover { transform: translateY(-1px); }
.contact-form-submit button:disabled { opacity: .55; cursor: wait; transform: none; }
.contact-form-status { min-height: 1.8em; margin-top: 8px !important; font-size: 13px !important; }
.contact-form-status.is-success { color: #176b35; }
.contact-form-status.is-error { color: #b42318; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.privacy-section { padding-top: 86px; }
.privacy-intro { margin: 34px 0 0; font-size: 16px; line-height: 2; }
.privacy-list { margin-top: 52px; border-top: 1px solid #b8b8b8; }
.privacy-list section { padding: 35px 0 37px; border-bottom: 1px solid #d2d2d2; }
.privacy-list h2 { margin: 0; font-size: 20px; line-height: 1.6; letter-spacing: .035em; }
.privacy-list p { margin: 17px 0 0; font-size: 15px; line-height: 2; letter-spacing: .02em; }

@media (max-width: 920px) {
  .producer-service-grid { grid-template-columns: 1fr 1fr; }
  .product-card-grid { grid-template-columns: 1fr; }
  .product-showcase-card { min-height: 360px; }
  .subpage-split,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .subpage-split__copy { padding-top: 0; }
}

@media (max-width: 680px) {
  .company-page-nav--compact { padding-bottom: 28px; }
  .company-hero__title--long { font-size: clamp(42px, 15vw, 64px) !important; line-height: .95 !important; }
  .subpage-intro { padding: 62px 20px 74px; }
  .subpage-intro--short { padding-bottom: 62px; }
  .subpage-intro h2,
  .subpage-heading h2,
  .subpage-split h2,
  .contact-guide h2 { margin-top: 24px; font-size: 30px; }
  .subpage-lead { margin-top: 22px; font-size: 15px; }
  .subpage-section { padding: 76px 20px 86px; }
  .subpage-heading { margin-bottom: 34px; }
  .producer-service-grid,
  .consult-card-grid { grid-template-columns: 1fr; }
  .producer-service-card { display: grid; grid-template-columns: 132px minmax(0, 1fr); min-height: 210px; }
  .producer-service-card__visual { height: 100%; min-height: 210px; }
  .producer-service-card__visual img { width: 88%; height: 88%; }
  .producer-service-card__copy { padding: 24px 18px; }
  .producer-service-card h3 { min-height: 0; font-size: 16px; }
  .producer-service-card p { font-size: 13px; }
  .consult-card { min-height: 300px; padding: 32px 26px; }
  .consult-card h3 { margin-top: 56px; font-size: 25px; }
  .product-showcase-card { min-height: 400px; padding: 30px 25px; }
  .product-showcase-card a { right: 25px; left: 25px; }
  .news-archive-item { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .news-archive-item__meta { flex-direction: row; align-items: center; }
  .news-archive-item > p { font-size: 15px; }
  .contact-form-card { padding: 28px 20px; border-radius: 16px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-field--full { grid-column: auto; }
  .privacy-section { padding-top: 58px; }
  .privacy-intro,
  .privacy-list p { font-size: 14px; }
  .privacy-list h2 { font-size: 18px; }
}

.materials-band {
  position: relative;
  z-index: 3;
  padding: 197px 0 163px;
  background: transparent;
}
.materials-band__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.materials-band__banner {
  position: relative;
  display: flex;
  width: 1200px;
  max-width: 100%;
  aspect-ratio: 1200 / 466;
  height: auto;
  margin: 0 auto;
  padding: 48px 60px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}
.materials-band__banner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(4, 12, 19, .48);
  content: "";
}
.materials-band__banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s;
}
.materials-band__banner:hover > img {
  transform: scale(1.05);
}
.materials-band h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: .055em;
}
.materials-band__button {
  display: inline-flex;
  width: 242px;
  height: 242px;
  padding: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease;
}
.materials-band__button:hover,
.materials-band__button:focus-visible {
  color: #000;
  background: #fff;
}
.materials-band__button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

@media (max-width: 767px) {
  .materials-band { padding: clamp(80px, 13.68vw, 197px) 0 clamp(64px, 11.32vw, 163px); }
  .materials-band__banner { padding: 4vw 5vw; gap: 3vw; }
  .materials-band h2 { max-width: 9em; font-size: clamp(16px, 5vw, 38px); }
  .materials-band__button {
    width: clamp(108px, 20.17vw, 242px);
    height: clamp(108px, 20.17vw, 242px);
    padding: 12px;
    font-size: clamp(10px, 1.34vw, 16px);
  }
}

@media (max-width: 390px) {
  .materials-band__inner { padding-inline: 16px; }
}
