/* ============================================================
   fleet.css
   車両管理用GPSレンタル ランディングページ - 追加スタイル

   このファイルは style.css (design.md準拠の共通スタイル/トークン)を
   読み込んだ後に読み込む前提です。ここには本ページ固有のセクション
   (p-page-hero, p-fleet-*) のスタイルのみを定義します。
   共通コンポーネント(c-button, c-link-arrow, c-btn-outline-circle,
   p-logos, p-hero-cta, p-final-cta, l-header 等)は style.css 側の
   定義を使用します。

   travel.css (旅行管理用ページ)と同一構造のコンポーネントは
   design.md のトークンをそのまま踏襲しつつ p-fleet-* として
   本ページ専用に定義しています。
   ============================================================ */

/* ============================================================
   PAGE HERO (サブページ用ヒーロー)
   ============================================================ */
.p-page-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-deep);
  overflow: hidden;
}
.p-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.p-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 65, 77, 0.4); /* #2B414D 40% */
}
.p-page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-6);
}
.p-page-hero__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: var(--space-1);
}
.p-page-hero__title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
}

/* ============================================================
   FEATURE (手軽に安価に 車両管理するなら)
   本家 p-hero と同じ二層構造(背面の斜め背景 + 手前のデバイスモックアップ)
   ============================================================ */
.p-fleet-feature {
  position: relative;
  overflow: hidden;
}
.p-fleet-feature::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -18%;
  width: 62%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(79, 214, 190, 0.22) 0%, rgba(79, 214, 190, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* レイヤー1: 背面の斜め背景画像(画面右端いっぱいに敷き詰める。モバイルでは非表示) */
.p-fleet-feature__bg { display: none; }
.p-fleet-feature__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .p-fleet-feature {
    min-height: 700px;
    display: flex;
    align-items: center;
  }
  .p-fleet-feature__bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 58%;
    z-index: 0;
  }
}

.p-fleet-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-fleet-feature__inner { grid-template-columns: 1fr; }
}

/* absolute配置のvisual画像より確実に手前に描画されるよう、position+z-indexを明示 */
.p-fleet-feature__copy {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .p-fleet-feature__copy { max-width: 520px; }
}

.p-fleet-feature__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.4;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
@media (min-width: 768px) {
  .p-fleet-feature__title { font-size: var(--text-3xl); }
}
/* 文言が長いページ(スポーツ・イベント/建築現場)は、意図した2行で収まるよう
   タイトルのフォントサイズを少し控えめにする */
.p-fleet-feature__title--tight { font-size: 26px; }
@media (min-width: 768px) {
  .p-fleet-feature__title--tight { font-size: 34px; }
}

.p-fleet-feature__checklist { margin-bottom: var(--space-3); }
.p-fleet-feature__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--text-base);
  font-weight: 500;
  padding-block: 0.45em;
}
.p-fleet-feature__check-icon {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1em;
}
.p-fleet-feature__check-icon svg { width: 12px; height: 12px; }

.p-fleet-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.p-fleet-feature__tags li {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-mute);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5em 1.2em;
}

/* レイヤー2: 手前のデバイスモックアップ(本家 p-hero__devices と同じ配置ロジック) */
.p-fleet-feature__visual { position: relative; z-index: 1; margin-top: var(--space-6); }
@media (min-width: 1024px) {
  .p-fleet-feature__visual {
    position: absolute;
    top: calc(8% - 120px);
    right: 0;
    z-index: 1;
    width: 79%;
    max-width: none;
    margin: 0;
  }
}
.p-fleet-feature__visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ISSUES (こんなお悩みはございませんか？)
   ============================================================ */
.p-fleet-issues__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .p-fleet-issues__grid { grid-template-columns: 1fr 1fr; }
}

.p-fleet-issues__card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

.p-fleet-issues__visual {
  flex: none;
  width: 110px;
  height: 110px;
}
.p-fleet-issues__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-fleet-issues__body { flex: 1; }
.p-fleet-issues__card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 0.5em;
}
.p-fleet-issues__card-list li {
  position: relative;
  padding-left: 1.1em;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.7;
}
.p-fleet-issues__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}
.p-fleet-issues__card-list mark {
  background: none;
  color: var(--color-primary-hover);
  font-weight: 700;
}

/* ============================================================
   TRANSITION (TRE GPSはこれらのお悩みを解決します)
   ============================================================ */
.p-fleet-transition {
  position: relative;
  background: var(--gradient-brand);
  color: #fff;
  overflow: hidden;
}

/* 吹き出しの三角(前セクション = お悩みセクションの背景色と同じ色で、上端中央に配置) */
.p-fleet-transition__chevron {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 37px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.p-fleet-transition__chevron svg { width: 100%; height: 100%; display: block; }
.p-fleet-transition__chevron path { fill: var(--color-bg-soft); }

.p-fleet-transition__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-8);
  text-align: center;
}

.p-fleet-transition__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.10);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.p-fleet-transition__title {
  position: relative;
  z-index: 1;
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.5;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
}
@media (min-width: 768px) { .p-fleet-transition__title { font-size: var(--text-3xl); } }

.p-fleet-transition__lead {
  position: relative;
  z-index: 1;
  margin-top: var(--space-2);
  color: var(--color-text-on-brand-mute);
  font-size: var(--text-base);
}

/* ============================================================
   POINTS (当社が選ばれる10のポイント)
   4カラム(デスクトップ) / 2カラム(タブレット) / 1カラム(モバイル)の
   カードグリッド。カード上部にPOINTラベル + アイソメトリックイラスト、
   その下にタイトルと補足説明を中央揃えで配置する。
   ============================================================ */
.p-fleet-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .p-fleet-points__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .p-fleet-points__grid { grid-template-columns: repeat(4, 1fr); }
  /* 10枚構成のページ(車両管理)では最終行が2枚だけになるため中央揃えにする。
     8枚構成のページでは9枚目/10枚目が存在しないため影響しない */
  .p-fleet-points__card:nth-child(9):nth-last-child(2) { grid-column: 2 / 3; }
  .p-fleet-points__card:nth-child(10):nth-last-child(1) { grid-column: 3 / 4; }
}

.p-fleet-points__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.p-fleet-points__label {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.p-fleet-points__icon {
  width: 138px;
  height: 138px;
  object-fit: contain;
  margin-bottom: var(--space-2);
}

.p-fleet-points__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5em;
}

.p-fleet-points__desc {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.7;
}
.p-fleet-points__desc mark {
  background: none;
  color: var(--color-primary-hover);
  font-weight: 700;
}

/* ============================================================
   CASE STUDIES (車両管理における当社導入実績)
   travel.css の p-travel-cases と同一構造(お客様の声カード + 事例グリッド)
   ============================================================ */
.p-fleet-cases__voice {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: var(--space-6);
}
@media (min-width: 1024px) {
  .p-fleet-cases__voice { grid-template-columns: 1fr 1fr; }
}
.p-fleet-cases__voice-photo { aspect-ratio: 4 / 3; }
@media (min-width: 1024px) { .p-fleet-cases__voice-photo { aspect-ratio: auto; height: 100%; } }
.p-fleet-cases__voice-photo img { width: 100%; height: 100%; object-fit: cover; }

.p-fleet-cases__voice-body { padding: var(--space-4); }
@media (min-width: 768px) { .p-fleet-cases__voice-body { padding: var(--space-6); } }

.p-fleet-cases__voice-head {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  margin-bottom: var(--space-3);
}
.p-fleet-cases__voice-avatar {
  flex: none;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.p-fleet-cases__voice-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-bottom: 0.6em;
}
.p-fleet-cases__voice-title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.5;
}
.p-fleet-cases__voice-role {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-mute);
  margin-top: 0.2em;
}
.p-fleet-cases__voice-text {
  font-size: var(--text-sm);
  color: var(--color-text-mute);
}
.p-fleet-cases__voice-text mark {
  background: none;
  color: var(--color-primary-hover);
  font-weight: 700;
}

.p-fleet-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (min-width: 768px) { .p-fleet-cases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .p-fleet-cases__grid { grid-template-columns: repeat(3, 1fr); } }

.p-fleet-cases__card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.p-fleet-cases__card-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.p-fleet-cases__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fleet-cases__card-body { padding: var(--space-3); }
.p-fleet-cases__card-cat { font-size: var(--text-xs); font-weight: 700; color: var(--color-primary); margin-bottom: 0.3em; }
.p-fleet-cases__card-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.4em; }
.p-fleet-cases__card-text { font-size: var(--text-sm); color: var(--color-text-mute); margin-bottom: 0.9em; }
.p-fleet-cases__card-tags { display: flex; flex-wrap: wrap; gap: 0.4em; }
.p-fleet-cases__card-tags li {
  font-size: var(--text-xs);
  background: var(--color-bg-soft);
  color: var(--color-text-mute);
  padding: 0.25em 0.8em;
  border-radius: 5px;
}

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

/* ============================================================
   ELECTION PROMO (選挙活動に / ピックアップ導線バナー)
   p-pickup__card-tag / p-pickup__card-checks (style.css共通)を
   横並びカードレイアウトの中で流用する
   ============================================================ */
.p-fleet-election-promo__card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-fleet-election-promo__card { grid-template-columns: 1fr 1fr; }
}

.p-fleet-election-promo__photo {
  position: relative;
  min-height: 220px;
  background: var(--gradient-brand);
}
.p-fleet-election-promo__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-fleet-election-promo__photo-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4);
  color: #fff;
}
.p-fleet-election-promo__photo-title {
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--space-2);
  font-kerning: normal;
  font-feature-settings: "palt" 1;
}
.p-fleet-election-promo__photo-sub {
  font-size: 32px;
  font-weight: 700;
  color: #FFD84D;
  line-height: 1.5;
}

.p-fleet-election-promo__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-fleet-election-promo__body { padding: var(--space-6); }
}
.p-fleet-election-promo__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

/* ============================================================
   HOW TO USE (GPSの使い方)
   design.md §10「導入ステップ」の考え方を踏襲した、
   4ステップのカード連結レイアウト(モバイル縦積み/デスクトップ横並び)
   ============================================================ */
.p-fleet-howto__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}
.p-fleet-howto__step { width: 100%; max-width: 320px; }
.p-fleet-howto__card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  height: 100%;
}
.p-fleet-howto__label {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.p-fleet-howto__icon {
  width: 115px;
  height: 115px;
  object-fit: contain;
  margin: 0 auto var(--space-2);
  display: block;
}
.p-fleet-howto__text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
}
.p-fleet-howto__arrow {
  display: none;
  color: #757575;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-fleet-howto__grid { flex-direction: row; align-items: stretch; justify-content: center; gap: var(--space-2); }
  .p-fleet-howto__step { max-width: 260px; }
  .p-fleet-howto__arrow { display: flex; align-items: center; }
}

/* ============================================================
   SET UP (GPS端末設置方法)
   ============================================================ */
.p-fleet-setup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 768px) {
  .p-fleet-setup__grid { grid-template-columns: repeat(2, 1fr); }
}

.p-fleet-setup__item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

.p-fleet-setup__types {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}
.p-fleet-setup__type {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--card-color, var(--color-primary));
  background: var(--card-color-soft, var(--color-bg-cool));
  padding: 0.3em 0.9em;
  border-radius: 6px;
}
.p-fleet-setup__type--u      { --card-color: var(--color-type-u);      --card-color-soft: var(--color-type-u-soft); }
.p-fleet-setup__type--u-plus { --card-color: var(--color-type-u-plus); --card-color-soft: var(--color-type-u-plus-soft); }
.p-fleet-setup__type--s      { --card-color: var(--color-type-s);      --card-color-soft: var(--color-type-s-soft); }
.p-fleet-setup__type--p      { --card-color: var(--color-type-p);      --card-color-soft: var(--color-type-p-soft); }

.p-fleet-setup__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.p-fleet-setup__title small {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-mute);
  margin-top: 0.3em;
}

.p-fleet-setup__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.p-fleet-setup__photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.p-fleet-setup__caption {
  position: relative;
  padding-left: 1.1em;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
}
.p-fleet-setup__caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ============================================================
   HISTORY / PRODUCTS (style.css補完 / travel.cssと同一の補完ルール)
   ============================================================ */
.p-history__card-img {
  aspect-ratio: 1040 / 686;
  object-fit: cover;
}
.p-products__lead-highlight {
  color: var(--color-accent-end);
  font-weight: 700;
}

/* ============================================================
   EXTENSIVE FEATURES (便利機能がたくさん)
   当社GPS列を差別化するハイライト付き比較表。design.md の配色ルールに
   従い、アクセント(オレンジ)ではなくプライマリティールでハイライトする
   ============================================================ */
.p-fleet-features__table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-3);
}
.p-fleet-features__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.p-fleet-features__table th,
.p-fleet-features__table td {
  padding: 0.9em 1em;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.p-fleet-features__table thead th:first-child { border: none; background: none; }
.p-fleet-features__table tbody th {
  text-align: left;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-bg-soft);
  white-space: nowrap;
}
.p-fleet-features__table thead th.p-fleet-features__col--highlight {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: none;
}
.p-fleet-features__table thead th.p-fleet-features__col--other {
  background: #9a9a9a;
  color: #fff;
  font-weight: 700;
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.p-fleet-features__table tbody td.p-fleet-features__col--highlight {
  background: rgba(25, 180, 162, 0.06);
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  font-weight: 700;
  font-size: calc(var(--text-sm) + 1px);
  color: var(--color-text);
}
.p-fleet-features__table tbody tr:nth-child(even) td.p-fleet-features__col--highlight {
  background: rgba(25, 180, 162, 0.11);
}
.p-fleet-features__table tbody tr:last-child td.p-fleet-features__col--highlight {
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.p-fleet-features__dot {
  display: inline-block;
  font-size: 1.3em;
  line-height: 1;
  color: var(--color-primary);
  font-weight: 900;
}
.p-fleet-features__circle,
.p-fleet-features__cross {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  font-weight: 700;
  color: var(--color-text-mute);
}
.p-fleet-features__note {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-mute);
  margin-top: 0.4em;
  white-space: normal;
}

.p-fleet-features__icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
@media (min-width: 768px) {
  .p-fleet-features__icons { grid-template-columns: repeat(4, 1fr); }
}
.p-fleet-features__icons li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.p-fleet-features__icon-badge {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-cool);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fleet-features__icon-badge svg { width: 20px; height: 20px; }
.p-fleet-features__icon-title { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: 0.2em; }
.p-fleet-features__icon-desc { font-size: var(--text-xs); color: var(--color-text-mute); }

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

/* GPS端末紹介カード上部の丸バッジ(index.html以外は1.2倍表示) */
.p-products__card-media {
  width: 115px;
  height: 115px;
  margin: var(--space-4) auto var(--space-3);
}
.p-products__card-media-img { max-width: 150px; max-height: 150px; }

/* ============================================================
   APPLICATION (お申し込み) — fleet.html専用
   style.css の .p-apply__* とは独立させたクラス名。
   他ページ(travel/training/sports-event/construction)は
   引き続き style.css 側の .p-apply__* を使用するため、
   ここを変更しても他ページには影響しない。
   ============================================================ */
.p-fleet-apply__panel {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.p-fleet-apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .p-fleet-apply__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .p-fleet-apply__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.p-fleet-apply__item {
  --card-color: var(--color-primary);
  min-width: 0;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.p-fleet-apply__item--u      { --card-color: var(--color-type-u); }
.p-fleet-apply__item--u-plus { --card-color: var(--color-type-u-plus); }
.p-fleet-apply__item--s      { --card-color: var(--color-type-s); }
.p-fleet-apply__item--p      { --card-color: var(--color-type-p); }

.p-fleet-apply__thumb {
  background: transparent;
  overflow: hidden;
  padding: var(--space-4);
  height: 160px;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fleet-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);
}
.p-fleet-apply__item:hover .p-fleet-apply__thumb-img { transform: scale(1.12); }

.p-fleet-apply__plan {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: 4px;
}
.p-fleet-apply__price {
  font-family: var(--font-en);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--card-color);
  line-height: 1.2;
}
.p-fleet-apply__price-unit {
  font-family: var(--font-jp);
  font-size: var(--text-sm);
  margin-left: 2px;
}
.p-fleet-apply__price-note {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: var(--space-3);
}
.p-fleet-apply__cta {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  text-align: center;
  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);
}
@media screen and (min-width: 768px) {
a.p-fleet-apply__cta  {
  color: #ffffff;
}
}
.p-fleet-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-fleet-apply__cta:hover::after { transform: scaleX(1); }

.p-fleet-apply__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
}

/* --- 短期/長期プラン カード背景 --- */
.p-fleet-apply__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
}
.p-fleet-apply__card + .p-fleet-apply__card { margin-top: var(--space-4); }
@media (max-width: 767px) {
  .p-fleet-apply__card { padding: var(--space-4); }
}

/* --- 短期/長期プラン 見出し・区切り線 --- */
.p-fleet-apply__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.p-fleet-apply__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex: none;
}
.p-fleet-apply__plan-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}
.p-fleet-apply__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}
.p-fleet-apply__inline-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-cool);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.p-fleet-apply__plan-lead {
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-2) 0 var(--space-6);
}
.p-fleet-apply__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-6) 0;
}

/* --- 長期プラン: 月額料金表 & 注意事項 --- */
.p-fleet-apply__longterm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 900px) {
  .p-fleet-apply__longterm-grid { grid-template-columns: 1.2fr 1fr; }
}
.p-fleet-apply__price-table-title {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-fleet-apply__price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.p-fleet-apply__price-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: var(--text-sm);
}
.p-fleet-apply__price-table th,
.p-fleet-apply__price-table td {
  padding: var(--space-2);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.p-fleet-apply__price-table thead th {
  background: var(--color-bg-soft);
  font-weight: 700;
  color: var(--color-text);
}
.p-fleet-apply__price-table thead th.p-fleet-apply__col--u { background: var(--color-type-u-soft); }
.p-fleet-apply__price-table thead th.p-fleet-apply__col--u-plus { background: var(--color-type-u-plus-soft); }
.p-fleet-apply__price-table thead th img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 4px auto 0;
}
.p-fleet-apply__price-table tbody th {
  background: var(--color-bg-soft);
  font-weight: 700;
  color: var(--color-text);
}
.p-fleet-apply__price-table tbody tr:last-child th,
.p-fleet-apply__price-table tbody tr:last-child td { border-bottom: none; }
.p-fleet-apply__price-value {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-primary);
}
.p-fleet-apply__price-table .p-fleet-apply__price-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  margin-bottom: 0;
}
.p-fleet-apply__notes-title {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.p-fleet-apply__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-mute);
  line-height: 1.9;
}
.p-fleet-apply__notes-list strong {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-text);
  text-underline-offset: 0.15em;
}

/* --- 長期プラン: 便利な4つのサポート --- */
.p-fleet-apply__support-title {
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.p-fleet-apply__support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  text-align: center;
}
@media (min-width: 768px) {
  .p-fleet-apply__support-grid { grid-template-columns: repeat(4, 1fr); }
}
.p-fleet-apply__support-icon {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto var(--space-2);
}
.p-fleet-apply__support-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 0.3em;
}
.p-fleet-apply__support-desc {
  font-size: var(--text-xs);
  color: var(--color-text-mute);
  line-height: 1.7;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.u-sp-only { display: none; }
@media (max-width: 767px) {
  .u-sp-only { display: inline; }
}
