/* BMP LP — 統計アニメーション */

.bmp-stats-card {
  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 2px;
  padding: 26px 26px 22px;
  width: 100%;
}

.bmp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #dde2ea;
}

.bmp-card-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.bmp-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1C2B4B;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0;
}

.bmp-stats-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.bmp-stats-left {
  flex: 1.4;
  background: #E9EDF5;
  border-radius: 4px;
  padding: 18px 20px;
}

.bmp-stats-left-inner {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.bmp-count-col {
  flex: 1;
  min-width: 0;
}

.bmp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #6B7A8D;
  letter-spacing: 0.12em;
  margin: 0 0 3px;
}

.bmp-count-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.bmp-count-number {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #1C2B4B;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
}

.bmp-count-suffix {
  font-size: 16px;
  font-weight: 700;
  color: #1C2B4B;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.bmp-stats-caption {
  font-size: 10px;
  color: #6B7A8D;
  line-height: 1.7;
  margin: 10px 0 0;
}

.bmp-bars-col {
  flex-shrink: 0;
  width: 128px;
}

.bmp-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 82px;
}

.bmp-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.bmp-bar {
  width: 100%;
  height: 0;
  border-radius: 2px 2px 0 0;
}

.bmp-bar-label {
  font-size: 8px;
  color: #8a98a8;
  margin-top: 4px;
  white-space: nowrap;
}

.bmp-stats-right {
  flex: 0.7;
  background: #E9EDF5;
  border-radius: 4px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bmp-gauge-label {
  font-size: 10px;
  font-weight: 700;
  color: #6B7A8D;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
}

.bmp-donut-wrap {
  position: relative;
  width: 118px;
  height: 118px;
}

.bmp-donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bmp-donut-track {
  fill: none;
  stroke: #c6cede;
  stroke-width: 15;
}

.bmp-donut-fill {
  fill: none;
  stroke: #C0272D;
  stroke-width: 15;
  stroke-linecap: butt;
}

.bmp-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bmp-donut-value {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.bmp-donut-num {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1C2B4B;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.bmp-donut-sym {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1C2B4B;
  line-height: 1;
}

.bmp-footnote {
  font-size: 10px;
  color: #9aabb8;
  line-height: 1.65;
  margin: 12px 0 0;
}

@media screen and (max-width: 640px) {
  .bmp-stats-card {
    padding: 20px 16px 18px;
  }
  .bmp-card-title {
    font-size: 13px;
  }
  .bmp-stats-row {
    flex-direction: column;
    gap: 10px;
  }
  .bmp-stats-left {
    flex: none;
    padding: 14px 16px;
  }
  .bmp-stats-left-inner {
    gap: 10px;
  }
  .bmp-count-number {
    font-size: 36px;
  }
  .bmp-bars-col {
    width: 110px;
  }
  .bmp-bar-chart {
    height: 66px;
  }
  .bmp-stats-right {
    flex: none;
    padding: 14px 16px;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
  }
  .bmp-gauge-label {
    text-align: left;
    flex-shrink: 0;
  }
  .bmp-donut-wrap {
    width: 96px;
    height: 96px;
  }
  .bmp-donut-num {
    font-size: 28px;
  }
  .bmp-donut-sym {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bmp-bar { transition: none !important; }
}
