/* ダウンロードカウンターのスタイル */

/* トップページのダウンロードカウンター */
.download-counter {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.counter-icon {
  font-size: 28px;
}

.counter-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.counter-number {
  font-size: 28px;
  font-weight: bold;
  color: #FFE500;
  margin-right: 5px;
  display: inline-block;
  min-width: 80px;
  text-align: right;
}

/* ダウンロード一覧ページのカウンター */
.download-count {
  color: #E60012;
  font-weight: bold;
  background: #FFF5F5;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* 個別ダウンロードページのカウンター */
.whitepaper-download-count {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: #FFF5F5;
  border-radius: 10px;
  color: #333;
  font-size: 16px;
}

.whitepaper-download-count strong {
  color: #E60012;
  font-size: 24px;
  margin: 0 5px;
}

/* アニメーション */
@keyframes countUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.counter-number.updating {
  animation: countUp 0.5s ease-in-out;
}