:root {
  --blue-600: #0D1CC1;
  --blue-700: #0A16A0;
  --blue-050: #EEF1FE;
  --navy-900: #03144E;
  --navy-800: #001A65;
  --white: #FFFFFF;
  --bg: #FEFEFE;
  --bg-tint: #F5F8FD;
  --bg-hero: #F7F8FA;
  --hero-far: #BEC6E5;
  --ink: #0B1020;
  --ink-body: #454B5E;
  --ink-nav: #2D3548;
  --ink-mute: #7A8194;
  --line: #DDE3EF;
  --line-soft: #EDF1F8;
  --ind-const: #2563EB;
  --ind-shigyo: #16A34A;
  --ind-school: #3730D8;
  --ind-ec: #0D9488;
  --ind-shop: #EA7317;
  --ind-btob: #7C3AED;
  --stat-blue: #2447CB;
  --stat-green: #16A34A;
  --stat-orange: #EA7317;
  --before: #8A93A6;
  --after: #0D1CC1;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --section-y: clamp(64px, 6.5vw, 104px);
  --shadow-card: 0 6px 24px rgba(11, 16, 32, 0.07);
  --shadow-card-hover: 0 10px 34px rgba(11, 16, 32, 0.11);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

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

h1,
h2 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.section-lead,
.section-caption {
  color: var(--ink-body);
  font-size: 14px;
}

.note {
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.7;
}

.btn,
.link-button,
.carousel-control,
.menu-toggle,
.play-button,
.video-strip,
.footer-links button,
.social-link {
  -webkit-tap-highlight-color: transparent;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, transform 90ms ease;
}

.btn:active,
.link-button:active,
.carousel-control:active,
.menu-toggle:active,
.play-button:active,
.video-strip:active,
.footer-links button:active,
.social-link:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-outline {
  background: var(--white);
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.btn-outline:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.btn-white {
  background: var(--white);
  color: var(--blue-600);
}

.btn-white:hover {
  color: var(--blue-700);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 42px;
  padding-inline: 20px;
}

.btn:focus-visible,
.link-button:focus-visible,
.carousel-control:focus-visible,
.menu-toggle:focus-visible,
.play-button:focus-visible,
.video-strip:focus-visible,
.footer-links button:focus-visible,
.social-link:focus-visible,
.primary-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(13, 28, 193, 0.28);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(254, 254, 254, 0.86);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 48px, 1380px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.primary-nav a {
  position: relative;
  color: var(--ink-nav);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 120ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover {
  color: var(--blue-600);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.btn-header {
  min-height: 42px;
  padding-inline: 22px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image: url("../../public/images/hero-mesh.webp"), linear-gradient(90deg, var(--bg-hero) 0%, var(--bg-hero) 48%, var(--hero-far) 100%);
  background-repeat: no-repeat;
  background-size: 100% 52%, cover;
  background-position: center bottom, center;
}

.hero-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  min-height: 620px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 0;
}

.hero-copy {
  padding-top: 18px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero-sub {
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-text {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .btn {
  min-width: 170px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  animation: orbPulse 4s ease-in-out infinite;
}

.orbit-chip {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(13, 28, 193, 0.10);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  animation: chipFloat 7s ease-in-out infinite;
}

.orbit-chip img {
  width: 26px;
  height: 26px;
}

.orbit-chip span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.chip-strategy {
  left: 19%;
  top: 6%;
  animation-duration: 6.8s;
}

.chip-operations {
  right: 13%;
  top: 7%;
  animation-duration: 8.2s;
  animation-delay: -1.4s;
}

.chip-training {
  left: 3%;
  top: 39%;
  animation-duration: 7.5s;
  animation-delay: -2.2s;
}

.chip-dev {
  right: 0;
  top: 38%;
  animation-duration: 6.4s;
  animation-delay: -3s;
}

.chip-marketing {
  left: 19%;
  bottom: 6%;
  animation-duration: 8.8s;
  animation-delay: -1s;
}

.chip-web {
  right: 16%;
  bottom: 5%;
  animation-duration: 7.8s;
  animation-delay: -2.8s;
}

.industry-trust {
  border-block: 1px solid var(--line);
  background: var(--bg);
  padding-block: 30px;
}

.industry-trust-inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.industry-trust h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.industry-chip-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-chip-item {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.industry-chip-item span {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.industry-chip-item.const span {
  background: var(--ind-const);
}

.industry-chip-item.shigyo span {
  background: var(--ind-shigyo);
}

.industry-chip-item.school span {
  background: var(--ind-school);
}

.industry-chip-item.ec span {
  background: var(--ind-ec);
}

.industry-chip-item.shop span {
  background: var(--ind-shop);
}

.industry-chip-item.btob span {
  background: var(--ind-btob);
}

.what {
  background: var(--bg);
}

.what-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  gap: 62px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin: 44px 0 36px;
  padding: 0;
  list-style: none;
}

.process-item {
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.process-icon img {
  width: 30px;
  height: 30px;
}

.process-item h3 {
  margin-bottom: 8px;
}

.process-item p {
  margin: 0;
  color: var(--ink-body);
  font-size: 13px;
  line-height: 1.75;
}

.process-arrow {
  display: none;
  color: var(--blue-600);
  font-size: 24px;
  font-weight: 700;
  line-height: 96px;
}

.results-wrap {
  min-width: 0;
}

.results-card {
  overflow: hidden;
  border-radius: 14px;
  background-image: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-900) 62%, rgba(255, 255, 255, 0.08) 100%);
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: box-shadow 160ms ease;
}

.results-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.results-card > h3 {
  margin: 0;
  padding-top: 34px;
  text-align: center;
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 34px 54px 6px;
}

.stat {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:first-child {
  border-left: 0;
}

.stat span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.stat strong {
  display: block;
  color: var(--hero-far);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.stat small {
  font-size: 0.52em;
}

.chart-frame {
  position: relative;
  padding: 8px 34px 0;
}

.results-chart {
  width: 100%;
  height: auto;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.network-line {
  fill: none;
  stroke: rgba(37, 99, 235, 0.28);
  stroke-width: 1.4;
}

.network-line.alt {
  stroke: rgba(124, 58, 237, 0.24);
}

.chart-line {
  fill: none;
  stroke: var(--hero-far);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(190, 198, 229, 0.65));
  stroke-dasharray: var(--chart-length, 820);
  stroke-dashoffset: var(--chart-length, 820);
}

.results-card.chart-ready .chart-line {
  animation: drawLine 900ms ease-out forwards;
}

.chart-points circle {
  fill: var(--white);
  stroke: var(--hero-far);
  stroke-width: 3;
  filter: drop-shadow(0 0 9px rgba(190, 198, 229, 0.95));
  opacity: 0;
}

.results-card.chart-ready .chart-points circle {
  animation: pointIn 280ms ease-out forwards;
}

.results-card.chart-ready .chart-points circle:nth-child(2) {
  animation-delay: 220ms;
}

.results-card.chart-ready .chart-points circle:nth-child(3) {
  animation-delay: 520ms;
}

.results-card.chart-ready .chart-points circle:nth-child(4) {
  animation-delay: 760ms;
}

.chart-labels text {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-anchor: middle;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--blue-600);
}

.video-strip {
  width: 100%;
  height: 52px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  color: var(--blue-600);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.results-note {
  margin: 12px 0 0;
}

.section-head,
.works-head,
.lab-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.works-head h2,
.lab-title-row h2 {
  margin-bottom: 0;
}

.section-caption {
  margin: 0 auto 6px 0;
  max-width: 430px;
  font-weight: 500;
}

.carousel-shell {
  position: relative;
}

.industry-track {
  display: grid;
  grid-auto-columns: 300px;
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 20px;
  cursor: grab;
}

.industry-track::-webkit-scrollbar {
  display: none;
}

.industry-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.industry-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: box-shadow 160ms ease;
}

.industry-card:hover,
.work-card:hover,
.lab-item:hover {
  box-shadow: var(--shadow-card-hover);
}

.industry-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: var(--line-soft);
}

.industry-body {
  padding: 20px 22px 24px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.industry-chip span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  font-size: 11px;
}

.industry-chip.const {
  background: rgba(37, 99, 235, 0.08);
  color: var(--ind-const);
}

.industry-chip.const span {
  background: var(--ind-const);
}

.industry-chip.shigyo {
  background: rgba(22, 163, 74, 0.08);
  color: var(--ind-shigyo);
}

.industry-chip.shigyo span {
  background: var(--ind-shigyo);
}

.industry-chip.shop {
  background: rgba(234, 115, 23, 0.08);
  color: var(--ind-shop);
}

.industry-chip.shop span {
  background: var(--ind-shop);
}

.industry-chip.btob {
  background: rgba(124, 58, 237, 0.08);
  color: var(--ind-btob);
}

.industry-chip.btob span {
  background: var(--ind-btob);
}

.industry-chip.school {
  background: rgba(55, 48, 216, 0.08);
  color: var(--ind-school);
}

.industry-chip.school span {
  background: var(--ind-school);
}

.industry-chip.ec {
  background: rgba(13, 148, 136, 0.08);
  color: var(--ind-ec);
}

.industry-chip.ec span {
  background: var(--ind-ec);
}

.industry-card h3 {
  min-height: 82px;
  margin-bottom: 18px;
}

.feature-title {
  margin: 24px 0 8px;
  font-size: 12px;
  font-weight: 700;
}

.industry-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-body);
  font-size: 13px;
  line-height: 1.5;
}

.industry-card li {
  position: relative;
  padding-left: 20px;
}

.industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 14px;
  height: 14px;
  background: url("../icons/check.svg") center / 14px 14px no-repeat;
}

.carousel-control {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-600);
  cursor: pointer;
  transition: border-color 120ms ease, color 120ms ease, transform 90ms ease;
}

.carousel-control:hover {
  border-color: var(--blue-600);
}

.carousel-control.prev {
  left: -58px;
}

.carousel-control.next {
  right: -58px;
}

.works-lab {
  padding-top: 24px;
  background: var(--bg);
}

.works-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 66%) minmax(320px, 34%);
  gap: 50px;
}

.lab-col {
  border-left: 1px solid var(--line);
  padding-left: 50px;
}

.works-head {
  margin-bottom: 26px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  color: var(--blue-600);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 120ms ease, transform 90ms ease;
}

.link-button:hover {
  color: var(--blue-700);
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: box-shadow 160ms ease;
}

.work-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: var(--line-soft);
}

.work-body {
  padding: 16px 18px 20px;
}

.work-industry {
  margin-bottom: 2px;
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.4;
}

.work-company {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.work-card h3 {
  min-height: 82px;
  margin-bottom: 18px;
}

.work-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding-inline: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.stat-pill.blue {
  color: var(--stat-blue);
  background: rgba(36, 71, 203, 0.06);
}

.stat-pill.green {
  color: var(--stat-green);
  background: rgba(22, 163, 74, 0.06);
}

.stat-pill.orange {
  color: var(--stat-orange);
  background: rgba(234, 115, 23, 0.06);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 10px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.carousel-dots .active {
  background: var(--blue-600);
}

.works-note {
  margin-bottom: 0;
}

.lab-title-row {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 28px;
}

.lab-title-row p {
  margin: 6px 0 0;
  color: var(--ink-body);
  font-size: 14px;
  font-weight: 500;
}

.lab-list {
  display: grid;
  gap: 18px;
}

.lab-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 160ms ease;
}

.lab-item img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--line-soft);
}

.lab-text time {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.4;
}

.lab-text h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.lab-tag {
  border-radius: 6px;
  background: var(--blue-050);
  color: var(--blue-600);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

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

.final-cta {
  overflow: hidden;
  background-color: var(--navy-800);
  background-image: url("../../public/images/cta-mesh.webp"), linear-gradient(90deg, var(--navy-800) 0%, var(--navy-800) 62%, rgba(255, 255, 255, 0.08) 100%);
  background-repeat: no-repeat;
  background-size: auto 100%, cover;
  background-position: right center, center;
  color: var(--white);
}

.final-cta-inner {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto minmax(330px, 0.82fr);
  align-items: center;
  gap: 34px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.55;
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.trust-list img {
  width: 34px;
  height: 34px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding-block: 46px 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(480px, 1.8fr) minmax(230px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.footer-links h3 {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links a,
.footer-links button {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink-body);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  transition: color 120ms ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--blue-600);
}

.footer-contact {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}

.footer-contact p {
  margin-bottom: 7px;
  color: var(--ink-mute);
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact .btn {
  margin-block: 4px 12px;
}

.footer-operator {
  color: var(--ink-body) !important;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.footer-phone img {
  width: 24px;
  height: 24px;
}

.follow-label {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--ink) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 120ms ease, transform 90ms ease;
}

.social-link:hover {
  background: var(--line-soft);
}

.social-link img {
  width: 20px;
  height: 20px;
}

.copyright {
  margin: 24px 0 0;
  color: var(--ink-mute);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  width: min(420px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pointIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 901px) {
  .process-list {
    grid-template-columns: 96px 22px 96px 22px 96px 22px 96px;
  }

  .process-arrow {
    display: block;
  }
}

@media (max-width: 1199px) {
  .header-inner {
    grid-template-columns: minmax(240px, 1fr) auto;
    width: min(100% - 36px, 1080px);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 12px 24px 24px;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 15px 0;
  }

  .primary-nav a::after {
    bottom: 8px;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 48% 52%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .orbit-chip {
    width: 100px;
    height: 100px;
  }

  .what-grid {
    gap: 36px;
  }

  .stats {
    padding-inline: 30px;
  }

  .stat strong {
    font-size: 36px;
  }

  .carousel-control.prev {
    left: -18px;
  }

  .carousel-control.next {
    right: -18px;
  }

  .works-lab-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lab-col {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 50px 0 0;
  }

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

  .trust-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: 0;
    background-size: 140% 44%, cover;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 38px 64px;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 112px));
    justify-content: center;
    gap: 14px;
    padding-top: 20px;
  }

  .hero-orb {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    top: auto;
    width: min(420px, 82vw);
    margin: 0 auto -12px;
    transform: none;
  }

  .orbit-chip {
    position: static;
    width: 112px;
    height: 112px;
  }

  .hero-copy {
    padding-top: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .works-head,
  .lab-title-row {
    display: grid;
    align-items: start;
  }

  .section-caption {
    margin: 0;
  }

  .industry-track {
    grid-auto-columns: minmax(280px, 72vw);
  }

  .works-cards {
    grid-template-columns: 1fr;
  }

  .work-card {
    display: grid;
    grid-template-columns: 38% 62%;
  }

  .work-card > img {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 12px 0 0 12px;
  }

  .work-card h3 {
    min-height: auto;
  }

  .final-cta {
    background-size: 110% auto, cover;
    background-position: right bottom, center;
  }

  .final-cta-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 42px;
    text-align: center;
  }

  .final-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --section-y: 64px;
  }

  .header-inner {
    width: min(100% - 28px, 100%);
    gap: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding-block: 24px 54px;
  }

  .hero-visual {
    grid-template-columns: repeat(3, minmax(0, 96px));
    gap: 10px;
  }

  .orbit-chip {
    width: 96px;
    height: 96px;
  }

  .orbit-chip img {
    width: 24px;
    height: 24px;
  }

  .orbit-chip span {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 19px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-text br {
    display: none;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  h2 {
    font-size: 25px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .process-list {
    gap: 22px 14px;
  }

  .process-icon {
    width: 76px;
    height: 76px;
  }

  .process-icon img {
    width: 26px;
    height: 26px;
  }

  .stats {
    padding: 28px 16px 8px;
  }

  .stat strong {
    font-size: 30px;
  }

  .chart-frame {
    padding-inline: 12px;
  }

  .industry-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .carousel-control {
    top: auto;
    bottom: -46px;
  }

  .carousel-control.prev {
    left: 0;
  }

  .carousel-control.next {
    right: 0;
  }

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

  .work-card > img {
    aspect-ratio: 16 / 9;
    border-radius: 12px 12px 0 0;
  }

  .lab-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .lab-item img {
    width: 82px;
    height: 58px;
  }

  .lab-tag {
    grid-column: 2;
    justify-self: start;
  }

  .final-cta h2 {
    font-size: 25px;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-phone {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .orbit-chip,
  .hero-orb {
    animation: none !important;
  }

  .chart-line {
    stroke-dashoffset: 0 !important;
  }

  .chart-points circle {
    opacity: 1 !important;
  }

  .reveal {
    transition: opacity 400ms ease-out !important;
  }
}

/* =========================================================
   検収で見つかった日本語の折り返し崩れの修正（2026-09-04）
   モックでは1行に収まっている文字が、実装で単語の途中から
   折れていた（「資料ダウンロー／ド」「課題の可／視化」「AI／LAB」など）。
   ========================================================= */

/* 日本語は文節で折る。単語の途中で切らない */
h1,
h2,
h3,
h4,
.process-item h3,
.process-item p,
.industry-card h3,
.work-card h3,
.lab-item h3,
.final-cta h2 {
  word-break: auto-phrase;
  line-break: strict;
}

/* ボタンのラベルと矢印は絶対に折らない */
.btn,
.link-button,
.btn-header {
  white-space: nowrap;
}

/* 支援プロセスの4ステップ。見出しを1行に保つ幅を確保する */
.process-item {
  min-width: 118px;
}

.process-item h3 {
  white-space: nowrap;
}

/* AI LAB の見出しは1語として扱う */
.lab-title-row h2 {
  white-space: nowrap;
}

/* 最終CTAの見出しはモックどおり2行。3行に割らせない */
.final-cta h2 {
  min-width: min(100%, 20em);
}

/* 安心材料の3つは1行ずつ */
.trust-list li {
  white-space: nowrap;
}

/* 導入事例の実績チップは横並び1段（モック準拠） */
.work-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* フッターのリンクを途中で折らない */
.footer-links a,
.footer-links button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  /* 狭い画面では折り返しを許す。はみ出すより折れたほうがよい */
  .process-item h3,
  .trust-list li,
  .footer-links a,
  .footer-links button {
    white-space: normal;
  }
}

/* --- 検収2回目: モックとの幅の差を詰める（2026-09-04） --- */

/* 業種カードはモック基準で約340px。300pxだと
   「お店の魅力を伝え、予約・来店に」が3行に割れる */
@media (min-width: 901px) {
  .industry-track {
    grid-auto-columns: 340px;
  }
}

/* 最終CTAの見出しはモックどおり2行に収める */
@media (min-width: 901px) {
  .final-cta h2 {
    font-size: 26px;
    line-height: 1.5;
  }
}

/* --- 検収3回目: モックの行数に合わせる（2026-09-04） --- */
@media (min-width: 901px) {
  /* 支援プロセスの説明はモックどおり2行。118pxだと4行に割れていた */
  .process-item {
    min-width: 164px;
  }

  /* 最終CTAの見出しを2行に収める。見出しの列を広げ、右2列を詰める */
  .final-cta-inner {
    grid-template-columns: minmax(440px, 1.25fr) auto minmax(300px, 0.7fr);
    gap: 28px;
  }

  .final-cta h2 {
    font-size: 25px;
  }
}

/* --- 検収4回目: 支援プロセスの矢印が円にくっついていたのを直す（2026-09-04） ---
   min-width で押し広げたら 96px 固定列からはみ出して矢印が寄ってしまった。
   列を 1fr にして均等割りにし、説明文はモックどおり2行に収まる字送りにする。 */
@media (min-width: 1200px) {
  .process-list {
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
  }

  .process-item {
    min-width: 0;
  }

  .process-item p {
    font-size: 11.5px;
    line-height: 1.75;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .process-item {
    min-width: 0;
  }
}

/* --- 検収5回目: 説明文をモックどおり2行に収める（2026-09-04） ---
   1列あたり104pxしかなく「現状をヒアリングし、」が入らなかった。
   列間を詰めて字送りを下げ、1行10文字が収まる幅を作る。 */
@media (min-width: 1200px) {
  .process-list {
    gap: 10px;
  }

  .process-item p {
    font-size: 11px;
  }
}

/* =========================================================
   検収6回目: 横スクロールが出ていたのを止める（2026-09-04）
   1024pxで70px、390pxで79px、ページ全体が横に伸びていた。
   ========================================================= */

/* 業種カルーセル: トラックの外へはみ出させない */
.industry-track {
  max-width: 100%;
  overscroll-behavior-x: contain;
}

/* ヘッダー: 狭い画面でボタンと三本線がはみ出していた */
@media (max-width: 600px) {
  .header-actions {
    min-width: 0;
    gap: 8px;
  }

  .header-actions .btn {
    max-width: 46vw;
    padding-inline: 12px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 最後の安全網。どの幅でも横スクロールを出さない */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================================================
   第2版: 19セクション構成への追加スタイル
   ========================================================= */

h1,
h2,
h3,
p,
li,
summary,
small,
strong {
  word-break: auto-phrase;
  line-break: strict;
}

.narrow {
  max-width: 920px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-proof img {
  width: 15px;
  height: 15px;
}

.problems,
.solutions,
.change,
.works-section,
.reasons,
.price,
.about-company {
  background: var(--bg-tint);
}

.industry,
.catalog,
.voice,
.flow,
.lab-section,
.faq {
  background: var(--bg);
}

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

.problem-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.problem-list span {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.problem-closing,
.change-closing {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

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

.solution-card,
.voice-card,
.reason-grid article,
.price-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: box-shadow 160ms ease;
}

.solution-card:hover,
.voice-card:hover,
.reason-grid article:hover,
.price-grid article:hover {
  box-shadow: var(--shadow-card-hover);
}

.solution-card {
  padding: 28px;
}

.solution-card > img,
.solution-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
  font-size: 22px;
  font-weight: 900;
}

.solution-card > img {
  padding: 9px;
}

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-card p {
  margin-bottom: 18px;
  color: var(--ink-body);
  font-size: 14px;
  line-height: 1.75;
}

.solution-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-card div span {
  border-radius: 6px;
  background: var(--blue-050);
  color: var(--blue-600);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.demo-flow {
  min-height: 42px;
  margin: -4px 0 16px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.change-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.change-column {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.change-column h3 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.change-column.before h3 {
  color: var(--before);
}

.change-column.after h3 {
  color: var(--after);
}

.change-column ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.change-column li {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--before);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.change-column.after li {
  color: var(--ink-body);
  background: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.change-column.after li.is-lit {
  border-color: rgba(13, 28, 193, 0.22);
  background: var(--blue-050);
  color: var(--after);
}

.change-arrow {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 900;
  text-align: center;
}

.change-arrow svg {
  width: min(132px, 100%);
  height: auto;
}

.change-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.change-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.change-table div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.change-table div + div {
  border-top: 1px solid var(--line-soft);
}

.change-table strong,
.change-table span {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.6;
}

.change-table strong {
  color: var(--before);
}

.change-table span {
  border-left: 1px solid var(--line-soft);
  color: var(--after);
  font-weight: 700;
}

.change-closing {
  margin-top: 24px;
  text-align: center;
}

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

.catalog-tile {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 22px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  transition: background-color 120ms ease, color 120ms ease;
}

.catalog-tile:hover {
  background: var(--blue-050);
}

.catalog-tile span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 900;
}

.catalog-tile strong {
  font-size: 15px;
  line-height: 1.5;
}

.catalog-tile small {
  color: var(--ink-body);
  font-size: 12px;
  line-height: 1.7;
}

.works-section .works-cards {
  margin-top: 0;
}

.work-card h3 {
  min-height: 0;
}

.work-stages {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.work-stages p {
  margin: 0;
  color: var(--ink-body);
  font-size: 13px;
  line-height: 1.65;
}

.work-stages span {
  display: inline-block;
  margin-right: 8px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.voice-grid,
.reason-grid,
.price-grid {
  display: grid;
  gap: 24px;
}

.voice-grid,
.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-card {
  padding: 30px;
}

.voice-avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-050);
  object-fit: cover;
}

.voice-meta {
  margin-bottom: 12px;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 700;
}

.voice-card h3 {
  margin-bottom: 12px;
}

.voice-card p:last-child {
  margin: 0;
  color: var(--ink-body);
  font-size: 14px;
  line-height: 1.85;
}

.voice-note {
  margin: 18px 0 0;
}

.reason-grid article {
  padding: 32px;
}

.reason-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-600);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.reason-grid p,
.price-grid p,
.about-company p,
.faq p {
  color: var(--ink-body);
  font-size: 14px;
  line-height: 1.85;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  border-left: 3px solid var(--blue-600);
  padding: 4px 0 6px 24px;
}

.flow-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.flow-list h3 {
  margin-bottom: 8px;
}

.flow-list p {
  margin: 0;
  color: var(--ink-body);
  font-size: 14px;
  line-height: 1.75;
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-grid article {
  padding: 28px;
}

.price-grid h3 {
  margin-bottom: 18px;
}

.price-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
}

.about-visual {
  min-height: 360px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--blue-050);
  box-shadow: var(--shadow-card);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-list summary::marker {
  color: var(--blue-600);
}

.faq-list details p {
  margin: 0;
  padding: 0 0 20px;
}

.catalog-tile:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(13, 28, 193, 0.28);
  outline-offset: 4px;
}

.final-cta-inner > p {
  grid-column: 1;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.8;
}

@media (min-width: 901px) {
  .final-cta-inner > h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .final-cta-inner > p {
    grid-row: 2;
  }

  .final-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .trust-list {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 1199px) {
  .industry-trust-inner {
    grid-template-columns: 1fr;
  }

  .industry-chip-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .final-cta-inner > h2,
  .final-cta-inner > p {
    grid-column: 1;
  }

  .final-actions {
    grid-column: 2;
  }

  .trust-list {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .hero-proof {
    justify-content: center;
  }

  .problem-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    font-size: 15px;
  }

  .change-flow {
    grid-template-columns: 1fr;
  }

  .change-arrow svg {
    transform: rotate(90deg);
  }

  .catalog-grid,
  .voice-grid,
  .reason-grid,
  .flow-list,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tile {
    min-height: 132px;
  }

  .about-visual {
    min-height: 280px;
  }

  .final-cta-inner > p {
    grid-column: auto;
    margin-top: -18px;
  }
}

@media (max-width: 600px) {
  .industry-chip-list,
  .solution-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .industry-chip-item {
    justify-content: flex-start;
  }

  .change-column {
    padding: 18px;
  }

  .change-table div {
    grid-template-columns: 1fr;
  }

  .change-table span {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .voice-card,
  .reason-grid article,
  .price-grid article,
  .solution-card {
    padding: 24px;
  }

  .btn,
  .link-button,
  .btn-header {
    white-space: normal;
  }
}

/* =========================================================
   2026-09-04 モックの密度に戻す。
   19セクションに広げた結果、全長が11,285px（モックの約3倍）になり
   見出しが4行に折れ、セクション下に画面半分の空白が出ていた。
   TOPは12セクション（モックの8＋効く4つ）に絞ったうえで、
   ここで余白と組み方をモックの質感に合わせる。
   ========================================================= */

/* セクションの上下をモック基準に詰める */
:root {
  --section-y: clamp(52px, 4.6vw, 80px);
}

/* WHAT WE DO の見出しは横いっぱいに出す。
   46%幅に押し込むと「AIを導入することが目的ではありません。」が折れる */
.what-head {
  max-width: 46em;
  margin-bottom: 40px;
}

.what-head h2 {
  word-break: auto-phrase;
  line-break: strict;
}

/* 中央揃えだと左右の高さ差がそのまま空白になる */
.what-grid {
  align-items: start;
}

/* ---- WORKS と AI LAB をモックどおり横並びにする ---- */

.works-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.works-lab .lab-col {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.works-lab .lab-list {
  display: grid;
  gap: 12px;
}

.works-lab .works-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  .works-lab-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .works-lab .lab-col {
    padding-left: 0;
    padding-top: 32px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .what-head {
    margin-bottom: 28px;
  }
}

/* AI LAB は右カラム（幅が狭い）に入るので、見出しを列幅に合わせる。
   36pxのままだと「最新のAIを、/実際に/試しています。」と3行に割れる */
.works-lab .lab-col h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.5;
}

.works-lab .lab-col .section-caption {
  font-size: 13px;
}

/* 課題提起は1行ずつの短い項目。行間を詰めて間延びを止める */
.problems .problem-item {
  padding-block: 16px;
}

/* FAQ だけ中央寄せだと他のセクションと揃わない */
.faq .container,
.section.faq .container {
  max-width: var(--container);
}

/* 右カラムの AI LAB は、見出しと補足を横に並べる余地がない。
   縦に積んで見出しに列幅をぜんぶ使わせる */
.works-lab .lab-col .section-head {
  display: block;
}

.works-lab .lab-col .section-caption {
  margin-top: 8px;
}

/* クリニック・医療のチップ（7業種目として復帰。デモは既存の clinic を使う）
   士業の緑・ECのティールと混ざらないよう、シアンにする */
:root {
  --ind-clinic: #0891b2;
}

.industry-chip.clinic {
  background: rgba(8, 145, 178, 0.08);
  color: var(--ind-clinic);
}

.industry-chip.clinic span {
  background: var(--ind-clinic);
}

/* まだ実物が無いデモのボタン。動くものと同じ見た目にしない（嘘をつかない） */
.btn.is-pending {
  border-color: var(--line);
  color: var(--ink-mute);
  cursor: default;
}

.btn.is-pending:hover {
  border-color: var(--line);
  color: var(--ink-mute);
}
