/*
|---------------------------------------------------------------
| qinc2026-top-results.css - 数値実績
|---------------------------------------------------------------
*/

/* ==========================================================================
   Section
   ========================================================================== */
.top-results {
  background-color: var(--color-blue01);
  padding: 100px 0;
}

/* ==========================================================================
   Title
   ========================================================================== */
.top-results__title {
  margin: 0 0 56px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1.6px;
  color: var(--color-blue-grey);
  text-align: center;
  text-transform: uppercase;
}

/* ==========================================================================
   List
   ========================================================================== */
.top-results__list {
  display: flex;
}

/* ==========================================================================
   Item
   ========================================================================== */
.top-results__item {
  flex: 1;
  text-align: center;
}

.top-results__item + .top-results__item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Value (number + unit)
   -------------------------------------------------------------------------- */
.top-results__item-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.top-results__item-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  color: var(--color-gold);
}

.top-results__item-unit {
  font-family: 'Oswald', var(--font-family-ja);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Description
   -------------------------------------------------------------------------- */
.top-results__item-desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.8;
}

.top-results__item-desc p {
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .top-results {
    padding: 80px 0;
  }

  .top-results__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .top-results__item-number {
    font-size: 48px;
  }

  .top-results__item-unit {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-results {
    padding: 60px 0;
  }

  .top-results__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .top-results__list {
    flex-wrap: wrap;
    gap: 32px 0;
  }

  .top-results__item {
    flex: 0 0 50%;
  }

  .top-results__item:nth-child(odd) {
    border-left: none;
  }

  .top-results__item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-results__item-number {
    font-size: 40px;
  }

  .top-results__item-unit {
    font-size: 18px;
  }

  .top-results__item-desc {
    font-size: 14px;
  }
}
