
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3列固定 */
  gap: 20px; /* カード間のスペース */
  max-width: 1000px;
  margin: 0 auto 200px;
}

.number-card {
  border: 1px solid #bb1a1a;
  border-radius: 10px;
  text-align: center;
  aspect-ratio: 1 / 1; /* 正方形にする */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
}
.number-card img {
  width: 40%; 
  height: auto;
  margin-bottom: 5px;
}

.label {
  font-size: clamp(20px, 3.5vw, 25px);
  margin-bottom: 5px;
}

.number {
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: bold;
}
.count{
  color: #bb1a1a;
}

.unit{
  font-size: clamp(20px, 3.5vw, 30px);
}

.note {
  font-size: 12px; 
  color: #666; 
  margin-top: 5px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .numbers {
    grid-template-columns: 1fr;
  }
  .number-card {
    width: 90%;       /* 余白を少し作る */
    margin: 0 auto;   /* 中央寄せ */
  }
}