@charset "utf-8";

/*
 * ここいる HP — デザインシステム
 *
 * 夜の街を走るモビリティサービスとしての見え方をつくる。
 * 背景はダーク一色ではなく、セクションごとに微妙に明るさを変えて奥行きを出す。
 * ブランドカラー（ティール）は CTA・現在地・状態表示など「意味のある場所」だけに使う。
 */

/* ============================================================
   1. トークン
   ============================================================ */

:root {
  /* 面。数字が大きいほど手前（明るい） */
  --bg: #070a0f;
  --bg-1: #0b1017;
  --bg-2: #0e141d;
  --card: #101722;
  --card-2: #141c28;

  /* 文字 */
  --ink: #ffffff;
  --sub: #a7afbc;
  --mute: #6b7684;

  /* 罫線 */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* ブランド。元の #0f766e と同系で、暗い面でも読める明度に上げてある */
  --brand: #2dd4bf;
  --brand-2: #14b8a6;
  --brand-deep: #0f766e;
  --brand-ink: #04231f; /* ブランド色のベタ塗りに載せる文字 */
  --brand-glow: rgba(45, 212, 191, 0.16);

  /* 補助。多用しない */
  --sky: #60a5fa;
  --amber: #fbbf24;

  --radius-pill: 999px;
  --radius: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.28);

  --wrap: 1200px;
  --wrap-narrow: 680px;
  --header-h: 76px;

  /* セクション間の余白。PC で 120〜200px */
  --gap-section: clamp(88px, 11vw, 184px);

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Meiryo", system-ui, sans-serif;
  --font-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font: var(--font-jp);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   2. ベース
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: var(--brand);
}

p {
  margin: 0 0 1.2em;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--brand);
  color: var(--brand-ink);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--brand);
  color: var(--brand-ink);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   3. レイアウト
   ============================================================ */

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 40px, var(--wrap-narrow));
}

.section {
  padding-block: var(--gap-section);
  position: relative;
}

.section--tight {
  padding-block: clamp(48px, 6vw, 88px);
}

/* 面の切り替えで奥行きを出す */
.section--alt {
  background: var(--bg-1);
}

.section--deep {
  background: var(--bg-2);
}

/* セクションの上端に細い光の線を引く。境目が硬くならない */
.section--alt::before,
.section--deep::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09) 30%,
    rgba(255, 255, 255, 0.09) 70%,
    transparent
  );
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 760px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 56px);
  margin-top: 18px;
}

.section-head .lead {
  margin-top: 22px;
}

/* 英字の小ラベル */
.eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}

.lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--sub);
  line-height: 2;
  max-width: 640px;
}

.section-head--center .lead {
  margin-inline: auto;
}

.note {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.85;
}

.thin {
  display: block;
  font-weight: 400;
  font-size: 0.44em;
  color: var(--sub);
  letter-spacing: 0.01em;
  margin-top: 24px;
  line-height: 1.8;
}

/* ============================================================
   4. ボタン
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--primary {
  background: var(--brand);
  color: var(--brand-ink);
}

.btn--primary:hover {
  background: #4ee7d4;
  color: var(--brand-ink);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  transform: translateY(-2px);
}

/* 既存テンプレートが使っている別名。見た目は ghost に寄せる */
.btn--onDark,
.btn--sky {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--onDark:hover,
.btn--sky:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--lg {
  min-height: 58px;
  padding: 17px 34px;
  font-size: 16px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-row--center {
  justify-content: center;
}

/* ============================================================
   5. ヘッダー
   ============================================================ */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.site-header.is-stuck {
  background: rgba(7, 10, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.site-brand:hover {
  color: inherit;
}

.site-brand__mark {
  width: 32px;
  height: 32px;
  flex: none;
}

.site-brand__name {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ヘッダーではタグラインを出さない。情報量を減らす */
.site-header .site-brand__tag {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline-start: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--ink);
}

.header-actions .btn {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle span:not(.screen-reader-text)::before,
.nav-toggle span:not(.screen-reader-text)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: inherit;
}

.nav-toggle span:not(.screen-reader-text)::before {
  top: -6px;
}
.nav-toggle span:not(.screen-reader-text)::after {
  top: 6px;
}

.is-nav-open .nav-toggle span:not(.screen-reader-text) {
  background: transparent;
}
.is-nav-open .nav-toggle span:not(.screen-reader-text)::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--ink);
}
.is-nav-open .nav-toggle span:not(.screen-reader-text)::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--ink);
}

main {
  display: block;
}

/* ============================================================
   6. 装飾用の地図表現
   実在の地図データではなく、位置情報サービスであることを伝えるための抽象表現。
   ============================================================ */

.mapart {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mapart svg {
  width: 100%;
  height: 100%;
}

.mapart__road {
  stroke: rgba(255, 255, 255, 0.055);
  fill: none;
  stroke-width: 1;
}

.mapart__road--major {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 2;
}

.mapart__block {
  fill: rgba(255, 255, 255, 0.016);
}

/* 走行ルート */
.mapart__route {
  stroke: var(--brand);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.75;
  filter: drop-shadow(0 0 10px var(--brand-glow));
}

/* 現在地。ゆっくり脈打つ */
.mapart__ping {
  fill: var(--brand);
}

.mapart__pingRing {
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.5;
  transform-origin: center;
  transform-box: fill-box;
  animation: ping 3.4s var(--ease) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }
  70% {
    transform: scale(2.1);
    opacity: 0;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* 車両。ごくゆっくり数 px 動く */
.mapart__car {
  fill: rgba(255, 255, 255, 0.6);
  animation: drift 14s ease-in-out infinite alternate;
}

.mapart__car--b {
  animation-duration: 19s;
  animation-delay: -6s;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(7px, -5px);
  }
}

/* ヒーロー背景のフェード。地図を紙面の下へ沈める */
.mapart--fade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      110% 80% at 70% 15%,
      transparent 0%,
      var(--bg) 78%
    ),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .mapart__pingRing,
  .mapart__car {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   7. ヒーロー
   ============================================================ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 120px));
  padding-bottom: clamp(64px, 8vw, 120px);
  overflow: hidden;
}

.hero--home {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sub);
}

.hero__eyebrow svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}

.hero__eyebrow b {
  color: var(--brand);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-top: 28px;
}

.hero__lead {
  margin-top: 30px;
  max-width: 520px;
  color: var(--sub);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.05;
}

.hero__actions {
  margin-top: 40px;
}

/* 下層ページのヒーロー */
.hero--page {
  padding-top: calc(var(--header-h) + clamp(48px, 6vw, 88px));
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero--page h1 {
  font-size: clamp(32px, 4.6vw, 60px);
  margin-top: 20px;
}

.page-hero__crumbs {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin: 0;
}

.page-hero__crumbs a:hover {
  color: var(--brand);
}

/* ============================================================
   8. 端末モック（装飾）
   ============================================================ */

.device {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 300 / 620;
  margin-inline: auto;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(160deg, #232b39, #10151d 55%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.device__screen {
  position: relative;
  height: 100%;
  border-radius: 31px;
  overflow: hidden;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
}

.device__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: #05080c;
  z-index: 3;
}

/* ヒーローの端末は少しだけ奥行きをつける */
.device--tilt {
  transform: perspective(1600px) rotateY(-11deg) rotateX(3deg);
  max-width: 320px;
}

/* 端末の中に置く装飾地図 */
.device__map {
  position: relative;
  flex: 1;
  background: radial-gradient(120% 90% at 50% 20%, #131c27, #090d13);
}

.device__bar {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.92);
}

.device__label {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.device__value {
  font-size: 15px;
  font-weight: 700;
  margin-top: 3px;
}

.device__cta {
  margin-top: 12px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   9. 画像スロット（後から差し替える枠）
   ============================================================ */

.mslot {
  position: relative;
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  min-height: 180px;
  overflow: hidden;
}

.mslot--phone {
  aspect-ratio: 300 / 620;
  border-radius: 31px;
  min-height: 0;
  padding: 20px;
}

.mslot--wide {
  aspect-ratio: 16 / 10;
}

.mslot__id {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brand);
}

.mslot__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}

.mslot__meta {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mute);
}

.mslot__prompt {
  font-size: 11px;
  line-height: 1.75;
  color: var(--mute);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin: 0;
  max-height: 8.5em;
  overflow: auto;
}

.mslot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   10. フィーチャーバー（Hero 直下）
   ============================================================ */

.featurebar {
  border-block: 1px solid var(--line);
}

.featurebar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.featurebar__item {
  padding: clamp(28px, 3.2vw, 46px) clamp(18px, 2vw, 34px);
  border-inline-start: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featurebar__item:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}

.featurebar__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.featurebar__label {
  font-family: var(--font-en);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.featurebar__text {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.8;
}

/* ============================================================
   11. お客様 / 事業者 の 2 カラム
   ============================================================ */

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}

.duo__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.duo__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.duo__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
}

.duo__media > * {
  transition: transform 0.5s var(--ease);
}

.duo__card:hover .duo__media > * {
  transform: scale(1.02);
}

.duo__body {
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.duo__body h3 {
  font-size: clamp(21px, 2.2vw, 30px);
}

.duo__body p {
  color: var(--sub);
  font-size: 15px;
  margin: 0;
}

.duo__body .checklist {
  margin-block: 4px;
}

.duo__body .btn-row {
  margin-top: auto;
  padding-top: 12px;
}

/* ============================================================
   12. 特徴（Sticky Scroll）
   ============================================================ */

.sticky__grid {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.sticky__stage {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  display: grid;
}

/* ステージ内の各ビジュアルを重ね、表示中のものだけ見せる */
.sticky__vis {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.sticky__vis.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky__panel {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding-block: 40px;
  opacity: 0.32;
  transition: opacity 0.5s var(--ease);
}

.sticky__panel.is-active {
  opacity: 1;
}

.sticky__panel h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.3;
}

.sticky__panel p {
  color: var(--sub);
  margin: 0;
}

.sticky__index {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brand);
}

/* ============================================================
   13. アプリ紹介
   ============================================================ */

.appshow__head h2 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.18;
}

.appshow__phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 40px);
  margin-top: clamp(48px, 6vw, 88px);
}

.appstep {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appstep__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.appstep__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brand);
}

.appstep__label {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appstep__text {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
}

/* 中央の端末を少しだけ持ち上げる */
.appshow__phones > :nth-child(2) .mslot--phone,
.appshow__phones > :nth-child(2) .device {
  transform: translateY(-22px);
}

/* ============================================================
   14. 事業者向けダッシュボード
   ============================================================ */

.dash {
  position: relative;
}

.dash__frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 画面の一部を拡大して重ねるカード */
.dash__float {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 16px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(16, 23, 34, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.dash__float--a {
  left: -18px;
  bottom: 46px;
}

.dash__float--b {
  right: -18px;
  top: 52px;
}

.dash__floatLabel {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.dash__floatValue {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 4px;
}

.dash__floatValue span {
  font-size: 13px;
  color: var(--sub);
  margin-inline-start: 4px;
}

.dash__floatValue--ok {
  color: var(--brand);
}

/* ============================================================
   15. 対応エリア
   ============================================================ */

.areamap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.areamap__figure {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 100% at 50% 30%, #0f1620, #080b11);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.areamap__figure svg {
  width: 100%;
  height: 100%;
}

/* 対応エリアのポリゴンだけ光らせる */
.areamap__zone {
  fill: rgba(45, 212, 191, 0.12);
  stroke: var(--brand);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 16px var(--brand-glow));
}

.areamap__outline {
  fill: rgba(255, 255, 255, 0.028);
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.areamap__name {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.16em;
  fill: var(--sub);
  text-transform: uppercase;
}

.areamap__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 34px;
  list-style: none;
}

.areamap__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

.areamap__item:last-child {
  border-bottom: 1px solid var(--line);
}

.areamap__jp {
  font-size: 17px;
  font-weight: 700;
}

.areamap__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-inline-start: auto;
}

/* 旧マークアップ（下層ページ）用のチップ */
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area__chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--sub);
}

/* ============================================================
   16. お知らせ
   ============================================================ */

.newslist {
  list-style: none;
  border-top: 1px solid var(--line);
}

.newsrow a {
  display: grid;
  grid-template-columns: 120px 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.newsrow a:hover {
  color: var(--ink);
}

.newsrow time {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--mute);
}

.newsrow__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.newsrow__title {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.newsrow a:hover .newsrow__title {
  color: var(--brand);
}

.newsrow__arrow {
  color: var(--mute);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.newsrow a:hover .newsrow__arrow {
  transform: translateX(4px);
  color: var(--brand);
}

.newsrow__arrow svg {
  width: 18px;
  height: 18px;
}

/* 一覧ページの旧マークアップ */
.news-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.news-item a {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--mute);
  flex: none;
}

/* ============================================================
   17. 最終 CTA
   ============================================================ */

.finalcta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 11vw, 176px);
  background: linear-gradient(170deg, #0a1a1c 0%, var(--bg) 62%);
  text-align: center;
}

.finalcta::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 212, 191, 0.4),
    transparent
  );
}

.finalcta h2 {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.2;
}

.finalcta .lead {
  margin: 26px auto 0;
}

.finalcta .btn-row {
  margin-top: 42px;
}

.finalcta__alt {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--sub);
}

.finalcta__alt a {
  color: var(--brand);
  font-weight: 700;
}

/* ============================================================
   18. フッター
   ============================================================ */

.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding-block: clamp(64px, 8vw, 120px) 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.site-footer__brand .site-brand__name {
  font-size: 24px;
}

.site-footer__desc {
  margin-top: 18px;
  font-size: 14px;
  color: var(--sub);
  max-width: 260px;
  line-height: 1.95;
}

.site-footer h3 {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer li a {
  font-size: 14px;
  color: var(--sub);
}

.site-footer li a:hover {
  color: var(--ink);
}

.site-footer__bottom {
  margin-top: clamp(48px, 6vw, 88px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

/* ============================================================
   19. 汎用パーツ（下層ページで使う）
   ============================================================ */

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

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

.card {
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.card p {
  color: var(--sub);
  font-size: 14.5px;
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(45, 212, 191, 0.1);
  color: var(--brand);
  margin-bottom: 20px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

/* 旧テーマの色違いカード。ダークでは彩度差だけ残す */
.card--sky .card__icon {
  background: rgba(96, 165, 250, 0.1);
  color: var(--sky);
}

.card--amber .card__icon {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.checklist li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.8;
}

.checklist li b {
  color: var(--ink);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.badge {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sub);
}

/* 手順 */
.steps {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

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

.step {
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.step__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
}

/* 料金の式 */
.fee-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.fee-formula__item {
  flex: 1 1 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fee-formula__item small {
  font-size: 12px;
  font-weight: 400;
  color: var(--mute);
}

.fee-formula__op {
  display: grid;
  place-items: center;
  color: var(--mute);
  font-size: 18px;
}

/* 表 */
.table-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td {
  padding: 17px 22px;
  text-align: start;
  vertical-align: top;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.8;
}

.table-card tr:first-child th,
.table-card tr:first-child td {
  border-top: 0;
}

.table-card th {
  width: 34%;
  font-weight: 600;
  color: var(--ink);
}

.table-card td {
  color: var(--sub);
}

.table-card td b {
  color: var(--ink);
}

/* 支払い方法 */
.pay-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.pay-card {
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.pay-card--pay {
  border-color: rgba(45, 212, 191, 0.3);
  background: linear-gradient(160deg, rgba(45, 212, 191, 0.07), var(--card) 60%);
}

.pay-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  margin-bottom: 14px;
}

.pay-card h3 svg {
  width: 21px;
  height: 21px;
  color: var(--brand);
}

.pay-card p {
  color: var(--sub);
  font-size: 14.5px;
}

.pay-card b {
  color: var(--ink);
}

/* 2 カラムの特集ブロック */
.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.feature h3 {
  font-size: clamp(21px, 2.4vw, 30px);
  margin-bottom: 16px;
}

.feature p {
  color: var(--sub);
}

/* 導入の流れ */
.flow {
  display: flex;
  flex-direction: column;
}

.flow__item {
  display: flex;
  gap: 22px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
}

.flow__item:last-child {
  border-bottom: 1px solid var(--line);
}

.flow__num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}

.flow__item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.flow__item p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 24px 44px 24px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s var(--ease);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--brand);
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--mute);
  border-bottom: 1.5px solid var(--mute);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq details > div {
  padding: 0 0 26px;
  color: var(--sub);
  font-size: 14.5px;
  line-height: 2;
}

/* 目次 */
.toc {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: clamp(22px, 2.4vw, 32px);
}

.toc h2 {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 16px;
}

.toc ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.toc a {
  font-size: 14px;
  color: var(--sub);
}

/* 問い合わせ窓口 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.contact-card {
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.contact-card h3 {
  font-size: 18px;
}

.contact-card dl {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card dt {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.contact-card dd {
  margin: 0 0 10px;
  font-size: 15px;
  word-break: break-all;
}

.contact-card dd a {
  color: var(--brand);
}

.form-card {
  margin-top: clamp(32px, 4vw, 56px);
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

/* ストアボタン */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  color: var(--sub);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.store-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--sub);
}

.store-btn svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.store-btn strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* 疑似 UI（配車卓などの装飾表現） */
.mock {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--bg-1);
  overflow: hidden;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.mock__title {
  margin-inline-start: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.mock__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--sub);
}

.mock__row strong {
  color: var(--ink);
}

.mock__pill {
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--sub);
}

.mock__pill--ok {
  background: rgba(45, 212, 191, 0.14);
  color: var(--brand);
}

.mock__map {
  position: relative;
  height: 150px;
  border-radius: var(--radius);
  background: radial-gradient(120% 100% at 40% 30%, #131c27, #0a0e14);
  border: 1px solid var(--line);
  overflow: hidden;
}

.mock__route {
  position: absolute;
  left: 18%;
  top: 62%;
  width: 58%;
  height: 2px;
  background: var(--brand);
  opacity: 0.7;
  transform: rotate(-24deg);
  border-radius: 2px;
}

.mock__pin {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.16);
}

.mock__pin--a {
  left: 17%;
  top: 60%;
}
.mock__pin--c {
  left: 72%;
  top: 33%;
}

.mock__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.mock__line--w60 {
  width: 60%;
}
.mock__line--w40 {
  width: 40%;
}

/* 記事本文・規約類 */
.entry-content {
  font-size: 16px;
  line-height: 2.05;
  color: var(--sub);
}

.entry-content h2 {
  font-size: clamp(21px, 2.2vw, 28px);
  color: var(--ink);
  margin: 2.4em 0 0.9em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}

.entry-content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.entry-content h3 {
  font-size: 18px;
  color: var(--ink);
  margin: 2.2em 0 0.8em;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4em;
  padding-inline-start: 1.5em;
}

.entry-content li {
  margin-bottom: 0.7em;
  line-height: 1.95;
}

.entry-content ol > li::marker {
  color: var(--brand);
  font-weight: 600;
}

.entry-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content strong {
  color: var(--ink);
}

/* ============================================================
   20. スクロールに合わせた表示
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ヒーローは読み込み直後に出す */
.hero__copy > * {
  animation: riseIn 0.9s var(--ease) both;
}

.hero__copy > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero__copy > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero__copy > *:nth-child(3) {
  animation-delay: 0.23s;
}
.hero__copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__visual {
  animation: deviceIn 1s var(--ease) 0.2s both;
}

@keyframes deviceIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy > *,
  .hero__visual {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   21. レスポンシブ
   スマートフォンは縮小版ではなく、専用の並びとして組む。
   ============================================================ */

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .device--tilt {
    transform: none;
  }

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

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

  /* Sticky をやめ、テキストとビジュアルを順に積む */
  .sticky__stage {
    position: static;
  }

  .sticky__vis {
    grid-area: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .sticky__panel {
    min-height: 0;
    opacity: 1;
    padding-block: 0;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 30px;
    background: rgba(7, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease),
      visibility 0.28s;
  }

  .is-nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu a {
    display: block;
    padding: 15px 4px;
    min-height: 48px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .header-actions {
    margin-top: 22px;
  }

  .header-actions .btn {
    width: 100%;
    min-height: 50px;
  }

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

  .featurebar__item {
    border-block-start: 1px solid var(--line);
  }

  .featurebar__item:nth-child(-n + 2) {
    border-block-start: 0;
  }

  .featurebar__item:nth-child(odd) {
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .duo,
  .grid--2,
  .grid--3,
  .grid--4,
  .pay-cards,
  .contact-cards,
  .feature,
  .steps--4,
  .appshow__phones {
    grid-template-columns: 1fr;
  }

  .appshow__phones > :nth-child(2) .mslot--phone,
  .appshow__phones > :nth-child(2) .device {
    transform: none;
  }

  .appshow__phones .mslot--phone,
  .appshow__phones .device {
    max-width: 280px;
    margin-inline: auto;
  }

  .newsrow a {
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    padding-block: 20px;
  }

  .newsrow time {
    grid-column: 1;
  }

  .newsrow__cat {
    grid-column: 1;
  }

  .newsrow__title {
    grid-column: 1 / -1;
  }

  .newsrow__arrow {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }

  .dash__float {
    position: static;
    margin-top: 14px;
    backdrop-filter: none;
  }

  .feature__media {
    order: -1;
  }

  .table-card th,
  .table-card td {
    display: block;
    width: auto;
  }

  .table-card td {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .wrap,
  .wrap--narrow {
    width: calc(100% - 32px);
  }

  .hero--home {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .featurebar__item {
    border-inline-start: 0;
    padding-inline: 0;
    border-block-start: 1px solid var(--line);
  }

  .featurebar__item:first-child {
    border-block-start: 0;
  }

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

  .fee-formula {
    flex-direction: column;
  }

  .fee-formula__op {
    padding-block: 2px;
  }

  .finalcta .btn-row .btn {
    width: 100%;
  }

  .toc ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   22. 画像スロットの入れ子調整
   端末やカードの中に入れたときに、枠が二重にならないようにする。
   ============================================================ */

.device__screen .mslot {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: radial-gradient(120% 90% at 50% 20%, #131c27, #090d13);
}

.duo__media .mslot,
.dash__frame .mslot,
.sticky__vis .mslot {
  border-radius: 0;
  border: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), transparent);
}

.sticky__vis .mslot {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.dash__frame .mslot {
  aspect-ratio: 16 / 10;
}

/* 特徴セクションのテキスト側の器 */
.sticky__rail {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1080px) {
  .sticky__grid {
    gap: 56px;
  }

  .sticky__rail {
    gap: 56px;
  }

  /* 画面が狭いときは、テキストのすぐ下にビジュアルを積む */
  .sticky__stage {
    gap: 56px;
  }
}
