/* ============================================================
   バス・マイクロバス買取 LP 専用CSS (page-lp-bus.php)
   lp-dump.css のスタイルを継承し、bus 固有の差分のみ定義
   ============================================================ */

/* ── バスの種類セクション ─────────────────────────────────── */
.lp-bus-types {
  background: #fff;
}
.lp-bus-types__lead {
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
}
.lp-bus-types__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .lp-bus-types__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.lp-bus-types__card {
  border: 2px solid #dde4ef;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  background: #f7f9fd;
  position: relative;
  overflow: hidden;
  -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease;
          transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-bus-types__card:hover {
  border-color: #5E9AF8;
  -webkit-box-shadow: 0 6px 20px rgba(94, 154, 248, .15);
          box-shadow: 0 6px 20px rgba(94, 154, 248, .15);
  background: #fff;
}
.lp-bus-types__card-num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #5E9AF8;
  margin-bottom: 10px;
}
.lp-bus-types__card-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.lp-bus-types__card-name {
  font-size: 15px;
  font-weight: 800;
  color: #1a2b4a;
  margin-bottom: 8px;
  line-height: 1.4;
}
.lp-bus-types__card-desc {
  font-size: 12px;
  color: #6b7a90;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .lp-bus-types__card { padding: 18px 14px; }
  .lp-bus-types__card-icon { font-size: 28px; }
  .lp-bus-types__card-name { font-size: 13px; }
  .lp-bus-types__card-desc { display: none; }
}

/* ── lp--bus 固有アクセント ───────────────────────────────── */
.lp--bus .lp-hero__catch-label {
  background: #1a6fd4;
}
.lp--bus .lp-hero__catch-main em {
  color: #7ec8f8;
}
.lp--bus .lp-stats {
  background: #0c1e38;
}
.lp--bus .lp-stats__num {
  color: #7ec8f8;
}
