#contents .container-fluid.inner {
  max-width: 100%;
}
#footer {
  margin-top: 0;
}
/* ==========================================================================
   design.md トークン定義
   ========================================================================== */
:root {
  /* === Primary Teal === */
  --color-primary: #19b4a2;
  --color-primary-hover: #148f80;
  --color-primary-deep: #0b4a42;

  /* === Brand Gradient (ヒーロー・最終CTA帯のみ) === */
  --color-brand-teal: #19b4a2;
  --color-brand-mint: #4fd6be;
  --gradient-brand: linear-gradient(135deg, #19b4a2 0%, #4fd6be 100%);
  --gradient-brand-40: linear-gradient(135deg, rgba(25, 180, 162, 0.4) 0%, rgba(79, 214, 190, 0.4) 100%);

  /* === Accent Gradient (アクセントCTA専用) === */
  --color-accent-start: #ffae00;
  --color-accent-end: #f38721;
  --gradient-accent: linear-gradient(90deg, #ffae00 0%, #f38721 100%);
  --color-accent-hover: #e67a15;

  /* === Text === */
  --color-text: #12161e;
  --color-text-mute: #3d454d;
  --color-text-on-brand: #ffffff;
  --color-text-on-brand-mute: rgba(255, 255, 255, 0.85);

  /* === Neutrals === */
  --color-bg: #ffffff;
  --color-bg-soft: #f5f8fa;
  --color-bg-cool: #e3eff7;
  --color-border: #dce8e5;

  /* === Functional === */
  --color-success: #2fa88c;
  --color-warning: #d97706;
  --color-danger: #e0524f;

  /* === Product Type Colors (製品・プラン比較専用の例外カラー) === */
  --color-type-u: #f0972e;
  --color-type-u-soft: #fdf1e2;
  --color-type-u-plus: #ef6f83;
  --color-type-u-plus-soft: #fce9ec;
  --color-type-s: #9384ee;
  --color-type-s-soft: #ecebfc;
  --color-type-p: var(--color-primary);
  --color-type-p-soft: var(--color-bg-cool);

  /* === Shadows === */
  --shadow-card:
    0 3px 10px rgba(25, 180, 162, 0.14),
    0 20px 44px rgba(79, 214, 190, 0.10);
  --shadow-card-strong:
    0 6px 16px rgba(25, 180, 162, 0.22),
    0 32px 64px rgba(79, 214, 190, 0.16);

  /* === Fonts === */
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  --font-en: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-serif-jp: 'Noto Serif JP', 'ヒラギノ明朝 ProN', serif;

  /* === Type scale === */
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-hero: 3.5rem;

  /* === Container / Spacing === */
  --container-max: 1120px;
  --container-narrow: 800px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* === Radius === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* === Motion (design.md §11) === */
  --motion-duration: 0.6s;
  --motion-duration-stagger: 0.08s;
  --motion-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-distance: 24px;

  /* === Button hover motion (design.md §11.2) === */
  --button-motion-duration: 0.2s;
  --button-motion-easing: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html:not(#header, #footer) { font-size: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px) {
#header, #footer { font-size: 16px; }
}
#footer .snsContainer img{
display: inline-block;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
@media only screen and (min-width: 768px) {
    a:hover, a:hover img {
        opacity: 1.0;
    }
}
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--color-brand-mint);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.l-container--narrow { max-width: var(--container-narrow); }
.p-notes__container { max-width: calc(var(--container-narrow) + 160px); }

.l-section { padding: var(--space-12) 0; }
.l-section--sm { padding: var(--space-8) 0; }
.l-section--white { background: var(--color-bg); }
.l-section--soft { background: var(--color-bg-soft); }
.l-section--cool { background: var(--color-bg-cool); }

/* ==========================================================================
   Section head (日英併記)
   ========================================================================== */
.c-section-head { margin-bottom: var(--space-6); }
.c-section-head--center { text-align: center; }

.c-section-head__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.c-section-head__eyebrow--on-brand { color: var(--color-text-on-brand-mute); }

.c-section-head__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
}

.c-section-head__lead {
  margin-top: var(--space-2);
  color: var(--color-text-mute);
  font-size: var(--text-base);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.c-button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: var(--space-2) var(--space-4);
  padding-right: calc(var(--space-4) + 2rem);
  border-radius: 999px;
  font-size: var(--text-sm);
  line-height: 1.5;
  font-weight: 500;
  min-width: 240px;
  transition: color var(--button-motion-duration) var(--button-motion-easing);
}
/* 法人見積り・お問い合わせ / すぐにサイトから申し込む 用: 両端8pxずつ広げる */
.c-button--cta {
  padding-left: calc(var(--space-4) + 8px);
  padding-right: calc(var(--space-4) + 2rem + 8px);
}
.c-button strong { font-size: var(--text-base); font-weight: 700; }

/* スライド塗りつぶし(design.md §11.2) */
.c-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--button-hover-fill, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.c-button:hover::after { transform: scaleX(1); }

.c-button__arrow {
  position: absolute;
  right: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
}

/* プライマリ相当(白背景・ティール文字。ブランドグラデ上で使用) */
.c-button--white {
  --button-hover-fill: var(--color-bg-cool);
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}
@media screen and (min-width: 768px) {
a.c-button--white:hover{
  color: var(--color-primary);
}
}
.c-button--white .c-button__arrow { background: var(--color-primary); color: #ffffff; }

/* プライマリ(白背景上のセクションで使う塗りボタン) */
.c-button--primary {
  --button-hover-fill: var(--color-primary-hover);
  background: var(--color-primary);
  color: #ffffff;
}
@media screen and (min-width: 768px) {
a.c-button--primary:hover {
  color: #ffffff;
}
}
.c-button--primary .c-button__arrow { background: #ffffff; color: var(--color-primary); }

/* アクセントCTA(オレンジグラデ) */
.c-button--accent {
  --button-hover-fill: var(--color-accent-hover);
  background: var(--gradient-accent);
  color: #ffffff;
}
@media screen and (min-width: 768px) {
a.c-button--accent:hover{
  color:#FFF;
}
}
.c-button--accent .c-button__arrow { background: #ffffff; color: var(--color-accent-end); }

/* セカンダリ(白背景上のカード内ボタン等) */
.c-button--secondary {
  --button-hover-fill: var(--color-border);
  min-width: 0;
  padding: var(--space-1) var(--space-3);
  padding-right: var(--space-8);
  background: var(--color-bg-cool);
  color: var(--color-primary);
  font-weight: 700;
}
.c-button--secondary .c-button__arrow {
  right: 4px;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: var(--text-sm);
}

/* アウトライン(白地+グレー枠。カード内「詳しく見る」等の標準ボタン) */
.c-button--outline {
  --button-hover-fill: var(--color-text);
  min-width: 0;
  background: #ffffff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-weight: 700;
}
.c-button--outline:hover { color: #ffffff; }

/* アウトラインライト(ヘッダー小ボタン用。プライマリ帯の上で使用) */
.c-button--outline-light {
  --button-hover-fill: rgba(255,255,255,0.9);
  min-width: 0;
  padding: 6px var(--space-2);
  padding-right: var(--space-2);
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.5);
  font-weight: 500;
}
.c-button--outline-light .c-button__arrow { display: none; }
.c-button--outline-light:hover { color: var(--color-primary); }

/* ゴースト(ブランドグラデ上・白枠線) */
.c-button--ghost {
  --button-hover-fill: #ffffff;
  min-width: 0;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 700;
}
.c-button--ghost:hover { color: var(--color-primary); }
.c-button--ghost .c-button__arrow { background: rgba(255,255,255,0.25); color: #ffffff; }

.c-button--sm {
  min-width: 0;
  font-size: var(--text-xs);
  padding: 6px var(--space-3);
}
.c-button--sm.c-button--accent { padding-right: var(--space-3); }
.c-button--sm .c-button__arrow { display: none; }

/* ==========================================================================
   Link button (テキストリンク+丸矢印) — design.md §5
   ========================================================================== */
.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
}
.c-link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1.5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.c-link-arrow:hover {
  color: var(--color-primary);
}
.c-link-arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.c-link-arrow__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: var(--text-sm);
  flex-shrink: 0;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.c-link-arrow:hover .c-link-arrow__circle {
  transform: translateX(4px);
}

/* カード全体へのホバーでも、内包するc-link-arrowを連動させる(design.md §11.3の拡張) */
.p-pickup__card:hover .c-link-arrow,
.p-cases__card:hover .c-link-arrow,
.p-exhibition__card:hover .c-link-arrow {
  color: var(--color-primary);
}
.p-pickup__card:hover .c-link-arrow::after,
.p-cases__card:hover .c-link-arrow::after,
.p-exhibition__card:hover .c-link-arrow::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.p-pickup__card:hover .c-link-arrow__circle,
.p-cases__card:hover .c-link-arrow__circle,
.p-exhibition__card:hover .c-link-arrow__circle {
  transform: translateX(4px);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.p-hero {
  background: #ffffff;
  padding: 24px 0 56px;
  position: relative;
  overflow: hidden;
}

/* レイヤー1: 右いっぱいまで表示する斜めの背景画像(画面右端に固定) */
.p-hero__bg {
  display: none; /* モバイルでは非表示。デスクトップから2層構成に切り替える */
}
.p-hero__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
}

.p-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-hero__proof-badge {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto var(--space-3);
  display: block;
}

.p-hero__title {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.35;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

.p-hero__scale {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.p-hero__scale-num {
  font-family: var(--font-en);
  font-size: 2.2em;
  color: var(--color-primary);
  vertical-align: -0.08em;
  margin: 0 2px;
}

.p-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* ヒーロー専用ボタン(白地アウトライン / オレンジ塗り) */
.p-hero__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  max-width: 340px;
  padding: var(--space-2) calc(var(--space-4) + 1.5rem) var(--space-2) var(--space-4);
  border-radius: 999px;
  font-size: var(--text-sm);
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  transition: color var(--button-motion-duration) var(--button-motion-easing);
}
.p-hero__btn strong { font-size: var(--text-base); font-weight: 700; }
.p-hero__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.p-hero__btn:hover::after { transform: scaleX(1); }
.p-hero__btn-arrow {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-lg);
}

.p-hero__btn--outline {
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.p-hero__btn--outline::after { background: var(--color-bg-cool); }

.p-hero__btn--solid {
  background: var(--gradient-accent);
  color: #ffffff;
}
.p-hero__btn--solid::after { background: var(--color-accent-hover); }

/* レイヤー2: 手前のデバイスモックアップ(画面幅に応じて位置調整) */
.p-hero__devices { position: relative; max-width: 480px; margin: 0 auto; }
.p-hero__devices-img { width: 100%; display: block; }
.p-hero__devices-badge {
  position: absolute;
  right: -8px;
  bottom: 12%;
  background: var(--gradient-brand);
  color: #ffffff;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: var(--text-sm);
  text-align: center;
  line-height: 1.4;
  padding: var(--space-2);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-strong);
}

/* ==========================================================================
   Hero buttons stack (ヒーロー/フィーチャー内に移設したCTAボタン)
   ========================================================================== */
.p-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  max-width: 420px;
  margin-top: var(--space-4);
}
.p-hero-buttons .c-button { width: 100%; text-align: left; align-items: flex-start; }
.p-hero-buttons .c-button--white { border: 2px solid var(--color-primary); }

.p-hero-note-text {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: var(--space-3);
}
.p-hero-note-text--center {
  text-align: center;
  margin-top: 0;
  margin-bottom: var(--space-4);
}
.p-hero-desc-text {
  max-width: 720px;
  margin: 0 auto var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.8;
}

/* ==========================================================================
   Trust strip (badges / seals)
   ========================================================================== */
.p-trust { padding-top: var(--space-6); padding-bottom: var(--space-4); }

.p-trust__laurels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.p-trust__laurel {
  position: relative;
  display: block;
}
.p-trust__laurel-img { display: block; width: 100%; }
.p-trust__laurel-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 22%;
  font-family: var(--font-serif-jp);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(250deg, #564A3C 48.17%, #B7A47C 59.51%, #3D2C16 65.3%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-trust__laurel-text--sm { font-size: 22px; }
.p-trust__laurel-text--md { font-size: 26px; }

.p-trust__seals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  max-width: 520px;
  margin: 0 auto;
}
.p-trust__seal { position: relative; display: block; }
.p-trust__seal-img { display: block; width: 100%; }
.p-trust__seal-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20%;
  font-family: var(--font-serif-jp);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
.p-trust__seal-text--gold {
  background: linear-gradient(134deg, #EEE4A9 25.79%, #B7A47C 52.85%, #EEE4A9 83.7%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-trust__seal-text--lg { font-size: 27px; }
.p-trust__seal-text--md { font-size: 25px; }

/* ==========================================================================
   Logos
   ========================================================================== */
.p-logos { padding-top: var(--space-6); }
.p-logos__lead {
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: var(--space-6);
}
.p-logos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4) var(--space-3);
  align-items: center;
  justify-items: center;
}
.p-logos__grid img {
  max-height: 48px;
  max-width: 156px;
  object-fit: contain;
}

/* ==========================================================================
   Scene
   ========================================================================== */
.p-scene__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6) var(--space-4);
}
/* index.htmlのカードグリッド版は、タブ切り替え版(1024px以上で左右分割)の
   レイアウトを継承させず、常に画像上/本文下のスタック表示に固定する */
.p-scene__grid .p-scene__panel-inner { grid-template-columns: 1fr; }
.p-scene__grid .p-scene__panel-img-wrap { height: auto; }
.p-scene__grid .p-scene__panel-img { height: 220px; }
.p-scene__grid .p-scene__panel-body { display: block; }

.p-scene__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.p-scene__tab {
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-mute);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-2) var(--space-4);
  cursor: pointer;
  transition: background var(--button-motion-duration) var(--button-motion-easing),
              color var(--button-motion-duration) var(--button-motion-easing),
              border-color var(--button-motion-duration) var(--button-motion-easing);
}
.p-scene__tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.p-scene__tab[aria-selected="true"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.p-scene__panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.p-scene__panel-img-wrap { overflow: hidden; }
.p-scene__panel-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.p-scene__panel-inner:hover .p-scene__panel-img { transform: scale(1.06); }
.p-scene__panel-body { padding: var(--space-6) var(--space-4); }

.p-scene__card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.p-scene__card-points { margin-bottom: var(--space-3); }
.p-scene__card-points li {
  position: relative;
  padding-left: 1.1em;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  margin-bottom: 4px;
}
.p-scene__card-points li strong {
  color: var(--color-text);
  font-weight: 700;
}
.p-scene__card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.p-scene__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-3);
}
.p-scene__card-tags li {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  background: var(--color-bg-soft);
  border-radius: 999px;
  padding: 3px 10px;
}
/* カード全体ホバーでc-link-arrowも連動(design.md §11.3) */
.p-scene__panel-inner:hover .c-link-arrow { color: var(--color-primary); }
.p-scene__panel-inner:hover .c-link-arrow::after { transform: scaleX(1); transform-origin: left center; }
.p-scene__panel-inner:hover .c-link-arrow__circle { transform: translateX(4px); }

/* ==========================================================================
   Final CTA (Contact)
   ========================================================================== */
.p-final-cta {
  background-image: var(--gradient-brand-40), url('../img/biz_common/contact-bg.webp');
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  text-align: center;
  position: relative;
}
#contact.p-final-cta { padding: 56px 0; }
.p-final-cta__inner,
.p-final-cta > .l-container.u-reveal { position: relative; z-index: 1; }
.p-final-cta__title {
  color: var(--color-text-on-brand);
  font-size: var(--text-2xl);
  font-weight: 900;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 18px rgba(11, 74, 66, 0.18);
  margin-bottom: var(--space-3);
}
.p-final-cta__lead {
  color: var(--color-text-on-brand-mute);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.p-final-cta__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1) var(--space-3);
  color: var(--color-text-on-brand-mute);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-6);
}
.p-final-cta__features li:not(:last-child)::after {
  content: "｜";
  margin-left: var(--space-3);
  color: rgba(255,255,255,0.5);
}
.p-final-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.p-final-cta__buttons .c-button { text-align: left; align-items: flex-start; }

/* 通常行っていないサービスも柔軟に対応します(コンパクト版) */
.p-final-cta__extra {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-strong);
  padding: var(--space-8) var(--space-6);
  margin-top: var(--space-6);
  text-align: left;
}
.p-final-cta__extra-head {
  text-align: center;
  margin-bottom: var(--space-4);
}
.p-final-cta__extra-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.p-final-cta__extra-note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-top: 2px;
}

/* 通常行っていないサービスも柔軟に対応します(アイコングリッド版) */
.p-final-cta__extra-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
}
.p-final-cta__extra-box + .p-final-cta__extra-box { margin-top: var(--space-4); }

.p-final-cta__extra-box-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.p-final-cta__extra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}
.p-final-cta__extra-box-sub {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.p-final-cta__request-grid,
.p-final-cta__docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4) var(--space-3);
}
.p-final-cta__request-grid li,
.p-final-cta__docs-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-final-cta__request-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.p-final-cta__request-icon svg { width: 100%; height: 100%; }
.p-final-cta__request-grid li span:last-child,
.p-final-cta__docs-grid li span:last-child {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}


/* ==========================================================================
   Pick up
   ========================================================================== */
.p-pickup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.p-pickup__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.p-pickup__card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.p-pickup__card:hover .p-pickup__card-img { transform: scale(1.08); }
.p-pickup__card-body { padding: var(--space-4); }
.p-pickup__card-tag {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: 4px;
  padding-left: 10px;
  border-left: 3px solid var(--color-primary);
}
.p-pickup__card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.p-pickup__card-checks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-2);
  margin-bottom: var(--space-3);
}
.p-pickup__card-checks li {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  padding-left: 1.2em;
  position: relative;
}
.p-pickup__card-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ==========================================================================
   App promo (GPSアプリレンタル)
   ========================================================================== */
.p-app-promo__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}
.p-app-promo__head { margin-bottom: 0; text-align: center; }
.p-app-promo__banner {
  display: block;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.p-app-promo__banner-img {
  display: block;
  width: 100%;
  box-shadow: var(--shadow-card);
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.p-app-promo__banner:hover .p-app-promo__banner-img { transform: scale(1.04); }

/* ==========================================================================
   Strengths (6つの理由)
   ========================================================================== */
.p-strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8) var(--space-3);
  justify-items: center;
}
.p-strengths__item {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.p-strengths__label {
  position: absolute;
  top: 0;
  left: var(--space-3);
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  z-index: 3;
}
.p-strengths__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  object-fit: contain;
  z-index: 2;
}
.p-strengths__card {
  margin-top: 130px;
  min-height: 210px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-4) 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.p-strengths__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.p-strengths__metric {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
}
.p-strengths__metric--text { line-height: 1.4; }
.p-strengths__metric-number {
  font-family: var(--font-en);
  font-size: 1.7em;
  color: var(--color-primary);
  vertical-align: -0.06em;
}
.p-strengths__caption {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-top: var(--space-1);
}

/* ==========================================================================
   Checklist (実際に使ってみてよかったところ)
   ========================================================================== */
.p-checklist__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}
.p-checklist__visual-img { display: block; width: 100%; }
.p-checklist__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.p-checklist__list li {
  position: relative;
  padding-left: 1.6em;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-checklist__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.p-checklist__etc { color: var(--color-text-mute); margin-left: 6px; font-size: var(--text-sm); }

/* ==========================================================================
   Video (使い方動画)
   ========================================================================== */
.p-video__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  text-align: center;
}
.p-video__card-label {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.p-video__youtube {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  padding-top: 56.5%;
  border-radius: 20px;
  overflow: hidden;
}
.p-video__youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
/* ==========================================================================
   CTA row (repeat)
   ========================================================================== */
.p-cta-row__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.p-cta-row__inner .c-button { text-align: left; }

/* ==========================================================================
   Voice (お客様の声)
   ========================================================================== */
.p-voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.p-voice__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding-bottom: var(--space-3);
}
.p-voice__photo-wrap { position: relative; margin-bottom: var(--space-4); }
.p-voice__photo { width: 100%; height: 160px; object-fit: cover; }
.p-voice__avatar {
  position: absolute;
  left: var(--space-3);
  bottom: -24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.p-voice__quote {
  padding: 0 var(--space-3);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-voice__body {
  padding: 0 var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  margin-bottom: var(--space-2);
}
.p-voice__highlight {
  color: var(--color-primary);
  font-weight: 700;
}
.p-voice__attribution {
  padding: 0 var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: var(--space-2);
}

/* ==========================================================================
   Cases (法人活用事例)
   ========================================================================== */
.p-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.p-cases__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* 写真(拡大アニメーションがロゴバーに干渉しないよう専用ラッパーでクリップ) */
.p-cases__card-photo-wrap {
  overflow: hidden;
}
.p-cases__card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.p-cases__card:hover .p-cases__card-photo { transform: scale(1.08); }

/* ロゴバー(写真直下、白背景で中央寄せ) */
.p-cases__card-logobar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.p-cases__card-logobar-mark { max-height: 56px; max-width: 240px; object-fit: contain; }
.p-cases__card-logobar-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.p-cases__card-body { padding: var(--space-4); }

/* バッジ + 施設名 + アバター */
.p-cases__card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.p-cases__card-badge {
  display: inline-block;
  background: var(--color-text);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  margin-bottom: 6px;
}
.p-cases__card-name {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
}
.p-cases__card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.p-cases__card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

/* Type U / 台数 / 日数のチップ */
.p-cases__card-stats {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-2);
}
.p-cases__card-stats li {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
}

/* Q&A ボックス */
.p-cases__card-qa {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin-bottom: var(--space-3);
}
.p-cases__card-q {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-1);
  border-bottom: 1px solid var(--color-border);
}
.p-cases__card-a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
}

/* ==========================================================================
   Outline circle button(白地+グレー枠+黒丸矢印) — design.md §5
   事例カードの「法人導入実績を詳しくみる」、管理画面/利用履歴セクションの
   ナビゲーションリンク等、ページ内の副次的な導線に使う共通コンポーネント
   ========================================================================== */
.c-btn-outline-circle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--button-motion-duration) var(--button-motion-easing),
              border-color var(--button-motion-duration) var(--button-motion-easing);
}
.c-btn-outline-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.c-btn-outline-circle:hover {
  color: #ffffff;
  border-color: var(--color-text);
}
.c-btn-outline-circle:hover::after {
  transform: scaleX(1);
}
.c-btn-outline-circle__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-text);
  color: #ffffff;
  font-size: var(--text-sm);
  flex-shrink: 0;
  transition: background var(--button-motion-duration) var(--button-motion-easing);
}
.c-btn-outline-circle:hover .c-btn-outline-circle__arrow {
  background: #ffffff;
  color: var(--color-text);
}

/* カード幅いっぱいに広げるモディファイア(事例カード内など) */
.c-btn-outline-circle--block { width: 100%; }

.p-cases__more { text-align: center; margin-top: var(--space-6); }

/* ==========================================================================
   Admin dashboard (管理画面イメージ)
   ========================================================================== */
.p-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.p-dashboard__card {
  position: relative;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.p-dashboard__card-img { width: 100%; border-radius: var(--radius-md); }
.p-dashboard__badge {
  position: absolute;
  top: -27px;
  right: 4px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #ffffff;
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card-strong);
}
.p-dashboard__note {
  text-align: center;
  color: var(--color-text-mute);
  margin-bottom: var(--space-4);
}
.p-dashboard__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* ==========================================================================
   Location history (TRE GPS 利用履歴イメージ)
   ========================================================================== */
.p-history__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.p-history__card-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-3);
}
.p-history__card-eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.p-history__card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-history__card-note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  line-height: 1.7;
}
.p-history__more { text-align: center; }

/* ==========================================================================
   Product comparison (GPS端末紹介) — design.md §5 プロダクト比較カード
   ========================================================================== */
.p-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.p-products__card {
  --card-color: var(--color-primary);
  --card-color-soft: var(--color-bg-cool);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-products__card--u        { --card-color: var(--color-type-u);      --card-color-soft: var(--color-type-u-soft); }
.p-products__card--u-plus   { --card-color: var(--color-type-u-plus); --card-color-soft: var(--color-type-u-plus-soft); }
.p-products__card--s        { --card-color: var(--color-type-s);      --card-color-soft: var(--color-type-s-soft); }
.p-products__card--p        { --card-color: var(--color-type-p);      --card-color-soft: var(--color-type-p-soft); }

.p-products__card-tag {
  background: var(--card-color-soft);
  color: var(--card-color);
  font-weight: 700;
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-2);
}

.p-products__card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--card-color-soft);
  margin: var(--space-4) auto var(--space-3);
}
.p-products__card-media-img { max-width: 150px; max-height: 150px; object-fit: contain; }

.p-products__card-name {
  text-align: center;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}
.p-products__card-badge {
  align-self: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--card-color);
  background: var(--card-color-soft);
  border-radius: 999px;
  padding: 0.3em 1em;
  margin-top: 4px;
}
.p-products__card-badge--placeholder {
  background: transparent;
  color: transparent;
}

.p-products__card-highlight {
  text-align: center;
  padding: var(--space-3) var(--space-3) 0;
}
.p-products__card-highlight-label {
  font-size: 15px;
  color: var(--color-text-mute);
  margin-bottom: 2px;
}
.p-products__card-highlight-value {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 700;
  color: var(--card-color);
  line-height: 1.2;
}
.p-products__card-highlight-unit {
  font-family: var(--font-jp);
  font-size: 32px;
  margin-left: 2px;
}
.p-products__card-highlight-sub {
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  color: var(--card-color);
}

.p-products__card-specs {
  margin: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--color-border);
}
.p-products__card-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.p-products__card-spec-label { color: var(--color-text-mute); }
.p-products__card-spec-value { color: var(--color-text); font-weight: 700; }

.p-products__card-params-img {
  display: block;
  width: calc(100% - var(--space-4) * 2);
  height: auto;
  margin: var(--space-3) var(--space-4) 0;
}

.p-products__card-ratings {
  margin: var(--space-3) var(--space-4) 0;
}
.p-products__card-ratings li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 0;
}
.p-products__card-rating-label { font-size: var(--text-xs); color: var(--color-text-mute); }
.p-products__card-rating-dots {
  position: relative;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--color-border);
  overflow: hidden;
}
.p-products__card-rating-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--card-color);
  border-radius: inherit;
}
.p-products__card-rating-dots[data-score="1"]::after { width: 20%; }
.p-products__card-rating-dots[data-score="2"]::after { width: 40%; }
.p-products__card-rating-dots[data-score="3"]::after { width: 60%; }
.p-products__card-rating-dots[data-score="4"]::after { width: 80%; }
.p-products__card-rating-dots[data-score="5"]::after { width: 100%; }

.p-products__card-actions {
  margin-top: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* カード内「詳細はこちら」(タイプカラーのアウトラインボタン) */
.p-products__card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: #ffffff;
  border: 1px solid var(--card-color);
  border-radius: 999px;
  padding: 6px 6px 6px var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--card-color);
  transition: color var(--button-motion-duration) var(--button-motion-easing);
}
.p-products__card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.p-products__card-link:hover { color: #ffffff; }
.p-products__card-link:hover::after { transform: scaleX(1); }
.p-products__card-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card-color);
  color: #ffffff;
  font-size: var(--text-sm);
  flex-shrink: 0;
  transition: background var(--button-motion-duration) var(--button-motion-easing),
              color var(--button-motion-duration) var(--button-motion-easing);
}
.p-products__card-link:hover .p-products__card-link-arrow {
  background: #ffffff;
  color: var(--card-color);
}

/* カード内「Type ◯をレンタルする」(タイプカラーの塗りボタン) */
.p-products__card-cta {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  text-align: center;
  white-space: nowrap;
  background: var(--card-color);
  color: #ffffff;
  border-radius: 999px;
  padding: var(--space-2) 6px;
  font-size: var(--text-sm);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
a.p-products__card-cta:hover{
  color: #ffffff;
}
}
.p-products__card-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--card-color) 82%, black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.p-products__card-cta:hover::after { transform: scaleX(1); }

.p-products__note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: var(--space-8);
}

/* 装着イメージ */
.p-products__mount {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  margin-bottom: var(--space-6);
}
.p-products__mount-title {
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.p-products__mount-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.p-products__mount-card { margin: 0; }
.p-products__mount-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
}
.p-products__mount-caption {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.p-products__mount-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.p-products__mount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  background: var(--color-bg-soft);
  border-radius: 999px;
  padding: 3px 10px;
}
.p-products__mount-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.p-products__mount-tag--u      { color: var(--color-type-u); }
.p-products__mount-tag--u-plus { color: var(--color-type-u-plus); }
.p-products__mount-tag--s      { color: var(--color-type-s); }
.p-products__mount-tag--p      { color: var(--color-type-p); }

.p-products__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

/* ==========================================================================
   Flow (ご利用の流れ)
   ========================================================================== */
.p-flow__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.p-flow__step { width: 100%; text-align: center; max-width: 320px; }
.p-flow__step-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3を、aspect-ratio非対応環境でも確実に保つためのフォールバック実装 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.p-flow__step-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-flow__step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.p-flow__step-desc { font-size: var(--text-sm); color: var(--color-text-mute); }
.p-flow__step-highlight { color: var(--color-primary); font-weight: 700; }
.p-flow__arrow {
  display: none;
  color: #757575;
  font-size: 2rem;
  font-weight: 700;
}

/* ==========================================================================
   Rental period (レンタル期間の考え方)
   ========================================================================== */
.p-rental__timeline-image {
  margin: var(--space-6) 0 var(--space-3);
}
.p-rental__timeline-img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
}
.p-rental__caption {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: var(--space-6);
}

.p-rental__extra {
  background: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}
.p-rental__extra-img { width: 240px; flex-shrink: 0; }
.p-rental__extra-body { flex: 1; }
.p-rental__extra-tag {
  display: inline-block;
  background: var(--color-bg-cool);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  margin-bottom: var(--space-2);
}
.p-rental__extra-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-rental__extra-title-num { color: var(--color-primary); font-family: var(--font-en); font-size: 2em; }
.p-rental__extra-lead { font-weight: 700; margin-bottom: var(--space-1); }
.p-rental__extra-list { text-align: left; display: inline-block; }
.p-rental__extra-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  margin-bottom: 4px;
}
.p-rental__extra-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ==========================================================================
   Notes (以下、必ずご確認ください)
   ========================================================================== */
.p-notes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.p-notes__card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
}
.p-notes__card-icon { width: 112px; height: 112px; margin: 0 auto var(--space-2); }
.p-notes__card-title { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.p-notes__card-highlight { font-size: var(--text-base); font-weight: 700; }
.p-notes__card-highlight--danger { color: var(--color-danger); }
.p-notes__card-sub { font-size: var(--text-xs); color: var(--color-text-mute); }

.p-notes__text { margin-bottom: var(--space-6); }
.p-notes__text-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-notes__text-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }
.p-notes__text-list li {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}
.p-notes__text-list li::before { content: "・"; position: absolute; left: 0; }

.p-notes__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.p-notes__column {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.p-notes__column-title { text-align: center; font-weight: 700; margin-bottom: 4px; }
.p-notes__column-lead { text-align: center; font-size: var(--text-xs); color: var(--color-text-mute); margin-bottom: var(--space-3); }
.p-notes__icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--space-2);
}
.p-notes__icon-row li { text-align: center; width: 76px; flex-shrink: 0; }
.p-notes__icon-row img { width: 40px; height: 40px; object-fit: contain; margin: 0 auto 6px; display: block; }
.p-notes__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  color: var(--color-primary);
}
.p-notes__icon svg { width: 100%; height: 100%; }
.p-notes__icon-row span { font-size: var(--text-xs); color: var(--color-text-mute); line-height: 1.4; }

/* お支払い方法(3項目)は項目間の余白を広めに確保する */
.p-notes__icon-row--payment { gap: var(--space-4); }
.p-notes__icon-row--payment li { width: 104px; }

.p-notes__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

/* ==========================================================================
   Application (お申し込み)
   ========================================================================== */
.p-apply__panel {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.p-apply__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.p-apply__item {
  --card-color: var(--color-primary);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  text-align: center;
}
.p-apply__item--u      { --card-color: var(--color-type-u); }
.p-apply__item--u-plus { --card-color: var(--color-type-u-plus); }
.p-apply__item--s      { --card-color: var(--color-type-s); }
.p-apply__item--p      { --card-color: var(--color-type-p); }

.p-apply__thumb {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: var(--space-4);
  height: 184px;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-apply__thumb-img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
/* 商品サムネイルの拡大ホバー(design.md §11.3): サムネイル・CTAどちらにホバーしても拡大 */
.p-apply__item:hover .p-apply__thumb-img { transform: scale(1.12); }

.p-apply__plan {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: 4px;
}
.p-apply__price {
  font-family: var(--font-en);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--card-color);
  line-height: 1.2;
}
.p-apply__price-unit {
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  margin-left: 2px;
}
.p-apply__price-note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: var(--space-3);
}
.p-apply__cta {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  text-align: center;
  white-space: nowrap;
  background: var(--card-color);
  color: #ffffff;
  border-radius: 999px;
  padding: var(--space-2) var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  transition: color var(--button-motion-duration) var(--button-motion-easing);
}
.p-apply__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--card-color) 82%, black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
  z-index: -1;
}
.p-apply__cta:hover::after { transform: scaleX(1); }
@media screen and (min-width: 768px) {
a.p-apply__cta:hover{
  color: #ffffff;
}
}
.p-apply__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
}

/* ==========================================================================
   Optional services (便利なオプションサービス)
   ========================================================================== */
.p-optional__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.p-optional__card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.p-optional__top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.p-optional__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.p-optional__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}
.p-optional__more { text-align: center; }

/* ==========================================================================
   Exhibition (展示会出展情報)
   ========================================================================== */
.p-exhibition__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.p-exhibition__card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.p-exhibition__card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform var(--button-motion-duration) var(--button-motion-easing);
}
.p-exhibition__card:hover .p-exhibition__card-img { transform: scale(1.08); }
.p-exhibition__card-body { padding: var(--space-4); }
.p-exhibition__card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-exhibition__card-text {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   Motion — u-reveal (design.md §11)
   ========================================================================== */
/* デフォルト(非JS環境): 常に表示された状態 */
.u-reveal { opacity: 1; transform: none; }

/* JS実行後のみ、非表示の初期状態を有効化するフォールバック構造 */
.js-reveal-ready .u-reveal {
  opacity: 0;
  transform: translateY(var(--motion-distance));
  transition: opacity var(--motion-duration) var(--motion-easing),
              transform var(--motion-duration) var(--motion-easing);
  transition-delay: calc(var(--motion-duration-stagger) * var(--reveal-index, 0));
}
.js-reveal-ready .u-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .u-reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (min-width: 768px) {
  .p-app-promo__row { flex-direction: row; align-items: center; text-align: left; }
  .p-app-promo__head { text-align: left; flex: 1; }
  .p-app-promo__banner { max-width: 560px; flex-shrink: 0; }

  .p-trust__laurels { grid-template-columns: repeat(4, 1fr); }
  .p-trust__seals { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .p-logos__grid { grid-template-columns: repeat(4, 1fr); }
  .p-scene__grid { grid-template-columns: repeat(2, 1fr); }
  .p-pickup__grid { grid-template-columns: repeat(2, 1fr); }
  .p-strengths__grid { grid-template-columns: repeat(3, 1fr); }
  .p-checklist__inner { grid-template-columns: 1fr 1fr; }
  .p-rental__extra { flex-direction: row; align-items: center; text-align: left; gap: var(--space-6); }
  .p-rental__extra-tag,
  .p-rental__extra-list { text-align: left; }
  .p-cta-row__inner { flex-direction: row; justify-content: center; }
  .p-final-cta__request-grid { grid-template-columns: repeat(2, 1fr); }
  .p-final-cta__docs-grid { grid-template-columns: repeat(3, 1fr); }
  .p-voice__grid { grid-template-columns: repeat(3, 1fr); }
  .p-cases__grid { grid-template-columns: repeat(3, 1fr); }
  .p-dashboard__grid { grid-template-columns: repeat(2, 1fr); }
  .p-dashboard__buttons { flex-direction: row; justify-content: center; }
  .p-history__grid { grid-template-columns: repeat(2, 1fr); }
  .p-products__grid { grid-template-columns: repeat(2, 1fr); }
  .p-products__mount-grid { grid-template-columns: repeat(3, 1fr); }
  .p-products__buttons { flex-direction: row; justify-content: center; }
  .p-notes__grid { grid-template-columns: repeat(4, 1fr); }
  .p-notes__columns { grid-template-columns: repeat(2, 1fr); }
  .p-notes__buttons { flex-direction: row; justify-content: center; }
  .p-apply__grid { grid-template-columns: repeat(2, 1fr); }
  .p-optional__grid { grid-template-columns: repeat(2, 1fr); }
  .p-exhibition__grid { grid-template-columns: repeat(2, 1fr); }
  .l-footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .l-footer__legal { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ==========================================================================
   Responsive — desktop
   ========================================================================== */
@media (min-width: 1024px) {
  .l-header__row2-inner { gap: var(--space-6); }

  .p-scene__panel-inner { grid-template-columns: 3fr 2fr; align-items: stretch; }
  .p-scene__panel-img-wrap { height: 100%; }
  .p-scene__panel-img { height: 100%; }
  .p-scene__panel-body { display: flex; flex-direction: column; justify-content: center; }

  .p-hero { min-height: 560px; display: flex; align-items: center; }
  .p-hero__bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 58%;
    z-index: 0;
  }
  .p-hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
    align-items: center;
    width: 100%;
  }
  .p-hero__copy { max-width: 520px; }
  .p-hero__proof-badge { margin-left: 0; }
  .p-hero__title { font-size: 2.75rem; }
  .p-hero__scale { font-size: var(--text-xl); }
  .p-hero__cta { align-items: flex-start; }
  .p-hero__btn { max-width: none; }

  .p-hero__devices {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 55%;
    max-width: none;
    margin: 0;
  }

  .c-section-head__title { font-size: 40px; }

  .p-logos__grid { grid-template-columns: repeat(5, 1fr); gap: var(--space-6) var(--space-4); }

  .p-final-cta__title { font-size: var(--text-3xl); }
  .p-final-cta__buttons { flex-direction: row; }

  .p-strengths__grid { gap: var(--space-6) var(--space-4); }
  .p-checklist__inner { gap: var(--space-8); }

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

  .p-flow__grid { flex-direction: row; align-items: flex-start; justify-content: center; }
  .p-flow__arrow { display: block; align-self: center; margin-top: -40px; }

  .p-apply__grid { grid-template-columns: repeat(4, 1fr); }
  .p-optional__grid { grid-template-columns: repeat(3, 1fr); }

  .p-final-cta__request-grid { grid-template-columns: repeat(4, 1fr); }
}
