/* ============================================================
   numbers.php
   ============================================================ */

.aboutas-section {
  background: #f6f9ff;
}



.nums-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #070f21;
  line-height: 1.3;
  margin: 12px 0 16px;
}

.nums-page-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--black);
  margin: 0;
}

.nums-page-top-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Sections ── */
.nums-section {
  padding: 80px 0;
  background: #fff;
}

.nums-section--alt {
  background: #f5f9ff;
}

.nums-section--alt .stat-card {
  background: #fff;
}


/* ── Distance stat ── */
.stat-dist {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 8px;
  position: relative;
  z-index: 1;
}

.stat-dist-pre {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  align-self: center;
}

.stat-dist .stat-val {
  font-size: clamp(52px, 7vw, 90px);
}

.stat-comp {
  font-size: 16px;
}

.stat-dist-suf {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  align-self: center;
}

.stat-dist-num {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  color: #f5c400;
}

/* ── Truck sizes ── */
.stat-truck-sizes {
  display: flex;
  gap: 32px;
  align-items: start;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.stat-truck-size-lbl {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

/* ── Full-cover bg icon ── */
.stat-bg-icon00--full {
  inset: 0;
  width: auto;
  height: auto;
}

.stat-bg-icon00--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Split card (image col) ── */
.stat-card-img-col {
  overflow: hidden;
  min-height: 240px;
}

.stat-card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Environment description ── */
.stat-env-desc {
  font-size: 1rem;
  line-height: 2;
  color: var(--black);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ── Dual value (研修講座) ── */
.stat-dual {
  display: flex;
  gap: 28px;
  align-items: baseline;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .nums-section {
    padding: 48px 0;
  }

  .stat-card-img-col {
    min-height: 200px;
  }

  .stat-bg-icon00--half-sp {
    width: 50%;
  }
}