.data-wrap {
  width: 90%;
  max-width: 980px;
  margin: 58px auto 110px;
}

.data-section {
  margin-bottom: 64px;
}

.data-section-title {
  text-align: center;
  color: #d73f3f;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.data-section-title.ex {
  margin-bottom: 60px;
}

.data-section-sub {
  text-align: center;
  color: #d73f3f;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 26px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.data-card {
  border-radius: 14px;
  text-align: center;
  padding: 20px 16px 16px;
  min-height: 216px;
}
.data-card.ex {
  padding-top: 10px;
}

.data-card-label {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 10px;
}

.data-card-value {
  line-height: 1;
  margin-bottom: 14px;
}
.data-card-value .number {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
}
.data-card-value .unit {
  font-size: 30px;
  font-weight: 500;
  margin-left: 6px;
}

.data-card-icon {
  margin-top: auto;
}
.data-card-icon.ex {
  margin-top: 40px;
}
.data-card-icon img {
  display: block;
  width: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.data-card--outline {
  background: #e03636;
}
.data-card--outline .data-card-label,
.data-card--outline .data-card-value {
  color: #fff;
}

.data-card--member {
  background: #fff;
  border: 1px solid #e8d2d2;
}
.data-card--member .data-card-label,
.data-card--member .data-card-value {
  color: #d73f3f;
}

.data-card-value--ratio {
  line-height: 1.2;
}
.data-card-value--ratio .ratio-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.data-card-value--ratio .ratio-row:last-child {
  margin-bottom: 0;
}
.data-card-value--ratio .ratio-item {
  flex: 1;
  text-align: center;
}
.data-card-value--ratio .ratio-item:not(:last-child) {
  margin-right: 16px;
}
.data-card-value--ratio .ratio-label {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.data-card-value--ratio .ratio-num {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.data-card-value--ratio .ratio-num span {
  font-size: 22px;
}
.data-card-value--ratio .ratio-unit {
  font-size: 22px;
  font-weight: 500;
  margin-left: 4px;
}

.ratio-num {
  display: inline-block;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
}

.ratio-num.is-rolling {
  -webkit-animation: ratio-slot-spin 0.8s ease-out;
          animation: ratio-slot-spin 0.8s ease-out;
}

.data-card-value .number.is-rolling {
  -webkit-animation: ratio-slot-spin 0.8s ease-out;
          animation: ratio-slot-spin 0.8s ease-out;
}

@-webkit-keyframes ratio-slot-spin {
  0% {
    transform: rotateX(0deg);
  }
  40% {
    transform: rotateX(360deg);
  }
  70% {
    transform: rotateX(720deg);
  }
  100% {
    transform: rotateX(720deg);
  }
}

@keyframes ratio-slot-spin {
  0% {
    transform: rotateX(0deg);
  }
  40% {
    transform: rotateX(360deg);
  }
  70% {
    transform: rotateX(720deg);
  }
  100% {
    transform: rotateX(720deg);
  }
}
.data-message {
  text-align: center;
}
.data-message .ja {
  color: #d73f3f;
  font-size: 64px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 22px;
}
.data-message .en {
  color: #d73f3f;
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .data-wrap {
    width: 92%;
    margin: 8vw auto 14vw;
  }
  .data-section {
    margin-bottom: 10vw;
  }
  .data-section.first {
    margin-bottom: 15vw;
  }
  .data-section-title {
    font-size: 10vw;
    margin-bottom: 2vw;
  }
  .data-section-title.ex {
    margin-bottom: 9vw;
  }
  .data-section-sub {
    font-size: 5.1vw;
    margin-bottom: 4vw;
  }
  .data-grid {
    grid-template-columns: 1fr;
    gap: 3vw;
    max-width: 68vw;
    margin-left: auto;
    margin-right: auto;
  }
  .data-card {
    min-height: 0;
    border-radius: 3vw;
    padding: 3.6vw 3vw 2.4vw;
  }
  .data-card-label {
    font-size: 4.8vw;
    margin-bottom: 1.6vw;
  }
  .data-card-value {
    margin-bottom: 2vw;
  }
  .data-card-value .number {
    font-size: 9vw;
  }
  .data-card-value .unit {
    font-size: 5vw;
    margin-left: 1vw;
  }
  .data-card-value--ratio .ratio-row {
    margin-bottom: 2vw;
  }
  .data-card-value--ratio .ratio-row:last-child {
    margin-bottom: 0;
  }
  .data-card-value--ratio .ratio-label {
    font-size: 3.2vw;
    margin-bottom: 0.8vw;
  }
  .data-card-value--ratio .ratio-num {
    font-size: 8vw;
  }
  .data-card-value--ratio .ratio-unit {
    font-size: 3.8vw;
    margin-left: 1vw;
  }
  .data-card-icon.ex {
    margin-top: 0vw;
  }
  .data-card-icon img {
    max-width: none;
    height: auto;
  }
  .data-message .ja {
    font-size: 7.4vw;
    margin-bottom: 4vw;
  }
  .data-message .en {
    font-size: 3.4vw;
  }
}
.data-notes {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .data-notes {
    font-size: 2.7vw;
    margin-bottom: 1vw;
    max-width: 68vw;
    margin-left: auto;
    margin-right: auto;
  }
}
/*# sourceMappingURL=data.css.map */