@charset "utf-8";

:root {
  --white: #f4f7ff;
  --muted: rgba(244, 247, 255, .76);
  --line: rgba(236, 242, 255, .28);
  --line-soft: rgba(236, 242, 255, .14);
  --panel: rgba(2, 4, 13, .54);
  --panel-deep: rgba(1, 3, 10, .70);
  --purple: #9858ff;
  --blue: #3da7ff;
  --cyan: #65fff5;
  --shadow: rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #02030a;
  color: var(--white);
}

body {
  position: relative;
}

body {
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #02030a;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) contrast(1.18) saturate(1.16);
  transform: scale(1.018);
}

.bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.48) 25%, rgba(0,0,0,.08) 53%, rgba(0,0,0,.36) 100%),
    linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.04) 36%, rgba(0,0,0,.44) 100%);
}

.bg-vignette {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 52% 55%, transparent 0 28%, rgba(0,0,0,.42) 62%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 50% 84%, rgba(57, 167, 255, .22), transparent 25%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: .15;
  mix-blend-mode: screen;
  pointer-events: none;
  background-image: url("./assets/noise.svg");
  background-size: 220px 220px;
}

.scanline {
  position: absolute;
  inset: 0;
  opacity: .12;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 5px,
    rgba(255,255,255,.20) 6px,
    transparent 7px
  );
  animation: scan 9s linear infinite;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(18px, 2.8vw, 38px) clamp(24px, 4.1vw, 56px);
  overflow: hidden;
}

.frame-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.065);
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  width: clamp(29px, 2.35vw, 38px);
  height: clamp(29px, 2.35vw, 38px);
  filter: drop-shadow(0 0 14px rgba(91, 93, 255, .7));
}

.brand-text {
  font-size: clamp(25px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: .31em;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(255,255,255,.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.1vw, 48px);
  padding-right: 2px;
  color: rgba(255,255,255,.84);
  font-size: clamp(13px, 1.04vw, 16px);
  font-weight: 800;
  letter-spacing: .12em;
}

.nav span {
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

.nav a {
  transition: color .2s ease, text-shadow .2s ease;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(105, 255, 245, .55);
}

.side-copy {
  position: absolute;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .34em;
  color: var(--purple);
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(152, 88, 255, .48);
}

.side-copy-left {
  left: 18px;
  top: 20%;
}

.side-copy-right {
  right: 16px;
  bottom: 10%;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(70px, 7.3vw, 126px);
  top: clamp(160px, 22vh, 230px);
  max-width: 540px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 2.85vw, 46px);
  line-height: 1.86;
  letter-spacing: .26em;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(255,255,255,.16);
}

.hero-copy p {
  margin: clamp(24px, 3.1vh, 36px) 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(14px, 1.13vw, 17px);
  line-height: 1.95;
  letter-spacing: .12em;
  font-weight: 650;
}

.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow:
    0 18px 38px var(--shadow),
    inset 0 0 26px rgba(120, 120, 255, .055);
  backdrop-filter: blur(8px);
}

.experiment-card {
  position: absolute;
  z-index: 5;
  left: clamp(34px, 3.9vw, 62px);
  bottom: clamp(230px, 31vh, 320px);
  width: clamp(188px, 14.5vw, 238px);
  min-height: 96px;
  padding: 18px 24px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
}

.experiment-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .14em;
}

.experiment-card strong {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .13em;
}

.experiment-card em {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: rgba(255,255,255,.85);
}

.services {
  position: absolute;
  z-index: 6;
  left: clamp(34px, 3.8vw, 58px);
  bottom: clamp(56px, 7.2vh, 84px);
  width: min(41.5vw, 676px);
  min-width: 600px;
  display: grid;
  grid-template-columns: .95fr 1.55fr;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  min-height: 138px;
  padding: 24px 26px;
  border-right: 1px solid var(--line-soft);
  color: inherit;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  background-color: rgba(255, 255, 255, .045);
}

.service-card:hover .arrow {
  color: #fff;
  transform: translateX(4px);
  text-shadow: 0 0 14px rgba(105, 255, 245, .7);
}

.service-card:focus-visible {
  outline: 1px solid rgba(105, 255, 245, .6);
  outline-offset: -4px;
}

.service-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 700;
}

.service-card h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.55vw, 27px);
  line-height: 1.45;
  letter-spacing: .12em;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.7;
  letter-spacing: .06em;
  font-weight: 700;
}

.arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(255,255,255,.68);
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

.service-icon {
  width: 58px;
  height: 58px;
  align-self: end;
  opacity: .92;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 16px rgba(139, 83, 255, .45));
}

.service-icon-brain {
  background-image: url("./assets/icon-brain.svg");
}

.service-icon-cube {
  background-image: url("./assets/icon-cube.svg");
}

.terminal {
  position: absolute;
  z-index: 5;
  right: clamp(70px, 7vw, 114px);
  top: clamp(92px, 13vh, 134px);
  width: min(28vw, 430px);
  height: min(15vw, 226px);
  min-width: 330px;
  min-height: 170px;
  padding: 28px;
  background: rgba(4, 6, 16, .32);
}

.terminal::before,
.loading::before,
.experiment-card::before,
.services::before,
.company::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0 18px, transparent 18px calc(100% - 18px), #fff calc(100% - 18px)) top / 100% 1px no-repeat,
    linear-gradient(90deg, #fff 0 18px, transparent 18px calc(100% - 18px), #fff calc(100% - 18px)) bottom / 100% 1px no-repeat,
    linear-gradient(#fff 0 18px, transparent 18px calc(100% - 18px), #fff calc(100% - 18px)) left / 1px 100% no-repeat,
    linear-gradient(#fff 0 18px, transparent 18px calc(100% - 18px), #fff calc(100% - 18px)) right / 1px 100% no-repeat;
  opacity: .18;
}

.terminal-label {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.84);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .15em;
}

.terminal-status {
  margin-top: 10px;
  color: rgba(255,255,255,.74);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .15em;
}

.wave {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: calc(100% - 44px);
  height: 56%;
  overflow: visible;
}

.wave path {
  fill: none;
  stroke: url(#waveGrad);
  stroke-width: 3;
  opacity: .7;
  filter: drop-shadow(0 0 8px rgba(126, 83, 255, .75));
}

.wave-a {
  animation: waveMove 4.7s ease-in-out infinite alternate;
}

.wave-b {
  opacity: .36 !important;
  animation: waveMove 5.8s ease-in-out infinite alternate-reverse;
}

.wave-dots {
  fill: #fff;
  opacity: .55;
  animation: dotsFloat 5s ease-in-out infinite;
}

.loading {
  position: absolute;
  z-index: 6;
  right: clamp(320px, 25vw, 520px);
  top: clamp(375px, 51vh, 500px);
  width: 188px;
  padding: 18px 20px;
  background: rgba(2, 4, 13, .52);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.loading span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  letter-spacing: .15em;
}

.loading strong {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  letter-spacing: .14em;
}

.dots {
  display: inline !important;
  margin: 0 !important;
}

.dots i {
  font-style: normal;
  animation: loadingDot 1.25s infinite;
}

.dots i:nth-child(2) {
  animation-delay: .18s;
}

.dots i:nth-child(3) {
  animation-delay: .36s;
}

.progress {
  height: 3px;
  margin-top: 16px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.progress b {
  display: block;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--purple), #fff);
  animation: progress 2.2s ease-in-out infinite;
}

.company {
  position: absolute;
  z-index: 7;
  right: clamp(54px, 4.7vw, 86px);
  bottom: clamp(48px, 5.5vh, 62px);
  width: min(26.5vw, 420px);
  min-width: 386px;
  padding: 24px 30px 22px;
  background: rgba(2, 4, 13, .58);
}

.company h2 {
  margin: 0 0 26px;
  font-size: clamp(20px, 1.55vw, 27px);
  letter-spacing: .12em;
}

.company-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 18px;
}

.company-row div {
  padding-right: 18px;
  border-right: 1px solid var(--line-soft);
}

.company-row div:last-child {
  border-right: 0;
}

.company dt,
.address dt {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
}

.company dd {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  letter-spacing: .07em;
  line-height: 1.7;
  white-space: nowrap;
}

.address {
  margin: 0;
}

.address dd {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .05em;
}

.footer {
  position: absolute;
  z-index: 5;
  left: clamp(34px, 3.8vw, 58px);
  right: clamp(34px, 3.8vw, 58px);
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 24px;
  color: rgba(255,255,255,.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  letter-spacing: .20em;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  font-size: 11px;
  letter-spacing: .1em;
}

.footer-links a {
  color: rgba(255, 255, 255, .58);
  transition: color .2s ease, text-shadow .2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(105, 255, 245, .5);
}

.footer-links span[aria-hidden="true"] {
  color: rgba(255, 255, 255, .32);
}

.footer-copy {
  color: rgba(255, 255, 255, .48);
}

@keyframes scan {
  to { transform: translateY(36px); }
}

@keyframes waveMove {
  from { transform: translateX(-16px) translateY(7px) scaleY(.90); }
  to { transform: translateX(18px) translateY(-5px) scaleY(1.08); }
}

@keyframes dotsFloat {
  0%, 100% { transform: translateY(0); opacity: .38; }
  50% { transform: translateY(-7px); opacity: .85; }
}

@keyframes loadingDot {
  0%, 100% { opacity: .18; }
  46% { opacity: 1; }
}

@keyframes progress {
  0% { transform: translateX(-110%); }
  58% { transform: translateX(170%); }
  100% { transform: translateX(170%); }
}

@media (max-width: 1180px) {
  .hero-copy {
    left: 44px;
    top: 150px;
  }

  .services {
    width: calc(100% - 88px);
    min-width: 0;
    bottom: 260px;
  }

  .company {
    left: 44px;
    right: auto;
    bottom: 48px;
    width: calc(100% - 88px);
    min-width: 0;
  }

  .terminal {
    right: 36px;
    top: 120px;
  }

  .loading {
    right: 42px;
    top: 430px;
  }

  .experiment-card {
    display: none;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 1120px;
    padding: 18px;
  }

  .header {
    align-items: flex-start;
  }

  .brand-text {
    font-size: 24px;
  }

  .nav {
    gap: 11px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .side-copy {
    display: none;
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 110px;
    max-width: none;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.7;
    letter-spacing: .16em;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .terminal,
  .loading,
  .services,
  .company {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .terminal {
    height: 190px;
    margin-top: 60px;
  }

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

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .company-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 12px;
  }

  .footer {
    left: 18px;
  }
}


/* =========================================================
   Responsive hardening
   ---------------------------------------------------------
   1440px以上: キービジュアルに近い絶対配置
   1180px以下: 下部カードを2段に整理
   900px以下 : 主要要素を縦積みレイアウトへ切替
   600px以下 : モバイル向けに余白・文字・カードを圧縮
   ========================================================= */

@media (min-width: 1181px) and (max-height: 780px) {
  .hero {
    min-height: 860px;
  }

  .hero-copy {
    top: 145px;
  }

  .experiment-card {
    bottom: 250px;
  }

  .services,
  .company {
    bottom: 48px;
  }

  .loading {
    top: 390px;
  }
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .hero-copy {
    left: clamp(58px, 5.5vw, 92px);
    top: clamp(140px, 19vh, 210px);
  }

  .hero-copy h1 {
    font-size: clamp(28px, 2.55vw, 38px);
  }

  .hero-copy p {
    font-size: clamp(13px, 1vw, 15px);
  }

  .terminal {
    right: 54px;
    width: 360px;
    min-width: 360px;
  }

  .loading {
    right: 360px;
  }

  .services {
    width: min(48vw, 650px);
    min-width: 560px;
  }

  .company {
    width: 360px;
    min-width: 360px;
    right: 54px;
  }
}

/* Tablet / small laptop: avoid bottom overlap by increasing page height */
@media (max-width: 1180px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: 1180px;
    padding: 24px clamp(22px, 4vw, 44px) 42px;
    overflow: visible;
  }

  .frame-border {
    position: fixed;
  }

  .header {
    position: relative;
    z-index: 20;
  }

  .brand-text {
    font-size: clamp(24px, 3.4vw, 34px);
  }

  .nav {
    gap: clamp(12px, 2.4vw, 28px);
    font-size: clamp(12px, 1.7vw, 14px);
    letter-spacing: .08em;
  }

  .hero-copy {
    left: clamp(34px, 5vw, 64px);
    top: 140px;
    max-width: min(560px, calc(100vw - 88px));
  }

  .hero-copy h1 {
    font-size: clamp(30px, 4.3vw, 44px);
    line-height: 1.65;
    letter-spacing: .18em;
  }

  .hero-copy p {
    max-width: 520px;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.9;
  }

  .terminal {
    top: 140px;
    right: clamp(34px, 5vw, 64px);
    width: min(39vw, 420px);
    min-width: 300px;
    height: 190px;
  }

  .loading {
    top: 380px;
    right: clamp(34px, 5vw, 64px);
    width: 190px;
  }

  .experiment-card {
    left: clamp(34px, 5vw, 64px);
    bottom: auto;
    top: 510px;
  }

  .services {
    left: clamp(34px, 5vw, 64px);
    right: clamp(34px, 5vw, 64px);
    bottom: auto;
    top: 690px;
    width: auto;
    min-width: 0;
  }

  .company {
    left: clamp(34px, 5vw, 64px);
    right: clamp(34px, 5vw, 64px);
    bottom: auto;
    top: 890px;
    width: auto;
    min-width: 0;
  }

  .footer {
    bottom: 24px;
  }
}

/* Switch from absolute artboard to flow layout */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 20px 20px 32px;
    overflow: hidden;
  }

  .header,
  .hero-copy,
  .experiment-card,
  .terminal,
  .loading,
  .services,
  .company,
  .footer {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
  }

  .frame-border {
    position: fixed;
    inset: 8px;
  }

  .header {
    align-items: center;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-text {
    font-size: clamp(21px, 5vw, 30px);
    letter-spacing: .22em;
  }

  .nav {
    gap: 11px;
    font-size: 12px;
    letter-spacing: .04em;
  }

  .side-copy {
    display: none;
  }

  .hero-copy {
    padding-top: clamp(68px, 15vh, 130px);
  }

  .hero-copy h1 {
    font-size: clamp(30px, 7vw, 48px);
    line-height: 1.55;
    letter-spacing: .12em;
  }

  .hero-copy p {
    margin-top: 26px;
    font-size: clamp(14px, 3.2vw, 16px);
    line-height: 1.9;
    letter-spacing: .07em;
  }

  .experiment-card {
    width: min(100%, 300px);
    min-height: 92px;
  }

  .terminal {
    height: 210px;
    padding: 22px;
    min-height: 0;
  }

  .loading {
    width: min(100%, 230px);
  }

  .services {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 56px 1fr;
    min-height: 126px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    align-self: start;
  }

  .company {
    padding: 24px;
  }

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

  .company dd,
  .address dd {
    white-space: normal;
  }

  .footer {
    padding-top: 8px;
  }

  .bg-video {
    object-position: 52% center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    gap: 20px;
    padding: 16px 14px 28px;
  }

  .header {
    align-items: flex-start;
    gap: 16px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .brand-text {
    font-size: 22px;
    letter-spacing: .18em;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 46vw;
    row-gap: 6px;
    column-gap: 8px;
    font-size: 10px;
    line-height: 1.5;
  }

  .nav span {
    display: none;
  }

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

  .hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.55;
    letter-spacing: .08em;
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: .045em;
  }

  .experiment-card {
    padding: 16px 18px;
    min-height: 86px;
  }

  .terminal {
    height: 180px;
    padding: 18px;
  }

  .wave {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: calc(100% - 32px);
  }

  .loading {
    padding: 16px 18px;
  }

  .service-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-card small {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .service-card h2 {
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .service-card p {
    font-size: 13px;
  }

  .company {
    padding: 20px 18px;
  }

  .company h2 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .company-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 0 0 12px;
  }

  .company-row div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .company dd,
  .address dd {
    font-size: 13px;
  }

  .footer {
    font-size: 10px;
  }

  .bg-video {
    object-position: 55% center;
    transform: scale(1.08);
  }

  .bg-shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.30)),
      linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.28) 45%, rgba(0,0,0,.64));
  }
}

@media (max-width: 380px) {
  .brand-text {
    font-size: 19px;
    letter-spacing: .14em;
  }

  .nav {
    max-width: 50vw;
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

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

  .service-icon {
    display: none;
  }
}


/* =========================================================
   Responsive hardening v2
   - テキストの行数を固定し、途中で隠れないように調整
   - 画面幅が中途半端な領域では右側UIを非表示/下段化
   - 900px以下では完全な縦積みカードレイアウトへ切替
   ========================================================= */

/* Global: avoid Japanese line-break surprises */
.hero-copy h1,
.hero-copy p,
.service-card h2,
.service-card p,
.company h2,
.company dd,
.address dd {
  overflow-wrap: normal;
  word-break: keep-all;
}

/* Desktop / large screens: keep the main copy in a safe left zone */
@media (min-width: 1181px) {
  .hero {
    min-height: max(100svh, 820px);
  }

  .hero-copy {
    width: min(56vw, 900px);
    max-width: none;
    left: clamp(48px, 6.4vw, 112px);
    top: clamp(138px, 19vh, 218px);
    overflow: visible;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 4.25vw, 72px);
    line-height: 1.55;
    letter-spacing: clamp(.08em, .55vw, .19em);
    white-space: nowrap;
  }

  .hero-copy p {
    width: min(41vw, 560px);
    font-size: clamp(14px, 1.22vw, 20px);
    line-height: 1.95;
    letter-spacing: clamp(.04em, .22vw, .11em);
  }

  .terminal {
    right: clamp(36px, 4.4vw, 92px);
    width: clamp(310px, 25vw, 430px);
    min-width: 0;
  }

  .loading {
    right: clamp(280px, 26vw, 520px);
  }

  .services {
    width: min(52vw, 720px);
    min-width: 0;
  }

  .company {
    width: min(31vw, 440px);
    min-width: 360px;
  }
}

/* Narrow desktop: prevent right panels from cutting into the headline */
@media (min-width: 901px) and (max-width: 1320px) {
  .hero {
    min-height: 1080px;
  }

  .hero-copy {
    width: calc(100vw - 96px);
    left: 48px;
    top: 126px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 5.6vw, 68px);
    line-height: 1.52;
    letter-spacing: .09em;
    white-space: normal;
    max-width: 900px;
  }

  .hero-copy p {
    width: min(620px, calc(100vw - 96px));
  }

  .terminal {
    top: 520px;
    right: 48px;
    width: min(42vw, 430px);
  }

  .loading {
    top: 760px;
    right: 48px;
  }

  .experiment-card {
    display: block;
    left: 48px;
    top: 540px;
    bottom: auto;
  }

  .services {
    left: 48px;
    right: 48px;
    top: 830px;
    bottom: auto;
    width: auto;
    grid-template-columns: 1fr 1.25fr;
  }

  .company {
    display: none;
  }

  .footer {
    bottom: 22px;
  }
}

/* Tablet: use flow layout earlier to avoid all overlap/cropping */
@media (max-width: 900px) {
  html, body {
    min-height: 100%;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 18px 18px 30px;
    overflow: hidden;
  }

  .header,
  .hero-copy,
  .experiment-card,
  .terminal,
  .loading,
  .services,
  .company,
  .footer {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .header {
    z-index: 20;
  }

  .hero-copy {
    padding-top: clamp(72px, 13vh, 120px);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.1vw, 62px);
    line-height: 1.55;
    letter-spacing: clamp(.04em, 1.1vw, .12em);
    white-space: normal;
  }

  .hero-copy p {
    max-width: min(100%, 620px);
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 1.9;
    letter-spacing: .045em;
  }

  .terminal {
    height: clamp(170px, 28vw, 220px);
  }

  .loading {
    width: min(100%, 230px) !important;
  }

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

  .service-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .service-card h2 {
    font-size: clamp(20px, 5.8vw, 36px);
    letter-spacing: .07em;
  }

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

  .side-copy {
    display: none;
  }
}

/* Phone: force controlled title breaks */
@media (max-width: 600px) {
  .hero {
    gap: 18px;
    padding: 16px 14px 28px;
  }

  .header {
    align-items: flex-start;
  }

  .brand-text {
    font-size: clamp(19px, 5.7vw, 24px);
    letter-spacing: .16em;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 5px;
    max-width: 46vw;
    font-size: 10px;
    line-height: 1.35;
  }

  .nav span {
    display: none;
  }

  .hero-copy {
    padding-top: clamp(58px, 12vh, 90px);
  }

  .hero-copy h1 {
    font-size: clamp(28px, 9.2vw, 42px);
    line-height: 1.55;
    letter-spacing: .035em;
  }

  .hero-copy p {
    font-size: 13.5px;
    line-height: 1.82;
    letter-spacing: .02em;
  }

  .terminal {
    height: 168px;
    padding: 16px;
  }

  .service-card {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .service-card h2 {
    font-size: clamp(19px, 6.8vw, 29px);
    letter-spacing: .045em;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 0 0 12px;
  }

  .company-row div:last-child {
    border-bottom: 0;
  }

  .bg-video {
    object-position: 53% center;
    transform: scale(1.04);
  }
}

/* Very small phone */
@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 26px;
    letter-spacing: .02em;
  }

  .hero-copy p {
    font-size: 12.5px;
  }

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

  .service-icon {
    display: none;
  }
}


/* =========================================================
   Service detail pages
   - index.html と同じ背景・フレーム・グラスパネルを踏襲
   - 縦スクロールで読ませる、コンテンツ主体のレイアウト
   ========================================================= */

.hero.service-detail {
  min-height: 100svh;
  padding: clamp(18px, 2.8vw, 38px) clamp(24px, 4.1vw, 56px) clamp(60px, 8vh, 96px);
  overflow: visible;
  display: block;
}

.service-detail .side-copy {
  top: auto;
  bottom: 18%;
}

.service-detail .side-copy-right {
  top: 22%;
  bottom: auto;
}

.service-detail-content {
  position: relative;
  z-index: 4;
  width: min(100%, 1040px);
  margin: clamp(68px, 9vh, 120px) auto 0;
  padding: 0 clamp(6px, 2vw, 24px) clamp(60px, 8vh, 96px);
  display: grid;
  gap: clamp(28px, 3.5vh, 44px);
}

.service-hero-block {
  display: grid;
  gap: clamp(14px, 1.6vh, 22px);
  padding: clamp(28px, 4vh, 48px) clamp(24px, 4vw, 48px) clamp(32px, 4.4vh, 54px);
}

.service-hero-block .service-hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(152, 88, 255, .45);
}

.service-hero-block h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.4;
  letter-spacing: .18em;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 255, 255, .16);
}

.service-hero-block .service-hero-tagline {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: .14em;
  font-weight: 700;
}

.service-hero-block .service-hero-lead {
  margin: clamp(10px, 1.2vh, 18px) 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.95;
  letter-spacing: .08em;
  font-weight: 500;
}

.service-block {
  position: relative;
  padding: clamp(28px, 3.6vh, 42px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: clamp(120px, 18%, 180px) 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.service-block-head {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 4px;
}

.service-block-head small {
  display: block;
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
}

.service-block-head h2 {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 21px);
  letter-spacing: .08em;
  line-height: 1.55;
}

.service-block-body {
  display: grid;
  gap: clamp(14px, 2vh, 20px);
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.95;
  letter-spacing: .07em;
}

.service-block-body p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.feature-item {
  position: relative;
  padding: clamp(18px, 2.4vh, 24px) clamp(18px, 2vw, 22px);
  border: 1px solid var(--line-soft);
  background: rgba(4, 6, 16, .36);
}

.feature-item .feature-num {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
}

.feature-item h3 {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.15vw, 18px);
  letter-spacing: .1em;
  line-height: 1.55;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.85;
  letter-spacing: .06em;
}

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

.service-list li {
  position: relative;
  padding: 12px 14px 12px 28px;
  border-left: 1px solid rgba(152, 88, 255, .42);
  background: linear-gradient(90deg, rgba(152, 88, 255, .06), transparent 70%);
  font-size: clamp(13.5px, 1.02vw, 16px);
  letter-spacing: .07em;
  line-height: 1.75;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid var(--cyan);
  background: rgba(101, 255, 245, .2);
  box-shadow: 0 0 10px rgba(101, 255, 245, .55);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
  display: grid;
  gap: 14px;
}

.flow-list li {
  counter-increment: flow;
  position: relative;
  padding: 16px 18px 16px 70px;
  border: 1px solid var(--line-soft);
  background: rgba(4, 6, 16, .32);
  font-size: clamp(13.5px, 1.02vw, 16px);
  letter-spacing: .07em;
  line-height: 1.7;
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
  letter-spacing: .1em;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(152, 88, 255, .55);
}

.flow-list li strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(14px, 1.08vw, 17px);
  letter-spacing: .1em;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(4, 6, 16, .42);
  color: rgba(255, 255, 255, .88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  letter-spacing: .12em;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid rgba(105, 255, 245, .55);
  background: rgba(4, 6, 16, .5);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cta-btn:hover {
  background: rgba(101, 255, 245, .12);
  box-shadow: 0 0 18px rgba(101, 255, 245, .35);
  transform: translateY(-1px);
}

.cta-btn .arrow-inline {
  display: inline-block;
  transition: transform .2s ease;
}

.cta-btn:hover .arrow-inline {
  transform: translateX(4px);
}

.cta-note {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  letter-spacing: .08em;
}

.back-nav {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.back-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, .78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  letter-spacing: .18em;
  transition: color .2s ease;
}

.back-nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(105, 255, 245, .55);
}

.service-detail .footer {
  position: relative;
  z-index: 5;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: clamp(12px, 2vh, 20px);
  padding: 0 clamp(8px, 2vw, 24px);
  justify-content: center;
  text-align: center;
}

.legal-table {
  margin: 0;
  display: grid;
  gap: 14px;
}

.legal-table > div {
  display: grid;
  grid-template-columns: clamp(140px, 26%, 220px) 1fr;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  background: rgba(4, 6, 16, .32);
}

.legal-table dt {
  margin: 0;
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  line-height: 1.55;
  padding-top: 3px;
}

.legal-table dd {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(13.5px, 1.02vw, 15.5px);
  line-height: 1.85;
  letter-spacing: .06em;
}

.legal-ordered {
  margin: 0;
  padding-left: 1.4em;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(13.5px, 1.02vw, 15.5px);
  line-height: 1.9;
  letter-spacing: .06em;
}

.legal-ordered li::marker {
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
}

.legal-meta {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .16em;
}

.legal-meta span {
  display: inline-block;
  margin-right: 18px;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: clamp(20px, 2.6vh, 28px);
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 28px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row > label {
  color: rgba(255, 255, 255, .82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
}

.form-required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 120, 140, .55);
  color: #ff95a8;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 700;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(4, 6, 16, .52);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: .04em;
  line-height: 1.65;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.8;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .72) 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 15px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-row select option {
  background: #02030a;
  color: #fff;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, .35);
  letter-spacing: .04em;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(101, 255, 245, .7);
  background-color: rgba(4, 6, 16, .72);
  box-shadow: 0 0 0 3px rgba(101, 255, 245, .14);
}

.form-row input:invalid:not(:placeholder-shown),
.form-row textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 120, 140, .5);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  background: rgba(4, 6, 16, .32);
}

.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(4, 6, 16, .6);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  position: relative;
}

.form-consent input[type="checkbox"]:checked {
  border-color: rgba(101, 255, 245, .7);
  background: rgba(101, 255, 245, .2);
  box-shadow: 0 0 10px rgba(101, 255, 245, .35);
}

.form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #65fff5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(101, 255, 245, .6);
  outline-offset: 2px;
}

.form-consent label {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(13.5px, 1vw, 15px);
  letter-spacing: .05em;
  line-height: 1.7;
}

.form-consent a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(101, 255, 245, .5);
  text-underline-offset: 3px;
}

.form-consent a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(101, 255, 245, .5);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

button.cta-btn {
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cta-btn-submit {
  padding: 16px 32px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.7;
}

.form-status {
  padding: 14px 18px;
  border: 1px solid rgba(101, 255, 245, .4);
  background: rgba(101, 255, 245, .08);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  letter-spacing: .06em;
  line-height: 1.7;
}

.form-status.is-hidden {
  display: none;
}

.form-status.is-error {
  border-color: rgba(255, 120, 140, .5);
  background: rgba(255, 120, 140, .08);
}

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

button.cta-btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero.service-detail {
    padding: 18px 18px 40px;
    display: block;
  }

  .service-detail-content {
    width: 100%;
    margin-top: clamp(50px, 8vh, 80px);
    padding: 0 4px 40px;
    gap: 22px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-block-head {
    padding-top: 0;
  }

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

  .service-detail .footer {
    text-align: left;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .service-hero-block h1 {
    font-size: clamp(26px, 8.2vw, 38px);
    letter-spacing: .09em;
    line-height: 1.45;
  }

  .service-hero-block .service-hero-tagline {
    font-size: 13px;
    letter-spacing: .1em;
  }

  .service-hero-block .service-hero-lead {
    font-size: 13.5px;
    letter-spacing: .04em;
  }

  .service-block {
    padding: 24px 20px;
  }

  .flow-list li {
    padding: 14px 16px 14px 58px;
  }

  .flow-list li::before {
    left: 14px;
    font-size: 13px;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item dt {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-item dd {
  margin-left: 0;
  opacity: 0.85;
  line-height: 1.7;
}
