:root {
  --ink: #0c1020;
  --muted: #5f6675;
  --paper: #f8f9fb;
  --line: #dfe4ec;
  --blue: #1769f0;
  --cyan: #7dbbff;
  --green: #49c992;
  --matching-green-soft: #f5fbf6;
  --yellow: #f5c74f;
  --coral: #ff8668;
  --white: #ffffff;
  --max: 1500px;
  --header: 76px;
  --font-site-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-site-base);
  line-height: 1.75;
  opacity: 0;
  animation: pageFadeIn 0.22s ease forwards;
}

html.is-page-leaving body {
  opacity: 0;
  animation: none;
  transition: opacity 0.18s ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

main,
.site-footer {
  transition: filter 0.22s ease;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  height: var(--header);
  padding: 0 clamp(18px, 4vw, 56px);
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 0;
  box-shadow: none;
  transform-origin: left top;
  transition:
    inset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.site-header.is-collapsing,
.site-header.is-compact {
  inset: calc(24px - 2mm) auto auto max(8px, calc(clamp(18px, 4vw, 56px) - 19px - 3mm));
  width: 132px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: none;
  overflow: hidden;
}

.site-header.is-compact {
  grid-template-columns: auto;
  gap: 0;
}

.site-header.is-collapsing {
  transition:
    inset 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    width 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    height 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    padding 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    background 0.25s ease,
    border-radius 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    box-shadow 0.25s ease;
}

.site-header.is-scroll-morph {
  overflow: hidden;
  transition: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand-logo-katakana {
  width: 122px;
}

.brand-logo[src$="logo-a-assi-katakana.png"] {
  width: 122px;
}

.header-compact-button {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-10px) scale(0.94);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-compact-button img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.site-header.is-compact .brand,
.site-header.is-compact .desktop-nav,
.site-header.is-compact .menu-button {
  opacity: 0;
  transform: translateX(-12px) scale(0.94);
  pointer-events: none;
}

.site-header.is-collapsing .brand {
  opacity: 0;
  transform: translateX(-10px) scale(0.94);
  pointer-events: none;
  transition-delay: 0.55s;
}

.site-header.is-collapsing .desktop-nav,
.site-header.is-collapsing .menu-button {
  pointer-events: none;
}

.site-header.is-compact .header-compact-button {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  min-width: max-content;
  white-space: nowrap;
  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav > * {
  transition:
    opacity 0.42s ease,
    transform 0.72s cubic-bezier(0.2, 0.92, 0.22, 1);
  transition-delay: 0s;
}

.site-header.is-scroll-morph .desktop-nav > *,
.site-header.is-scroll-morph .brand,
.site-header.is-scroll-morph .header-compact-button {
  transition: none;
}

.site-header.is-collapsing .desktop-nav > * {
  opacity: 0;
  transform: translateX(var(--collapse-x, -220px)) scale(0.84);
  transition-delay: var(--collapse-delay, 0s);
}

.site-header.is-collapsing .header-compact-button {
  opacity: 0;
  transform: translateX(-8px) scale(0.94);
  pointer-events: none;
}

.site-header > .brand,
.menu-button {
  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header > .brand,
.site-header .desktop-nav {
  margin-top: 3mm;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 56px;
}

.site-header:has(.nav-group:hover),
.site-header:has(.nav-group:focus-within) {
  box-shadow: none;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid var(--ink);
  transform: translateY(1px);
}

.nav-panel {
  position: fixed;
  inset: calc(var(--header) - 1px) 0 auto 0;
  display: grid;
  align-content: start;
  gap: 8px;
  width: auto;
  min-height: 278px;
  padding: 38px 0 48px clamp(200px, 11.5vw, 224px);
  background: var(--white);
  border: 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 24px 48px rgba(12, 16, 32, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 45;
}

.nav-group:hover .nav-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-panel a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 2px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-arrow {
  width: 4.5px;
  font-size: 3px;
}

.nav-arrow circle {
  stroke-width: 3.6;
}

.nav-panel a:hover .business-arrow-progress,
.nav-panel a:focus-visible .business-arrow-progress {
  stroke-dashoffset: 0;
}

.nav-panel a:hover {
  color: var(--blue);
  background: transparent;
}


.menu-button {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(223, 228, 236, 0.72);
  border-radius: 999px;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: 0.2s ease;
}

.site-menu {
  position: fixed;
  inset: var(--header) 0 auto;
  z-index: 40;
  display: none;
  background: rgba(248, 249, 251, 0.98);
  border-bottom: 1px solid var(--line);
}

.desktop-nav {
  display: flex;
}

.site-menu-inner {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.site-menu a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--header) + 52px) clamp(28px, 10.8vw, 210px) 96px;
  overflow: visible;
  color: var(--ink);
  background: var(--white);
}

.hero-visual {
  position: absolute;
  inset: -28px -2vw 0 auto;
  z-index: 0;
  width: 64vw;
  min-width: 0;
  pointer-events: none;
}

.hero-motion {
  display: block;
  width: 100%;
  height: calc(100svh + 216px);
  overflow: visible;
}

.hero-layer,
.motion-panel {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 0.5s ease,
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-layer {
  opacity: 0;
  transform: scale(1.035);
}

.hero-logo-image {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 18px 38px rgba(12, 16, 32, 0.08));
}

.hero-photo-image {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-visual.phase-logo .hero-logo-image {
  animation: heroLogoDrift 4.8s linear forwards;
}

.hero-visual.phase-photo .hero-photo-image {
  animation: heroPhotoDrift 4.8s linear forwards;
}

@keyframes heroLogoDrift {
  from {
    transform: translate(-14px, 14px);
  }

  to {
    transform: translate(14px, -14px);
  }
}

@keyframes heroPhotoDrift {
  from {
    transform: translate(17px, 0);
  }

  to {
    transform: translate(-17px, 0);
  }
}

.hero-visual.phase-scatter-logo .hero-logo-image {
  animation: heroLogoScatterDrift 4s linear forwards;
}

.hero-visual.phase-scatter-photo .hero-photo-image {
  animation: heroPhotoScatterDrift 4s linear forwards;
}

@keyframes heroLogoScatterDrift {
  from {
    transform: translate(14px, -14px);
  }

  to {
    transform: translate(26px, -26px);
  }
}

@keyframes heroPhotoScatterDrift {
  from {
    transform: translate(-17px, 0);
  }

  to {
    transform: translate(-32px, 0);
  }
}

.motion-panel {
  opacity: 0;
  mix-blend-mode: multiply;
}

.panel-top {
  fill: rgba(228, 235, 242, 0.58);
  transform: translate(0, -250px) scale(1.08);
}

.panel-right {
  fill: rgba(23, 105, 240, 0.9);
  transform: translate(260px, 0) scale(1.08);
}

.panel-bottom {
  fill: rgba(125, 187, 255, 0.78);
  transform: translate(-110px, 250px) scale(1.08);
}

.panel-left {
  fill: rgba(255, 255, 255, 0.44);
  transform: translate(-280px, 0) scale(1.08);
}

.panel-vein {
  opacity: 0;
  fill: rgba(255, 255, 255, 0.5);
}

.panel-vein-a {
  transform: translate(90px, -180px) scale(1.06);
}

.panel-vein-b {
  transform: translate(180px, 160px) scale(1.06);
}

.hero-visual.phase-logo .hero-layer-logo,
.hero-visual.phase-photo .hero-layer-photo {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.28s;
}

.hero-visual.phase-logo .motion-panel,
.hero-visual.phase-photo .motion-panel {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.hero-visual.phase-logo .panel-vein,
.hero-visual.phase-photo .panel-vein {
  opacity: 0.36;
}

.hero-visual.phase-scatter .hero-layer,
.hero-visual.phase-scatter .motion-panel {
  transition:
    opacity 2s ease,
    transform 2s cubic-bezier(0.7, 0, 0.2, 1);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  caret-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 3.8vw, 60px);
  line-height: 1.36;
  font-weight: 800;
  caret-color: transparent;
}

.hero h1 > span,
.about-mission h2 > span,
.about-hero h1 > span,
.about-section-title > span {
  display: block;
  white-space: nowrap;
}

.what h2 span {
  display: block;
}

.hero-title-line {
  overflow: hidden;
}

.hero-title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.05em);
  animation: heroTitleRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 0.0853s);
  pointer-events: none;
}

@keyframes heroTitleRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.statement {
  padding: clamp(255px, calc(13vw + 151px), 341px) 24px;
  background: var(--white);
}

.statement-inner {
  width: min(100%, 820px);
  margin: 0 auto;
}

.statement p {
  width: min(100%, 820px);
  margin: 0 0 42px;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.85;
  font-weight: 800;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.button-link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.statement-link {
  justify-content: flex-start;
  margin: 42px auto 0;
  color: var(--ink);
}

.statement-link .business-more-arrow {
  width: 64px;
  font-size: 17px;
}

.free-stock-section {
  position: relative;
  margin: 0 0 11cm;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.free-stock-landscape {
  position: relative;
  width: 100vw;
  height: clamp(420px, 46vw, 760px);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  background: #e8f1f3;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.free-stock-landscape::before,
.free-stock-landscape::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.free-stock-landscape::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 63, 86, 0.04)),
    linear-gradient(90deg, rgba(35, 93, 232, 0.12), transparent 32%, rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
}

.free-stock-landscape::after {
  inset: auto auto -18% -8%;
  width: 56%;
  height: 48%;
  background: rgba(37, 97, 238, 0.48);
  clip-path: polygon(0 34%, 100% 100%, 0 100%);
}

.free-stock-landscape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.news,
.contact {
  padding: clamp(80px, 10vw, 150px) 24px;
}

.news-shared-latest {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--white);
  font-family: var(--font-site-base);
}

.news-shared-latest-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.what {
  margin: 0 26px;
  padding: clamp(96px, 11vw, 170px) clamp(56px, 5vw, 100px) clamp(63px, 7.5vw, 112px);
  background: #f4f5f7;
  border-radius: 16px;
}

.section-heading,
.business-layout,
.news {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.section-heading > .eyebrow {
  font-size: 21px;
}

.what h2 {
  margin: 0;
  padding-top: clamp(58px, 7vw, 112px);
  border-top: 1px solid var(--line);
  font-size: clamp(10.2px, 2.51vw, 37.4px);
  line-height: 1.55;
}

.what-logo {
  display: block;
  width: clamp(132px, 18vw, 240px);
  height: auto;
  margin: clamp(171px, calc(4.8vw + 136px), 203px) auto 204px;
  filter:
    drop-shadow(0 34px 32px rgba(23, 105, 240, 0.154))
    drop-shadow(0 18px 18px rgba(12, 16, 32, 0.098));
  transform: translateY(-8px);
}

.business-layout {
  display: block;
  margin-top: clamp(70px, 9vw, 130px);
  caret-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.business-layout > .eyebrow {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.business-list {
  display: grid;
  gap: clamp(10px, 1.35vw, 18px);
  margin-top: 4cm;
}

.business-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(150px, 14vw, 220px) minmax(0, 1fr) 64px;
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
  min-height: clamp(82px, 7.5vw, 110px);
  padding: clamp(12px, 1.55vw, 22px);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.business-card:hover {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 78px rgba(12, 16, 32, 0.1);
}

.business-name {
  font-weight: 800;
}

.business-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
}

.business-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-copy {
  display: grid;
  gap: 14px;
}

.business-name {
  font-size: clamp(15px, 1.75vw, 31px);
  line-height: 1.35;
}

.business-text {
  color: var(--muted);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  line-height: 1.8;
}

.business-arrow {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  aspect-ratio: 1;
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
}

.business-arrow svg {
  position: absolute;
  inset: 0;
  display: block;
  overflow: visible;
  transform: rotate(-90deg);
}

.business-arrow circle {
  fill: none;
  stroke-width: 1.4;
}

.business-arrow-base {
  stroke: #d9dee8;
}

.business-arrow-progress {
  stroke: var(--blue);
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.5s ease;
}

.business-card:hover .business-arrow-progress {
  stroke-dashoffset: 0;
}

.business-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: max-content;
  margin: clamp(34px, 4.2vw, 62px) 0 0 auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.business-more-arrow {
  width: 64px;
  font-size: 17px;
}

.business-more:hover .business-arrow-progress {
  stroke-dashoffset: 0;
}

.contact-card:hover .business-arrow-progress {
  stroke-dashoffset: 0;
}

.business-list .button-link,
.news .button-link {
  margin-top: 34px;
}

.compact h2 {
  margin: -8px 0 34px;
  font-size: 32px;
}

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

.news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.news-meta {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.news-title {
  font-weight: 700;
}

.news-page {
  padding-top: var(--header);
  background: var(--white);
}

.news-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(124px, 15vw, 210px) 24px clamp(62px, 8vw, 112px);
}

.news-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
}

.news-hero h1 > span {
  display: block;
}

.news-archive {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px clamp(96px, 12vw, 164px);
}

.news-archive-list {
  display: grid;
  border-top: 1px solid rgba(223, 228, 236, 0.62);
}

.news-archive-item {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  min-height: 0;
  margin-inline: clamp(-18px, -1.7vw, -8px);
  padding: clamp(42px, 4.8vw, 69px) clamp(18px, 1.7vw, 30px);
  background: transparent;
  border: 1px solid transparent;
  border-bottom-color: rgba(223, 228, 236, 0.62);
  border-radius: 8px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.2s ease,
    transform 0.3s ease;
}


.news-archive-item:hover,
.news-archive-item:focus-visible {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 78px rgba(12, 16, 32, 0.1);
  transform: translateY(-1px);
}

.news-archive-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  color: #9aa3b2;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 820;
  line-height: 1.6;
}

.news-archive-meta span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  padding: 4px 13px;
  color: #0f1b2a;
  background: #dff3df;
  border-radius: 999px;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 820;
  line-height: 1.25;
  white-space: nowrap;
}

.news-archive-title {
  color: var(--ink);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 820;
  line-height: 1.75;
}

.news-archive-item:hover .news-archive-title,
.news-archive-item:focus-visible .news-archive-title {
  color: var(--blue);
}


.news-pagination {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(38px, 5vw, 70px);
  color: #9aa3b2;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 820;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.news-pagination span {
  color: var(--ink);
}

.news-pagination a {
  transition: color 0.2s ease;
}

.news-pagination a:hover,
.news-pagination a:focus-visible {
  color: var(--blue);
}

.news-detail-page {
  background: #f7f7f7;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
}

.news-detail-header > .brand,
.news-detail-header .desktop-nav {
  margin-top: 0;
}

.news-detail-header .brand {
  justify-self: start;
}

.news-detail-header .brand-logo {
  width: 122px;
}

.news-detail-header .desktop-nav {
  justify-self: end;
  justify-content: flex-end;
  margin-left: auto;
}

.news-detail-hero {
  width: min(calc(100% - 48px), 742px);
  margin: 0 auto;
  padding: 56px 0 32px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  color: #9aa3b2;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 820;
  line-height: 1.6;
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  padding: 4px 13px;
  color: #0f1b2a;
  background: #dff3df;
  border-radius: 999px;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 820;
  line-height: 1.25;
}

.news-detail-hero h1 {
  width: 100%;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 32px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.news-detail-hero h1 > span {
  display: block;
}

.news-detail-lead {
  width: 100%;
  margin: 1cm auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 500;
  line-height: 1.75;
}

.news-detail-cover {
  width: min(calc(100% - 48px), 742px);
  margin: 0 auto;
  padding: 0;
}

.news-detail-cover figure {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #f4f5f7;
  border-radius: 0;
  box-shadow: 0 28px 64px rgba(12, 16, 32, 0.08);
  aspect-ratio: 16 / 9;
}

.news-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-cover.is-natural-ratio figure {
  aspect-ratio: auto;
}

.news-detail-cover.is-natural-ratio img {
  height: auto;
  object-fit: contain;
}

.news-detail-body {
  --news-detail-section-gap: 36px;
  width: min(calc(100% - 48px), 742px);
  margin: 0 auto;
  padding: clamp(62px, 7.8vw, 107px) 0 96px;
}

.news-detail-section + .news-detail-section {
  margin-top: var(--news-detail-section-gap);
}

.news-detail-section h2 {
  margin: 0 0 40px;
  padding-left: 16px;
  border-left: 6px solid var(--blue);
  color: var(--blue);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: pre-wrap;
}

.news-detail-section p {
  margin: 0 0 40px;
  max-width: none;
  color: #4a5260;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: pre-wrap;
}

.news-detail-section p:last-child {
  margin-bottom: 0;
}

.news-detail-quote {
  margin: 24px 0;
  padding: 28px 30px;
  border: 1px solid #d7dce6;
  border-radius: 18px;
  color: #303744;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  background: #fff;
  white-space: pre-wrap;
}

.news-detail-section p a,
.news-detail-content-block p a,
.news-detail-company-list a,
.news-detail-company-site-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.news-detail-section p a:hover,
.news-detail-section p a:focus-visible,
.news-detail-content-block p a:hover,
.news-detail-content-block p a:focus-visible,
.news-detail-company-list a:hover,
.news-detail-company-list a:focus-visible,
.news-detail-company-site-list a:hover,
.news-detail-company-site-list a:focus-visible {
  color: var(--blue-deep);
}

.news-detail-spacer {
  height: calc(1.9em * var(--spacer-lines, 1));
}

.news-detail-subheading {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: pre-wrap;
}

.news-detail-subheading::before {
  content: "";
  width: 1.25em;
  height: 2px;
  background: currentColor;
  transform: translateY(-1px);
}

.news-detail-inline-figure {
  display: block;
  margin: 22px 0;
}

.news-detail-inline-figure.is-left img {
  margin-right: auto;
}

.news-detail-inline-figure.is-center img {
  margin-left: auto;
  margin-right: auto;
}

.news-detail-inline-figure.is-right img {
  margin-left: auto;
}

.news-detail-inline-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.news-detail-inline-figure.is-large img {
  width: 100%;
  max-width: 100%;
}

.news-detail-inline-figure.is-medium img {
  width: min(70%, 560px);
}

.news-detail-inline-figure.is-small img {
  width: min(42%, 320px);
}

.news-detail-inline-figure.is-logo img {
  width: min(25.2%, 192px);
}

.news-detail-inline-figure.is-original img {
  width: auto;
  max-width: 100%;
}

.news-detail-inline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0;
}

.news-detail-inline-row.is-left {
  justify-content: flex-start;
}

.news-detail-inline-row.is-center {
  justify-content: center;
}

.news-detail-inline-row.is-right {
  justify-content: flex-end;
}

.news-detail-inline-row .news-detail-inline-figure {
  margin: 0;
}

.news-detail-inline-figure figcaption {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

.news-detail-page-case-preview .news-detail-quote {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #4a5260;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  background: transparent;
}

.news-detail-table-scroll {
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;
}

.news-detail-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #303744;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.55;
}

.news-detail-table th,
.news-detail-table td {
  padding: 11px 12px;
  border: 1px solid #70747c;
  text-align: left;
  vertical-align: top;
}

.news-detail-table th {
  background: #858585;
  color: #fff;
  font-weight: 700;
}

.news-detail-table td:first-child {
  background: #858585;
  color: #fff;
  font-weight: 700;
}

.news-detail-divider {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid rgba(208, 216, 228, 0.9);
}

.news-detail-list-button,
.news-detail-primary-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 18px 54px;
  color: var(--white);
  background: #2369c6;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.news-detail-list-button {
  margin: 0 auto 64px;
}

.news-detail-list-button-label {
  display: block;
  text-align: center;
}

.news-detail-list-button:hover,
.news-detail-list-button:focus-visible,
.news-detail-primary-link:hover,
.news-detail-primary-link:focus-visible {
  background: #1f61b6;
  box-shadow: 0 16px 32px rgba(35, 105, 198, 0.2);
  transform: translateY(-1px);
}

.news-detail-list-button-arrow,
.news-detail-primary-link-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.news-detail-cta-panel,
.news-detail-service,
.news-detail-company {
  width: min(calc(100% - 48px), 742px);
  margin: 0 auto;
  padding: 0 0 40px;
}

.news-detail-company {
  width: min(calc(100% - 48px), 742px);
}

.news-detail-content-block {
  border-top: 1px solid rgba(223, 228, 236, 0.82);
  padding-top: 40px;
}

.news-detail-block-title {
  margin: 0 0 40px;
  padding-left: 16px;
  border-left: 6px solid var(--blue);
  color: var(--blue);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.news-detail-content-block p {
  margin: 0 0 40px;
  color: #4a5260;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.news-detail-content-block p:last-of-type:not(.news-detail-company-links-title) {
  margin-bottom: 0;
}

.news-detail-primary-link {
  margin: 32px auto 0;
}

.news-detail-service-copy {
  display: grid;
  gap: 0;
}

.news-detail-primary-link-label {
  display: block;
  text-align: center;
}

.news-detail-inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-detail-company-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.news-detail-company-list div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0 0 32px;
}

.news-detail-company-list dt,
.news-detail-company-list dd {
  margin: 0;
  color: #4a5260;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.news-detail-company-list dt {
  color: var(--ink);
  font-weight: 700;
}

.news-detail-company-links {
  margin-top: 32px;
}

.news-detail-content-block .news-detail-company-links-title {
  margin: 0 0 40px;
  padding-left: 16px;
  border-left: 6px solid var(--blue);
  color: var(--blue);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.news-detail-company-site-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-detail-company-site-list li {
  margin: 0 0 24px;
  color: #4a5260;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.news-detail-company-site-list a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer.news-detail-footer {
  padding: 56px 0 0;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(216, 226, 245, 0.9);
}


@media (min-width: 768px) and (max-width: 1279px) {


  .news-detail-hero,
  .news-detail-cover,
  .news-detail-body {
    width: min(calc(100% - 48px), 742px);
    padding-inline: 0;
  }


  .news-detail-hero h1 {
    font-size: 28px;
    letter-spacing: 0.02em;
  }

  .news-detail-section h2,
  .news-detail-block-title,
  .news-detail-content-block .news-detail-company-links-title {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.5;
  }

  .news-detail-subheading {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .news-detail-section p,
  .news-detail-content-block p,
  .news-detail-company-list dt,
  .news-detail-company-list dd,
  .news-detail-company-site-list li,
  .news-detail-list-button,
  .news-detail-primary-link {
    font-size: 16px;
  }

  .news-detail-section p,
  .news-detail-content-block p,
  .news-detail-company-list div {
    margin-bottom: 24px;
  }

  .news-detail-service,
  .news-detail-company {
    padding-bottom: 32px;
  }

  .news-detail-content-block {
    padding-top: 32px;
  }

  .news-detail-company-links {
    margin-top: 24px;
  }


  .news-detail-cover figure {
    width: 100%;
    border-radius: 12px;
  }

}

@media (max-width: 767px) {


  .news-detail-hero,
  .news-detail-cover,
  .news-detail-body {
    width: min(calc(100% - 48px), 742px);
    padding-inline: 0;
  }


  .news-detail-hero h1 {
    font-size: 28px;
    letter-spacing: 0.02em;
  }

  .news-detail-section h2,
  .news-detail-block-title,
  .news-detail-content-block .news-detail-company-links-title {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.5;
  }

  .news-detail-subheading {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .news-detail-section p,
  .news-detail-content-block p,
  .news-detail-company-list dt,
  .news-detail-company-list dd,
  .news-detail-company-site-list li,
  .news-detail-list-button,
  .news-detail-primary-link {
    font-size: 16px;
  }

  .news-detail-section p,
  .news-detail-content-block p,
  .news-detail-company-list div {
    margin-bottom: 24px;
  }

  .news-detail-service,
  .news-detail-company {
    padding-bottom: 32px;
  }

  .news-detail-content-block {
    padding-top: 32px;
  }

  .news-detail-company-links {
    margin-top: 24px;
  }


  .news-detail-cover figure {
    width: 100%;
    border-radius: 12px;
  }

}


@media (max-width: 767px) {

}


@media (min-width: 768px) and (max-width: 1279px) {
  .news-detail-cta-panel,
  .news-detail-service,
  .news-detail-company {
    width: min(calc(100% - 48px), 742px);
  }


  .news-detail-company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}

@media (max-width: 767px) {
  .news-detail-cta-panel,
  .news-detail-service,
  .news-detail-company {
    width: min(calc(100% - 48px), 742px);
  }


  .news-detail-company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}


.contact {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 3.6vw, 68px) clamp(23px, 3vw, 43px);
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: clamp(15px, 2vw, 31px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(51px, 5.63vw, 81px) clamp(24px, 3.8vw, 64px);
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto;
  left: 50%;
  z-index: 0;
  width: calc(100vw - 4cm);
  min-width: 100%;
  transform: translateX(-50%);
  background: transparent;
  border: 1px solid transparent;
  border-top-color: var(--line);
  border-bottom-color: var(--line);
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  color: #a8afb8;
}

.contact-card:hover::before {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 78px rgba(12, 16, 32, 0.1);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-en {
  color: inherit;
  font-size: 34px;
  line-height: 1;
  font-weight: 720;
}

.contact-message {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  font-size: 15px;
  font-weight: 800;
}

.contact-arrow {
  justify-self: end;
  width: 59px;
  font-size: 16px;
  transform: translateX(14px);
}

.site-footer {
  padding: clamp(27px, 3vw, 47px) 24px 42px;
  color: var(--ink);
  background: var(--white);
}

.footer-top,
.footer-links,
.footer-bottom {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-top {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-logo {
  width: 180px;
}

.footer-logo-katakana {
  width: 210px;
}

.footer-logo[src$="logo-a-assi-katakana.png"] {
  width: 210px;
}

.footer-top p {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(140px, 0.86fr) minmax(280px, 1.42fr) minmax(170px, 0.9fr);
  gap: clamp(56px, 7vw, 118px);
  margin-top: clamp(-52px, -4vw, -36px);
  padding: 0 0 clamp(46px, 6vw, 86px) clamp(280px, 28vw, 470px);
  border-bottom: 1px solid var(--line);
}

.footer-utility {
  padding-top: 0;
}

.footer-links h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 14px;
}

.footer-section-link {
  display: inline-flex;
}

.footer-links a {
  display: block;
  margin: 9px 0;
  color: #707985;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a.footer-section-link {
  display: inline-flex;
  margin: 0;
  color: var(--ink);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding-top: 28px;
  color: var(--ink);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

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

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(76px, 12vw, 150px) 24px clamp(46px, 7vw, 90px);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.35;
  font-weight: 800;
}

.page-hero p:not(.hero-kicker) {
  width: min(100%, 760px);
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.about-page {
  padding-top: var(--header);
  background: var(--white);
}

.about-hero {
  width: min(100%, calc(var(--max) + 2cm));
  margin: 0 auto;
  padding: clamp(54px, calc(13vw - 38px), 134px) 24px clamp(42px, 6vw, 82px);
}

.about-hero h1 {
  margin: 0 0 clamp(32px, 4.7vw, 64px);
  color: var(--ink);
  font-size: clamp(27px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
}

.about-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  column-gap: clamp(56px, 10vw, 84px);
}

.about-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  padding: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.about-tabs a + a {
  border-left: 0;
}

.about-tabs a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 0.28s ease;
}

.about-tabs a:hover,
.about-tabs a:focus-visible,
.about-tabs a.is-active {
  color: var(--ink);
}

.tab-arrow {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  color: var(--blue);
  font-size: 1em;
  line-height: 1;
}

.tab-arrow svg {
  position: absolute;
  inset: 0;
  display: block;
  overflow: visible;
  transform: rotate(-90deg);
}

.tab-arrow circle {
  fill: none;
  stroke-width: 3;
}

.tab-arrow-base {
  stroke: #d9dee8;
}

.tab-arrow-progress {
  stroke: var(--blue);
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.5s ease;
}

.tab-arrow::before,
.tab-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  background: currentColor;
  transform-origin: center;
}

.tab-arrow::before {
  width: 0.34em;
  height: 1.4px;
  transform: translate(-50%, -50%);
}

.tab-arrow::after {
  width: 0.16em;
  height: 0.16em;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  background: transparent;
}

.tab-arrow-right::after {
  transform: translate(-15%, -50%) rotate(45deg);
}

.tab-arrow-down::before {
  width: 1.4px;
  height: 0.34em;
}

.tab-arrow-down::after {
  transform: translate(-50%, -15%) rotate(135deg);
}

.about-tabs a:hover .tab-arrow-progress,
.about-tabs a:focus-visible .tab-arrow-progress {
  stroke-dashoffset: 0;
}

.about-tabs a:hover::before,
.about-tabs a:focus-visible::before,
.about-tabs a.is-active::before {
  transform: scaleX(1);
}

.about-content {
  width: min(100%, calc(var(--max) + 2cm));
  margin: 0 auto;
  padding: clamp(20px, calc(7.3vw - 38px), 65px) 24px clamp(106px, 13vw, 188px);
}

.about-content > .eyebrow {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.about-mission h2 {
  width: min(100%, 920px);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(28px, 4.4vw, 61px);
  line-height: 1.38;
  font-weight: 820;
  text-align: left;
  transform: translateX(4cm);
}

.about-mission p:not(.eyebrow) {
  width: min(100%, 920px);
  margin: calc(clamp(44px, 5vw, 72px) + 2cm) auto 2cm;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 2;
  font-weight: 800;
  text-align: left;
  transform: translateX(4cm);
}

.about-mission-copy {
  display: block;
}

.about-mission-copy--mobile {
  display: none;
}

.about-company-board {
  padding-bottom: clamp(70px, 8vw, 120px);
}

.about-section-title {
  margin: 0 0 clamp(54px, 6vw, 86px);
  padding-bottom: 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.4;
  font-weight: 820;
}

.board-member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.board-member-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.56fr) 1fr;
  gap: clamp(22px, 2.8vw, 40px);
  align-items: start;
  min-height: 0;
  padding: clamp(18px, 2.1vw, 30px);
  background: var(--white);
  border: 1px solid rgba(223, 228, 236, 0.86);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(12, 16, 32, 0.08);
  overflow: hidden;
}

.board-member-visual {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 2 / 3;
  align-self: start;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), rgba(244, 245, 247, 0.66) 74%),
    #f7f8fa;
  border: 0;
  overflow: hidden;
}

.board-member-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.board-member-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 4px;
}

.board-member-body {
  width: 90%;
  min-width: 0;
  align-self: center;
}

.board-member-role {
  margin: 0;
  color: #8a93a3;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 820;
  line-height: 1.35;
}

.board-member-body h3 {
  margin: 8px 0 0;
  color: #2d3340;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.35;
  font-weight: 820;
}

.board-member-reading {
  margin: 4px 0 clamp(23px, 2.67vw, 36px);
  color: #8a93a3;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 820;
  line-height: 1.35;
}

.board-member-body p:not(.board-member-role):not(.board-member-reading) {
  margin: 0;
  color: #2d3340;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.73;
}

.board-member-body p:not(.board-member-role):not(.board-member-reading) + p {
  margin-top: 18px;
}

.about-company-detail {
  padding-top: 0;
  padding-bottom: clamp(92px, 11vw, 166px);
}

.about-company-detail dl {
  display: grid;
  margin: 0;
  border-top: 0;
}

.about-company-detail dl div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.about-company-detail dt {
  color: var(--blue);
  font-weight: 800;
}

.about-company-detail dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.9;
  font-weight: 600;
}

.about-tab-band {
  margin: 0;
  padding: clamp(76px, 8vw, 126px) clamp(24px, 5vw, 82px);
  background: #f4f5f7;
  border-radius: 0;
}

.about-tab-band > div {
  width: min(100%, calc(var(--max) + 2cm));
  margin: 0 auto;
}

.about-tab-band .eyebrow {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 34px);
}

.about-tabs-compact {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.form-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px clamp(90px, 12vw, 150px);
}

.contact-page-hero {
  transform: translateY(-1cm);
  padding-bottom: clamp(58px, 6vw, 90px);
}

.contact-page-hero h1 {
  letter-spacing: 0;
  font-size: clamp(18px, 3.25vw, 45px);
}

.contact-page-hero p:not(.hero-kicker) {
  max-width: 760px;
  margin-top: 78px;
}

.contact-service-links {
  display: grid;
  gap: 13px;
  width: min(100%, 760px);
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-service-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.contact-service-links a::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: start;
}

.form-agenda {
  position: sticky;
  top: calc(var(--header) + 36px);
  align-self: start;
}

.form-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 94px;
  padding: 0 0 34px;
  color: #a6adbb;
  font-weight: 800;
  line-height: 1.55;
}

.form-steps li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 13px;
  width: 1px;
  height: calc(100% - 28px);
  background: #dfe3ea;
}

.form-steps li:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.form-steps li:last-child::before {
  display: none;
}

.form-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #9ba4b3;
  background: #f1f3f6;
  border: 1px solid #dfe3ea;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

.form-steps b {
  font-size: 17px;
  letter-spacing: 0;
  white-space: nowrap;
}

.form-steps .is-active {
  color: var(--ink);
}

.form-steps .is-active span {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.contact-form {
  background: var(--white);
}

.form-panel {
  position: relative;
  display: grid;
  gap: 34px;
  animation: formPanelFadeIn 0.5s ease both;
}

.form-required-top {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  color: #f00;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.field {
  display: grid;
  gap: 12px;
  align-items: start;
}

.field label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.field label span,
.privacy-check strong {
  color: #f00;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 16px 18px;
  background: #f3f3f5;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7adba;
  font-weight: 800;
}

.field select {
  appearance: auto;
}

.field textarea {
  min-height: 196px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(23, 105, 240, 0.16);
  border-color: var(--blue);
}

.field p {
  margin: -2px 0 0;
  color: #747d8c;
  font-size: 13px;
  font-weight: 700;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 2px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

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

.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-note,
.form-error {
  margin: -8px 0 0;
  color: #f00;
  font-size: 14px;
  font-weight: 700;
}

.form-error {
  color: #d23b3b;
  font-weight: 800;
}

.form-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 950px);
  min-height: 94px;
  border: 0;
  border-radius: 6px;
  padding: 0 32px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.form-button::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.form-button:disabled {
  color: var(--white);
  background: #b9bec8;
  cursor: default;
}

.form-button:disabled::after {
  border-color: rgba(255, 255, 255, 0.18);
  opacity: 0.72;
}

.form-button.secondary {
  color: var(--ink);
  background: #eef1f6;
}

.form-button.secondary::after {
  content: none;
}

.form-back-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.form-back-arrow {
  justify-self: auto;
  width: 40px;
  color: var(--blue);
  font-size: 14px;
}

.form-back-button:hover .business-arrow-progress,
.form-back-button:focus-visible .business-arrow-progress {
  stroke-dashoffset: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.is-hidden {
  display: none;
}

@keyframes formPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirm-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

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

.confirm-list div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-list dt {
  color: #747d8c;
  font-size: 14px;
  font-weight: 800;
}

.confirm-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  white-space: pre-wrap;
}

.complete-panel {
  gap: 26px;
  padding-top: 10px;
}

.completion-progress-panel {
  gap: 22px;
  min-height: 360px;
  align-content: center;
  padding-top: 10px;
}

.completion-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.completion-progress-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.45;
}

.completion-progress-panel p:not(.completion-eyebrow) {
  margin: 0;
  color: #596273;
  font-weight: 700;
  line-height: 1.9;
}

.completion-loader {
  position: relative;
  display: block;
  width: min(100%, 360px);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e7ef;
}

.completion-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: var(--blue);
  animation: completionLoader 1.4s ease-in-out infinite;
}

@keyframes completionLoader {
  0% {
    transform: translateX(-105%);
  }

  55% {
    transform: translateX(78%);
  }

  100% {
    transform: translateX(245%);
  }
}

.complete-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.45;
}

.complete-panel p,
.complete-panel li {
  color: #596273;
  font-weight: 700;
  line-height: 1.9;
}

.agent-complete-page {
  padding-top: var(--header);
  background: var(--white);
}

.agent-complete-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5cm 24px 5cm;
}

.agent-complete-panel {
  gap: 72px;
  width: min(100%, 980px);
  padding: 0;
}

.agent-complete-panel h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.agent-complete-panel p {
  margin: 0;
  font-size: 18px;
}

.agent-complete-actions {
  margin-top: calc(5cm - 72px);
}

.privacy-page {
  padding-top: var(--header);
  background: var(--white);
}

.privacy-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 130px) 24px clamp(44px, 5.8vw, 72px);
}

.privacy-hero h1 {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.24;
  font-weight: 840;
  letter-spacing: 0;
}

.privacy-content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 24px clamp(100px, 13vw, 170px);
}

.privacy-section {
  padding: clamp(42px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.privacy-section:first-child {
  border-top: 0;
}

.privacy-section h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(15px, 1.7vw, 24px);
  line-height: 1.42;
  font-weight: 830;
  letter-spacing: 0;
}

.privacy-section h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.55;
  font-weight: 820;
}

.privacy-section p,
.privacy-section li,
.privacy-section address {
  color: #2c3342;
  font-size: 15px;
  line-height: 1.72;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.privacy-section p {
  margin: 0;
}

.privacy-section p + p,
.privacy-section ul + p,
.privacy-section ol + p {
  margin-top: 12px;
}

.privacy-address-block {
  margin-top: 24px;
}

.privacy-section ul,
.privacy-section ol,
.privacy-alpha-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 1.4em;
}

.privacy-section ul {
  list-style: none;
}

.privacy-section li > ul {
  margin-top: 12px;
}

.privacy-alpha-list {
  list-style: none;
}

.privacy-symbol-list {
  list-style: none;
}

.privacy-meta {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.privacy-meta p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #2c3342;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 660;
}

.privacy-meta div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-meta dt,
.privacy-meta dd {
  margin: 0;
  color: #2c3342;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-meta dt {
  color: var(--muted);
  font-weight: 820;
}

.privacy-meta dd {
  font-weight: 660;
}


@media (min-width: 768px) and (max-width: 1279px) {
  .privacy-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }


  .privacy-content {
    padding-inline: 22px;
  }


  .hero {
    padding-inline: clamp(22px, 7vw, 64px);
  }


  .hero-visual {
    width: 68vw;
    min-width: 0;
    opacity: 0.72;
  }


  .statement-link {
    margin-top: 34px;
  }


  body:not(.site-shell) .site-header.is-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(18deg);
  }


  body:not(.site-shell) .site-header.is-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-18deg);
  }


  .business-card {
    grid-template-columns: 128px minmax(0, 1fr) 48px;
    min-height: auto;
    gap: 22px;
  }


  .business-name {
    font-size: clamp(22px, 4.8vw, 30px);
  }


  .news-item,
  .news-archive-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }


  .about-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 0;
  }


  .about-tabs a + a {
    border-left: 0;
  }


  .about-tabs a {
    min-width: 0;
    gap: 10px;
    font-size: 14px;
  }


  .about-content.about-mission {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }


  .about-mission h2,
  .about-mission p:not(.eyebrow) {
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    transform: none;
  }


  .about-mission h2 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.5;
  }


  .about-mission p:not(.eyebrow) {
    margin: clamp(34px, 7vw, 52px) auto 0;
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.9;
  }


  .about-mission-copy--desktop {
    display: none;
  }


  .about-mission-copy--mobile {
    display: block;
  }


  .contact-page-hero {
    width: min(100%, calc(var(--max) + 2cm));
    padding: clamp(54px, calc(13vw - 38px), 134px) 24px 62px;
    transform: none;
  }


  .contact-page-hero h1 {
    margin: 0 0 62px;
    color: var(--ink);
    font-size: clamp(27px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 820;
    letter-spacing: 0;
  }


  .contact-page-hero p:not(.hero-kicker) {
    width: min(100%, 760px);
    margin-top: 62px;
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.9;
    font-weight: 300;
  }


  .contact-service-links {
    width: min(100%, 760px);
    margin-top: 26px;
    gap: 10px;
  }


  .contact-service-links a {
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.65;
    font-weight: 700;
  }


  .about-company-detail dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }


  .about-company-detail dt,
  .about-company-detail dd {
    font-size: 12px;
  }


  .board-member-grid,
  .board-member-card {
    grid-template-columns: 1fr;
  }


  .board-member-grid {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }


  .board-member-card {
    width: 100%;
    min-height: 0;
  }


  .board-member-visual {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }


  .board-member-visual picture,
  .board-member-visual img {
    display: block;
    width: 100%;
    height: 100%;
  }


  .board-member-visual img {
    min-height: 0;
    object-fit: cover;
    object-position: center 14%;
  }


  .board-member-body p:not(.board-member-role):not(.board-member-reading) {
    font-weight: 600;
  }


  .form-layout,
  .confirm-list div {
    grid-template-columns: 1fr;
  }


  .form-agenda {
    position: static;
  }


  .form-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }


  .form-steps li {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 0;
  }


  .form-steps li::before {
    display: none;
  }


  .form-steps b {
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
  }


  .form-steps span {
    font-size: 10px;
  }


  .form-required-top {
    font-size: 11px;
  }


  .field label {
    font-size: 11px;
  }


  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    font-weight: 300;
  }


  .field input::placeholder,
  .field textarea::placeholder {
    font-weight: 300;
  }


  .privacy-check {
    font-size: 10px;
    line-height: 1.7;
  }


  .form-button {
    font-size: 12px;
  }


  .form-note {
    font-size: 11px;
  }


  .form-required-top {
    font-size: 11px;
  }


  .field {
    gap: 10px;
  }


  .field p {
    grid-column: 1;
    font-size: 12px;
  }


  .form-shell,
  .contact-page-hero {
    width: 100%;
    max-width: none;
  }


  .form-layout,
  .contact-form,
  .form-panel,
  .confirm-list,
  .confirm-list div {
    width: 100%;
    min-width: 0;
  }


  .form-layout {
    grid-template-columns: 1fr;
  }


  .form-panel {
    min-width: 0;
  }


  .field,
  .field input,
  .field select,
  .field textarea {
    min-width: 0;
  }


  .privacy-check {
    flex-wrap: wrap;
  }


  .privacy-check span,
  .privacy-check a,
  .form-note {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }


  .free-stock-section {
    padding: 0;
  }


  .free-stock-landscape {
    height: clamp(360px, 50vw, 560px);
    border-radius: 0;
  }


}

@media (max-width: 767px) {
  .privacy-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }


  .privacy-content {
    padding-inline: 22px;
  }


  .hero {
    padding-inline: clamp(22px, 7vw, 64px);
  }


  .hero-visual {
    width: 68vw;
    min-width: 0;
    opacity: 0.72;
  }


  .statement-link {
    margin-top: 34px;
  }


  body:not(.site-shell) .site-header.is-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(18deg);
  }


  body:not(.site-shell) .site-header.is-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-18deg);
  }


  .business-card {
    grid-template-columns: 128px minmax(0, 1fr) 48px;
    min-height: auto;
    gap: 22px;
  }


  .business-name {
    font-size: clamp(22px, 4.8vw, 30px);
  }


  .news-item,
  .news-archive-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }


  .about-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 0;
  }


  .about-tabs a + a {
    border-left: 0;
  }


  .about-tabs a {
    min-width: 0;
    gap: 10px;
    font-size: 14px;
  }


  .about-content.about-mission {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }


  .about-mission h2,
  .about-mission p:not(.eyebrow) {
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    transform: none;
  }


  .about-mission h2 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.5;
  }


  .about-mission p:not(.eyebrow) {
    margin: clamp(34px, 7vw, 52px) auto 0;
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.9;
  }


  .about-mission-copy--desktop {
    display: none;
  }


  .about-mission-copy--mobile {
    display: block;
  }


  .contact-page-hero {
    width: min(100%, calc(var(--max) + 2cm));
    padding: clamp(54px, calc(13vw - 38px), 134px) 24px 62px;
    transform: none;
  }


  .contact-page-hero h1 {
    margin: 0 0 62px;
    color: var(--ink);
    font-size: clamp(27px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 820;
    letter-spacing: 0;
  }


  .contact-page-hero p:not(.hero-kicker) {
    width: min(100%, 760px);
    margin-top: 62px;
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.9;
    font-weight: 300;
  }


  .contact-service-links {
    width: min(100%, 760px);
    margin-top: 26px;
    gap: 10px;
  }


  .contact-service-links a {
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.65;
    font-weight: 700;
  }


  .about-company-detail dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }


  .about-company-detail dt,
  .about-company-detail dd {
    font-size: 12px;
  }


  .board-member-grid,
  .board-member-card {
    grid-template-columns: 1fr;
  }


  .board-member-grid {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }


  .board-member-card {
    width: 100%;
    min-height: 0;
  }


  .board-member-visual {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }


  .board-member-visual picture,
  .board-member-visual img {
    display: block;
    width: 100%;
    height: 100%;
  }


  .board-member-visual img {
    min-height: 0;
    object-fit: cover;
    object-position: center 14%;
  }


  .board-member-body p:not(.board-member-role):not(.board-member-reading) {
    font-weight: 600;
  }


  .form-layout,
  .confirm-list div {
    grid-template-columns: 1fr;
  }


  .form-agenda {
    position: static;
  }


  .form-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }


  .form-steps li {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 0;
  }


  .form-steps li::before {
    display: none;
  }


  .form-steps b {
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
  }


  .form-steps span {
    font-size: 10px;
  }


  .form-required-top {
    font-size: 11px;
  }


  .field label {
    font-size: 11px;
  }


  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    font-weight: 300;
  }


  .field input::placeholder,
  .field textarea::placeholder {
    font-weight: 300;
  }


  .privacy-check {
    font-size: 10px;
    line-height: 1.7;
  }


  .form-button {
    font-size: 12px;
  }


  .form-note {
    font-size: 11px;
  }


  .form-required-top {
    font-size: 11px;
  }


  .field {
    gap: 10px;
  }


  .field p {
    grid-column: 1;
    font-size: 12px;
  }


  .form-shell,
  .contact-page-hero {
    width: 100%;
    max-width: none;
  }


  .form-layout,
  .contact-form,
  .form-panel,
  .confirm-list,
  .confirm-list div {
    width: 100%;
    min-width: 0;
  }


  .form-layout {
    grid-template-columns: 1fr;
  }


  .form-panel {
    min-width: 0;
  }


  .field,
  .field input,
  .field select,
  .field textarea {
    min-width: 0;
  }


  .privacy-check {
    flex-wrap: wrap;
  }


  .privacy-check span,
  .privacy-check a,
  .form-note {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }


  .free-stock-section {
    padding: 0;
  }


  .free-stock-landscape {
    height: clamp(360px, 50vw, 560px);
    border-radius: 0;
  }


}


@media (min-width: 768px) and (max-width: 1279px) {
  .board-member-card {
    grid-template-columns: minmax(150px, 0.56fr) 1fr;
    gap: clamp(18px, 2.8vw, 32px);
    align-items: start;
  }


  .board-member-visual {
    aspect-ratio: 2 / 3;
  }


  .board-member-body {
    width: 100%;
  }

}


@media (max-width: 767px) {
  .about-company-board .board-member-grid {
    width: calc(100vw - 10mm);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  .about-company-board .board-member-card {
    width: 100%;
  }

}


@media (max-width: 767px) {
  :root {
    --header: 68px;
  }


  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }


  body {
    width: 100%;
    max-width: 100%;
  }


  .about-company-board .board-member-grid {
    width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  .about-company-board .board-member-card {
    width: 100%;
  }


  .statement p {
    font-size: 16px;
    line-height: 1.8;
  }


  .free-stock-section {
    margin: 28px 0;
    padding: 0;
  }


  .free-stock-landscape {
    width: min(50vw, 320px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 0;
  }


  .free-stock-landscape::after {
    width: 78%;
    height: 48%;
  }


  .business-card {
    grid-template-columns: clamp(104px, 28vw, 124px) minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 14px 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
  }


  .business-copy {
    gap: 8px;
  }


  .business-name {
    font-size: 15px;
    line-height: 1.38;
  }


  .business-text {
    font-size: 10px;
    line-height: 1.72;
    max-width: calc(100% - 1cm);
  }


  .business-list .business-arrow {
    display: none;
  }


  .business-card:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }


  .business-card:hover .business-arrow-progress,
  .business-more:hover .business-arrow-progress,
  .contact-card:hover .business-arrow-progress {
    stroke-dashoffset: 126;
  }


  .footer-links {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 767px) {
  body.site-shell-standard {
    --header: 68px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }


  body.site-shell-company .about-company-board .board-member-grid {
    width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  body.site-shell-company .about-company-board .board-member-card {
    width: 100%;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) .footer-links {
    grid-template-columns: 1fr;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) .footer-logo {
    width: 60px;
    height: auto;
    max-width: none;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) .footer-logo-katakana,
  body.site-shell-standard .site-footer:not(.shared-footer) .footer-logo[src$="logo-a-assi-katakana.png"] {
    width: 70px;
  }

}


@media (min-width: 768px) and (max-width: 1279px) {
  .agent-case-grid,
  .agent-reasons-layout,
  .agent-step-list {
    grid-template-columns: 1fr;
  }


  .agent-case-card {
    min-height: 0;
  }


  .agent-illustration {
    min-height: 340px;
  }


  .agent-feature-list article {
    grid-template-columns: 50px 1fr;
  }


  .agent-step-list li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--agent-line);
  }


  .agent-step-list li:last-child {
    border-bottom: 0;
  }


}

@media (max-width: 767px) {
  .agent-case-grid,
  .agent-reasons-layout,
  .agent-step-list {
    grid-template-columns: 1fr;
  }


  .agent-case-card {
    min-height: 0;
  }


  .agent-illustration {
    min-height: 340px;
  }


  .agent-feature-list article {
    grid-template-columns: 50px 1fr;
  }


  .agent-step-list li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--agent-line);
  }


  .agent-step-list li:last-child {
    border-bottom: 0;
  }


}


/* 事業内容ページの事業一覧は、タブレット帯では1つの責務にそろえる。
   900px/901px で別レイアウトに切り替わらないよう、768px〜1279px で統一。
   旧補助CSSの指定を統合済み。 */


@media (max-width: 767px) {
  .agent-section,
  .agent-final-cta {
    padding-inline: 18px;
  }


  .agent-section h2,
  .agent-final-cta h2 {
    font-size: clamp(17px, 4.9vw, 23px);
  }


  .agent-case-card {
    padding: 24px 20px;
  }


  .agent-illustration {
    min-height: 280px;
    padding: 48px;
    border-radius: 18px;
  }


  .agent-illustration img {
    width: min(100%, 180px);
  }


  .agent-feature-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }


  .agent-step-list li {
    padding: 28px 4px;
  }


  .agent-cta-button {
    width: 100%;
  }


}


@media (max-width: 767px) {
  .statement {
    width: min(100%, 820px);
    margin: 0 auto;
    padding: 88px 22px 56px;
  }


  .statement-inner,
  .statement p {
    width: 100%;
    max-width: none;
  }


  .statement-inner {
    text-align: left;
  }


  .statement p {
    margin-right: 0;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }


  .statement p br {
    display: none;
  }


  .free-stock-section {
    width: 100%;
    margin: 28px 0 3cm;
  }


  .free-stock-landscape {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }


  .what {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: clamp(96px, 11vw, 170px) 4mm clamp(63px, 7.5vw, 112px);
    border-radius: 12px;
  }


  .what .section-heading,
  .what .business-layout {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }


  .what h2 {
    font-size: clamp(14px, 4.2vw, 20px);
    line-height: 1.62;
    padding-inline: 4mm;
  }


  .what h2 span {
    display: inline;
  }


  .what-logo {
    width: clamp(88px, 12vw, 120px);
    margin: 86px auto 102px;
    filter:
      drop-shadow(0 34px 32px rgba(23, 105, 240, 0.154))
      drop-shadow(0 18px 18px rgba(12, 16, 32, 0.098));
    transform: translateY(-8px);
  }


  .business-layout {
    margin-top: clamp(54px, 7vw, 86px);
  }


  .business-list {
    gap: 12px;
    margin-top: 1.53cm;
  }


  .business-card {
    grid-template-columns: clamp(96px, 27vw, 118px) minmax(0, 1fr);
    gap: 12px;
  }


  .business-name {
    font-size: clamp(13px, 3.15vw, 15px);
    white-space: normal;
    letter-spacing: -0.02em;
  }


  .news-archive-item:hover,
  .news-archive-item:focus-visible {
    color: inherit;
    background: transparent;
    border-color: transparent;
    border-bottom-color: rgba(223, 228, 236, 0.62);
    box-shadow: none;
    transform: none;
    outline: none;
  }


  .news-archive-item:hover .news-archive-title,
  .news-archive-item:focus-visible .news-archive-title {
    color: var(--ink);
  }


  body:not(.site-shell) .contact-card:hover {
    color: inherit;
  }


  body:not(.site-shell) .contact-card:hover::before {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }


  body:not(.site-shell) .footer-logo {
    width: 60px;
    height: auto;
    max-width: none;
  }


  body:not(.site-shell) .footer-logo-katakana,
  body:not(.site-shell) .footer-logo[src$="logo-a-assi-katakana.png"] {
    width: 70px;
  }


  body:not(.site-shell) .footer-top p {
    font-size: 13px;
  }


  body:not(.site-shell) .footer-links h2 {
    font-size: 12px;
  }


  body:not(.site-shell) .footer-links a {
    font-size: 11px;
  }


  body:not(.site-shell) .footer-bottom {
    font-size: 11px;
  }


}


@media (max-width: 767px) {
  .about-company-board .board-member-grid {
    width: calc(100vw - 10mm);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  .about-company-board .board-member-card {
    width: 100%;
  }

}


/* ===== AI Studio / Agent LP タブレット (768px〜1279px) ===== */


/* ===== AI Studio / Agent LP モバイル (767px以下) ===== */


/* ===== Shared shell responsive foundation ===== */
body.site-shell {
  --shell-desktop-baseline: 1440px;
  --shell-tablet-baseline: 768px;
  --shell-mobile-baseline: 425px;
}

html:has(body.site-shell-home),
body.site-shell-home {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.site-shell .site-footer.shared-footer .footer-main,
body.site-shell .site-footer.shared-footer .footer-bottom {
  box-sizing: border-box;
}


/* ===== AI Studio LP PC版専用 (1280px以上) ===== */


/* =================================================================
   レスポンシブ スタイル まとめ
   ─────────────────────────────────────────────────────────────────
   ブレークポイント定義:
     モバイル            〜 767px
     タブレット  768px 〜 1279px
     PC         1280px 〜
================================================================= */

/* ----- タブレット・モバイル同一指定（3区分に展開） ----- */
@media (min-width: 768px) and (max-width: 1279px) {

  .about-mission h2,
  .about-mission p:not(.eyebrow) {
    transform: none;
  }


  .board-member-grid {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }


  .board-member-card {
    width: 100%;
  }


  .what-logo {
    margin: clamp(114px, calc(3.2vw + 91px), 135px) auto 136px;
  }



}

@media (max-width: 767px) {

  .about-mission h2,
  .about-mission p:not(.eyebrow) {
    transform: none;
  }


  .board-member-grid {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }


  .board-member-card {
    width: 100%;
  }


  .what-logo {
    margin: clamp(114px, calc(3.2vw + 91px), 135px) auto 136px;
  }



}


/* ----- モバイル (〜 767px) ----- */
@media (max-width: 767px) {


  body.site-shell-home {
    --header: 68px;
  }


  body.site-shell-home .statement {
    width: min(100%, 820px);
    margin: 0 auto;
    padding: 88px 22px 56px;
  }


  body.site-shell-home .statement-inner,
  body.site-shell-home .statement p {
    width: 80%;
    max-width: 80%;
  }


  body.site-shell-home .statement-inner,
  body.site-shell-home .statement p {
    text-align: left;
  }


  body.site-shell-home .statement p {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: none;
    font-size: 16px;
    line-height: 1.8;
  }


  body.site-shell-home .statement-inner {
    margin-right: auto;
    margin-left: auto;
  }


  body.site-shell-home .statement p br {
    display: none;
  }


  body.site-shell-home .free-stock-section {
    width: 100%;
    margin: 28px 0 3cm;
    padding: 0;
  }


  body.site-shell-home .free-stock-landscape {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 0;
  }


  body.site-shell-home .what {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: clamp(96px, 11vw, 170px) 4mm clamp(63px, 7.5vw, 112px);
    border-radius: 12px;
  }


  body.site-shell-home .what .section-heading,
  body.site-shell-home .what .business-layout {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }


  body.site-shell-home .what h2 {
    font-size: clamp(14px, 4.2vw, 20px);
    line-height: 1.62;
    padding-inline: 4mm;
  }


  body.site-shell-home .what h2 span {
    display: inline;
  }


  body.site-shell-home .what-logo {
    width: clamp(88px, 12vw, 120px);
    margin: 86px auto 102px;
  }


  body.site-shell-home .business-layout {
    margin-top: clamp(54px, 7vw, 86px);
  }


  body.site-shell-home .business-list {
    gap: 12px;
    margin-top: 1.53cm;
  }


  body.site-shell-home .business-card {
    grid-template-columns: clamp(96px, 27vw, 118px) minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
  }


  body.site-shell-home .business-copy {
    gap: 8px;
  }


  body.site-shell-home .business-name {
    font-size: clamp(13px, 3.15vw, 15px);
    line-height: 1.38;
    letter-spacing: 0;
    white-space: normal;
  }


  body.site-shell-home .business-text {
    max-width: none;
    font-size: 10px;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }


  body.site-shell-home .business-list .business-arrow {
    display: none;
  }


  body.site-shell-home .news-item,
  body.site-shell-home .news-archive-item {
    grid-template-columns: 1fr;
  }


  body.site-shell-company .about-company-detail dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }


  body.site-shell-company .about-company-detail dt,
  body.site-shell-company .about-company-detail dd {
    font-size: 12px;
  }


  body.site-shell-company .about-company-board .board-member-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }


  body.site-shell-company .about-company-board .board-member-card {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.8vw, 32px);
    align-items: start;
  }


  body.site-shell-company .about-company-board .board-member-visual {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }


  body.site-shell-company .about-company-board .board-member-visual picture,
  body.site-shell-company .about-company-board .board-member-visual img {
    display: block;
    width: 100%;
    height: 100%;
  }


  body.site-shell-company .about-company-board .board-member-visual img {
    min-height: 0;
    object-fit: cover;
    object-position: center 14%;
  }


  body.site-shell-company .about-company-board .board-member-body {
    width: 90%;
  }


  body.site-shell-company .about-company-board .board-member-grid {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }


  body.site-shell-home .hero {
    display: flex;
    flex-direction: row;
    min-height: 100svh;
    padding: calc(var(--header) + 82px) 22px 42px;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
  }


  body.site-shell-home .hero h1 {
    letter-spacing: 0;
    font-size: clamp(26px, 7.3vw, 38px);
    line-height: 1.4;
  }


  body.site-shell-home .hero-visual {
    position: absolute;
    inset: calc(var(--header) - 20px) auto auto calc(-8.96vw);
    order: initial;
    width: 112.1vw;
    min-width: 0;
    opacity: 0.86;
  }


  body.site-shell-home .hero-motion {
    height: calc(58svh + 88px);
    aspect-ratio: auto;
  }


  body.site-shell-home .hero-copy {
    width: 80%;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }


  /* Agent：セクション */
  .agent-section,
  .agent-final-cta {
    padding-inline: 18px;
  }


  .agent-case-grid,
  .agent-reasons-layout {
    grid-template-columns: 1fr;
  }


  .agent-feature-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }


  body.site-shell {
    --header: 68px;
  }


  body.site-shell .site-header {
    grid-template-columns: 1fr auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: none;
    border-bottom: 0;
  }


  body.site-shell .site-header.is-scrolled,
  body.site-shell .site-header.is-open {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    border-bottom: 0;
  }


  body.site-shell .site-header.is-open {
    background: var(--white);
  }


  body.site-shell .desktop-nav,
  body.site-shell .header-compact-button {
    display: none;
  }


  body.site-shell .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: 16px;
    font-weight: 550;
    line-height: 1;
  }


  body.site-shell .menu-button span {
    display: none;
  }


  body.site-shell .menu-button::before {
    content: "Menu";
  }


  body.site-shell .site-header.is-open .menu-button {
    width: 18px;
    height: 18px;
    border: 1px solid #d7dce5;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.98);
    font-size: 11px;
    font-weight: 500;
  }


  body.site-shell .site-header.is-open .menu-button::before {
    content: "×";
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
  }


  body.site-shell .site-menu {
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    --menu-drag-offset: 0px;
    --menu-drag-expand: 0px;
    transform: translateY(calc(-8px + var(--menu-drag-offset)));
    transform-origin: top center;
    background: var(--white);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border-bottom: 0;
    box-shadow: 0 18px 46px rgba(12, 16, 32, 0.08);
    transition:
      height 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: height, transform;
  }


  body.site-shell .site-menu.is-open {
    height: var(--site-menu-open-height, calc(100svh - var(--header)));
    min-height: 0;
    max-height: calc((100svh - var(--header)) * 1.2);
    pointer-events: auto;
    transform: translateY(var(--menu-drag-offset));
  }


  body.site-shell .site-menu.is-dragging {
    transition: none;
  }


  body.site-shell .site-menu-inner {
    flex: 1 1 auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: calc(20px + 0.5mm) 18px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    transform: translateY(-8px) scaleY(0.98);
    transform-origin: top center;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
  }


  body.site-shell .site-menu.is-open .site-menu-inner {
    transform: translateY(0) scaleY(1);
  }


  body.site-shell .site-menu-group {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }


  body.site-shell .site-menu-group-label {
    padding: 19px 0 12px;
    border-top: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
  }


  body.site-shell .site-menu-subitems {
    display: grid;
    padding-bottom: 0;
  }


  body.site-shell .site-menu .site-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 46px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
  }


  body.site-shell .site-menu .site-menu-link.site-menu-link-child {
    min-height: 42px;
    padding-left: 10px;
    border-top: 0;
    font-size: 12px;
  }


  body.site-shell .site-menu-group + .site-menu-link {
    border-top: 0;
  }


  body.site-shell .site-menu .site-menu-link:last-of-type {
    border-bottom: 1px solid var(--line);
  }


  body.site-shell .site-menu-label {
    flex: 1 1 auto;
    min-width: 0;
  }


  body.site-shell .site-menu-arrow {
    display: inline-grid;
    position: relative;
    place-items: center;
    flex: none;
    width: 14px;
    height: 14px;
    color: var(--blue);
  }


  body.site-shell .site-menu-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
  }


  body.site-shell .site-menu-arrow circle {
    fill: none;
    stroke: #d7dce5;
    stroke-width: 1.6;
  }


  body.site-shell .site-menu-arrow span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 8px;
    line-height: 1;
    font-weight: 900;
    -webkit-text-stroke: 0.35px currentColor;
    text-shadow:
      0.28px 0 0 currentColor,
      -0.28px 0 0 currentColor,
      0 0.22px 0 currentColor,
      0 -0.22px 0 currentColor;
    transform: translateY(-1px) scaleX(0.75) scaleY(1.08);
  }


  body.site-shell .site-menu-grip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 2cm;
    padding: 0 0 4px;
    border: 0;
    background: transparent;
    cursor: grab;
    touch-action: none;
  }


  body.site-shell .site-menu-grip:active {
    cursor: grabbing;
  }


  body.site-shell .site-menu-grip::before {
    content: "";
    width: 1.5cm;
    height: 3px;
    border-radius: 999px;
    background: #d4d8e0;
  }


  body.site-shell .site-header .brand-logo-katakana,
  body.site-shell .site-header .brand-logo[src$="logo-a-assi-katakana.png"] {
    width: 96px;
  }


  body.site-shell .site-header .brand {
    align-self: center;
    margin-top: 0;
    line-height: 0;
  }


  body.site-shell .contact,
  body.site-shell .site-footer.shared-footer {
    width: 100%;
  }


  body.site-shell.has-shared-contact .contact-card {
    width: min(calc(100% - 36px), var(--shell-mobile-baseline));
    margin-inline: auto;
    grid-template-columns: auto 1fr auto auto;
    column-gap: 0.6cm;
    row-gap: 0;
    align-items: center;
  }


  body.site-shell.has-shared-contact .contact-message {
    display: none;
  }


  body.site-shell.has-shared-contact .contact-en {
    font-size: 18px;
    font-weight: 560;
    white-space: nowrap;
  }


  body.site-shell.has-shared-contact .contact-button {
    grid-column: 3;
    justify-self: start;
    font-size: 12px;
    white-space: nowrap;
  }


  body.site-shell.has-shared-contact .contact-arrow {
    grid-column: 4;
    justify-self: start;
    transform: none;
  }


  body.site-shell.has-shared-contact .contact-card::before {
    inset: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    transform: none;
  }


  body.site-shell .site-footer.shared-footer .footer-main,
  body.site-shell .site-footer.shared-footer .footer-bottom {
    width: min(calc(100% - 36px), var(--shell-mobile-baseline));
    margin: 0 auto;
  }


  body.site-shell .site-footer.shared-footer .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
    padding: 0;
    border-bottom: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-logo {
    width: 96px;
    height: auto;
    max-width: none;
  }


  body.site-shell .site-footer.shared-footer .footer-logo-katakana,
  body.site-shell .site-footer.shared-footer .footer-logo[src$="logo-a-assi-katakana.png"] {
    width: 112px;
  }


}


@media (max-width: 767px) {
  body.site-shell.has-shared-contact .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    row-gap: 12px;
    padding-inline: 14px;
  }


  body.site-shell.has-shared-contact .contact-en {
    grid-column: 1 / -1;
    white-space: normal;
  }


  body.site-shell.has-shared-contact .contact-button {
    grid-column: 1;
    white-space: normal;
  }


  body.site-shell.has-shared-contact .contact-arrow {
    grid-column: 2;
    width: 40px;
    font-size: 14px;
  }

}


/* ----- タブレット・PC同一指定（3区分に展開） ----- */
@media (min-width: 768px) and (max-width: 1279px) {

  :root {
    --page-side-margin: 2cm;
  }


  .about-tab-band {
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero,
  .about-content,
  .about-tab-band > div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }


  .news-archive-item {
    margin-left: 0;
    margin-right: 0;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) {
    padding-left: 0;
    padding-right: 0;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) .footer-links {
    padding-left: 0;
  }


  body.site-shell-home .hero {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 55%);
    justify-content: space-between;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--header) + var(--home-hero-top-offset)) 0 var(--home-hero-bottom-padding);
    overflow: visible;
  }


  body.site-shell-home .hero-visual {
    position: relative;
    inset: auto;
    width: 112.1076%;
    margin-left: -8%;
    justify-self: stretch;
    align-self: center;
    opacity: 1;
  }


  body.site-shell-home .hero-motion {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 720;
  }


  body.site-shell-home .hero-copy {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: flex-end;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    text-align: left;
  }


  body.site-shell-home .hero h1 {
    width: fit-content;
    max-width: 90%;
    font-size: var(--home-hero-title-size);
    line-height: 1.36;
  }


  body.site-shell.has-shared-contact .contact-card {
    width: min(calc(100% - var(--shared-shell-inline-gap)), var(--shared-shell-max-width));
    margin-inline: auto;
    grid-template-columns: auto auto 1fr auto auto;
    column-gap: 1cm;
    row-gap: 0;
    align-items: center;
  }


  body.site-shell.has-shared-contact .contact-en,
  body.site-shell.has-shared-contact .contact-message,
  body.site-shell.has-shared-contact .contact-button,
  body.site-shell.has-shared-contact .contact-arrow {
    white-space: nowrap;
  }


  body.site-shell.has-shared-contact .contact-message {
    grid-column: 2;
  }


  body.site-shell.has-shared-contact .contact-button {
    grid-column: 4;
    justify-self: start;
  }


  body.site-shell.has-shared-contact .contact-arrow {
    grid-column: 5;
    justify-self: start;
    transform: none;
  }


  body.site-shell .site-footer.shared-footer {
    padding-inline: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-main,
  body.site-shell .site-footer.shared-footer .footer-bottom {
    width: min(calc(100% - var(--shared-shell-inline-gap)), var(--shared-shell-max-width));
    margin: 0 auto;
  }


  body.site-shell-home,
  .news-detail-page {
    --home-news-side-padding: 1.5cm;
  }


  body.site-shell-home .news-shared-latest,
  .news-detail-page .news-shared-latest {
    padding-right: var(--home-news-side-padding);
    padding-left: var(--home-news-side-padding);
  }


  body.site-shell-home .news-shared-latest .news-title,
  .news-detail-page .news-shared-latest .news-title {
    display: block;
    max-width: calc(100% - var(--home-news-side-padding));
  }


  .about-company-board .board-member-grid {
    width: min(calc(100vw - 48px), var(--max));
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  .about-company-board .board-member-card {
    align-items: center;
  }


  .about-company-board .board-member-visual,
  .about-company-board .board-member-body {
    align-self: center;
  }


}

@media (min-width: 1280px) {

  :root {
    --page-side-margin: 2cm;
  }


  .about-tab-band {
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero,
  .about-content,
  .about-tab-band > div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .about-company-detail dl {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  body.site-shell-company .about-hero,
  body.site-shell-company .about-content,
  body.site-shell-company .about-tab-band > div {
    width: 80%;
  }

  body.site-shell-company .about-company-detail dl {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  body.site-shell-company .about-company-detail dl div {
    grid-template-columns: minmax(180px, 32%) minmax(0, 1fr);
    column-gap: clamp(40px, 5vw, 96px);
  }


  .news-archive-item {
    margin-left: 0;
    margin-right: 0;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) {
    padding-left: 0;
    padding-right: 0;
  }


  body.site-shell-standard .site-footer:not(.shared-footer) .footer-links {
    padding-left: 0;
  }


  body.site-shell-home .hero {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 55%);
    justify-content: space-between;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--header) + var(--home-hero-top-offset)) 0 var(--home-hero-bottom-padding);
    overflow: visible;
  }


  body.site-shell-home .hero-visual {
    position: relative;
    inset: auto;
    width: 112.1076%;
    margin-left: -8%;
    justify-self: stretch;
    align-self: center;
    opacity: 1;
  }


  body.site-shell-home .hero-motion {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 720;
  }


  body.site-shell-home .hero-copy {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: flex-end;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    text-align: left;
  }


  body.site-shell-home .hero h1 {
    width: fit-content;
    max-width: 90%;
    font-size: var(--home-hero-title-size);
    line-height: 1.36;
  }


  body.site-shell.has-shared-contact .contact-card {
    width: min(calc(100% - var(--shared-shell-inline-gap)), var(--shared-shell-max-width));
    margin-inline: auto;
    grid-template-columns: auto auto 1fr auto auto;
    column-gap: 1cm;
    row-gap: 0;
    align-items: center;
  }


  body.site-shell.has-shared-contact .contact-en,
  body.site-shell.has-shared-contact .contact-message,
  body.site-shell.has-shared-contact .contact-button,
  body.site-shell.has-shared-contact .contact-arrow {
    white-space: nowrap;
  }


  body.site-shell.has-shared-contact .contact-message {
    grid-column: 2;
  }


  body.site-shell.has-shared-contact .contact-button {
    grid-column: 4;
    justify-self: start;
  }


  body.site-shell.has-shared-contact .contact-arrow {
    grid-column: 5;
    justify-self: start;
    transform: none;
  }


  body.site-shell .site-footer.shared-footer {
    padding-inline: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-main,
  body.site-shell .site-footer.shared-footer .footer-bottom {
    width: min(calc(100% - var(--shared-shell-inline-gap)), var(--shared-shell-max-width));
    margin: 0 auto;
  }


  body.site-shell-home,
  .news-detail-page {
    --home-news-side-padding: 1.5cm;
  }


  body.site-shell-home .news-shared-latest,
  .news-detail-page .news-shared-latest {
    padding-right: var(--home-news-side-padding);
    padding-left: var(--home-news-side-padding);
  }


  body.site-shell-home .news-shared-latest .news-title,
  .news-detail-page .news-shared-latest .news-title {
    display: block;
    max-width: calc(100% - var(--home-news-side-padding));
  }


  .about-company-board .board-member-grid {
    width: min(calc(100vw - 48px), var(--max));
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }


  .about-company-board .board-member-card {
    align-items: center;
  }


  .about-company-board .board-member-visual,
  .about-company-board .board-member-body {
    align-self: center;
  }


}


/* ----- タブレット (768 〜 1279px) ----- */
@media (min-width: 768px) and (max-width: 1279px) {

  .about-content.about-mission {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }


  .about-mission h2,
  .about-mission p:not(.eyebrow) {
    width: 50%;
    max-width: 50%;
    margin-left: 25%;
    margin-right: 25%;
    text-align: left;
  }


  body.site-shell .nav-group:hover .nav-panel,
  body.site-shell .nav-group:focus-within .nav-panel {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }


  body.site-shell .nav-group.is-open .nav-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }


  body.site-shell .site-header.has-desktop-nav-open {
    background: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(223, 228, 236, 0.95);
  }


  body.site-shell .nav-panel {
    top: var(--header);
    background: #ffffff;
    border-top: 1px solid rgba(223, 228, 236, 0.95);
  }


  body.has-desktop-nav-open main,
  body.has-desktop-nav-open footer {
    filter: blur(24px) saturate(0.72);
  }


  .news-index-page .news-archive-list {
    display: grid;
    grid-auto-flow: row;
  }


  .news-index-page .news-archive-list > .news-archive-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-height: 0;
    margin-inline: 0;
    padding: 28px 0;
  }


  .news-index-page .news-archive-list > .news-archive-item .news-archive-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    width: 100%;
    order: 1;
  }


  .news-index-page .news-archive-list > .news-archive-item .news-archive-title {
    display: block;
    width: 100%;
    order: 2;
  }


  .board-member-grid {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }


  .board-member-card {
    width: 100%;
    grid-template-columns: minmax(210px, 0.56fr) 1fr;
    gap: clamp(22px, 2.8vw, 40px);
    align-items: start;
  }


  .board-member-visual {
    aspect-ratio: 2 / 3;
  }


  .board-member-body {
    width: 90%;
  }


  .about-company-detail dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }


  .about-company-detail dt,
  .about-company-detail dd {
    font-size: 12px;
  }


  .about-company-board .board-member-grid {
    width: min(586px, calc(100vw - 48px));
  }


  body.site-shell-standard {
    --header: 68px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }


  body.site-shell-home {
    --home-hero-top-offset: 35px;
    --home-hero-bottom-padding: 56px;
    --home-hero-title-size: clamp(30px, 4.2vw, 44px);
  }


  body.site-shell {
    --shared-shell-inline-gap: 48px;
    --shared-shell-max-width: var(--shell-tablet-baseline);
  }


  body.site-shell-home .statement {
    padding-top: 59px;
  }


  body.site-shell-home .statement-inner,
  body.site-shell-home .statement p {
    width: min(calc(100% - 48px), 820px);
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }


  body.site-shell-home .statement p {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }


  body.site-shell-home .free-stock-section {
    padding: 0;
  }


  body.site-shell-home .free-stock-landscape {
    height: clamp(360px, 50vw, 560px);
    border-radius: 0;
  }


  body.site-shell-home .business-card {
    grid-template-columns: 128px minmax(0, 1fr) 48px;
    min-height: auto;
    gap: 22px;
    padding: 16px;
  }


  body.site-shell-home .business-name {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0;
    white-space: nowrap;
  }


  body.site-shell-home .business-text {
    font-size: 11px;
    line-height: 1.8;
  }


  body.site-shell-home .news-item,
  body.site-shell-home .news-archive-item {
    grid-template-columns: 1fr;
  }


  body.site-shell-home .news-title {
    display: block;
    max-width: calc(100% - 1.5cm);
  }


  body.site-shell .site-header {
    grid-template-columns: auto 1fr;
    height: var(--header);
    padding-inline: clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: none;
    border-bottom: 0;
  }


  body.site-shell .site-header.is-scrolled,
  body.site-shell .site-header.is-open {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    border-bottom: 0;
  }


  body.site-shell .site-header.is-open {
    background: var(--white);
  }


  body.site-shell .desktop-nav {
    display: flex;
  }


  body.site-shell .site-header .brand-logo-katakana,
  body.site-shell .site-header .brand-logo[src$="logo-a-assi-katakana.png"] {
    width: 110px;
  }


  body.site-shell .menu-button {
    display: none;
  }


  body.site-shell .header-compact-button {
    display: inline-flex;
  }


  body.site-shell .site-menu {
    display: none;
  }


  body.site-shell.has-shared-contact .contact-message {
    display: inline-block;
  }


  body.site-shell .site-footer.shared-footer .footer-main {
    display: block;
  }


  body.site-shell .site-footer.shared-footer .footer-top {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-brand {
    display: inline-flex;
  }


  body.site-shell .site-footer.shared-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 0;
    align-items: start;
  }


  body.site-shell .site-footer.shared-footer .footer-links > div {
    min-width: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-links h2,
  body.site-shell .site-footer.shared-footer .footer-links a,
  body.site-shell .site-footer.shared-footer .footer-section-link {
    white-space: nowrap;
  }


  body.site-shell .site-footer.shared-footer .footer-bottom {
    padding-top: 56px;
  }


}


/* ----- PC (1280px 〜) ----- */
@media (min-width: 1280px) {

  .news-archive-item {
    display: grid;
    grid-template-columns: minmax(390px, 0.36fr) 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
    min-height: clamp(120px, 12vw, 174px);
    margin-inline: clamp(-18px, -1.7vw, -8px);
    padding: clamp(42px, 4.8vw, 69px) clamp(18px, 1.7vw, 30px);
  }


  body.site-shell-home {
    --home-hero-top-offset: 52px;
    --home-hero-bottom-padding: 96px;
    --home-hero-title-size: clamp(38px, 3.8vw, 60px);
  }


  body.site-shell {
    --shared-shell-inline-gap: 56px;
    --shared-shell-max-width: var(--shell-desktop-baseline);
  }


  body.site-shell .nav-group.is-open .nav-panel {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }


  body.site-shell .nav-group:hover .nav-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }


  body.site-shell .nav-panel {
    top: var(--header);
    left: 0;
    right: 0;
    width: auto;
    background: #ffffff;
    border-top: 1px solid rgba(223, 228, 236, 0.95);
  }


  body:has(.nav-group:hover) main,
  body:has(.nav-group:hover) footer {
    filter: blur(24px) saturate(0.72);
  }


  body.site-shell .site-header {
    grid-template-columns: auto 1fr;
    height: var(--header);
    padding-inline: clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }


  body.site-shell .desktop-nav {
    display: flex;
  }


  body.site-shell .menu-button {
    display: none;
  }


  body.site-shell .site-footer.shared-footer .footer-main {
    display: grid;
    grid-template-columns: max-content minmax(max-content, 0.86fr) minmax(max-content, 1.42fr) minmax(max-content, 0.9fr);
    column-gap: clamp(40px, 5vw, 88px);
    align-items: start;
    padding-bottom: clamp(46px, 6vw, 86px);
  }


  body.site-shell .site-footer.shared-footer .footer-top {
    grid-column: 1;
    width: auto;
    margin: 0;
    padding: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-brand {
    display: inline-flex;
  }


  body.site-shell .site-footer.shared-footer .footer-logo,
  body.site-shell .site-footer.shared-footer .footer-logo-katakana,
  body.site-shell .site-footer.shared-footer .footer-logo[src$="logo-a-assi-katakana.png"] {
    width: 210px;
  }


  body.site-shell .site-footer.shared-footer .footer-links {
    grid-column: 2 / 5;
    display: grid;
    grid-template-columns: minmax(max-content, 0.86fr) minmax(max-content, 1.42fr) minmax(max-content, 0.9fr);
    gap: clamp(40px, 5vw, 88px);
    width: auto;
    margin: 0;
    padding: 0;
    border-bottom: 0;
    align-items: start;
  }


  body.site-shell .site-footer.shared-footer .footer-links > div {
    min-width: 0;
  }


  body.site-shell .site-footer.shared-footer .footer-links h2,
  body.site-shell .site-footer.shared-footer .footer-links a,
  body.site-shell .site-footer.shared-footer .footer-section-link {
    white-space: nowrap;
  }


  body.site-shell .site-footer.shared-footer .footer-bottom {
    padding-top: 56px;
  }


}

/* What We Do リード文（会社定義・SEO/LLMEO用） */
.what-lead {
  max-width: 760px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: #4b5563;
}

/* ニュースのパンくず（現在地表示・SEO/UX用） */
.news-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; max-width: 960px; margin: 1.5rem auto .25rem; padding: 0 1.25rem; font-size: .8rem; line-height: 1.6; color: #6b7280; box-sizing: border-box; }
.news-breadcrumb a { color: #6b7280; text-decoration: none; }
.news-breadcrumb a:hover { text-decoration: underline; }
.news-breadcrumb-sep { color: #cbd5e1; }
.news-breadcrumb-current { color: #9ca3af; max-width: 24em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
