/* 白い帯（NPB のヘッダー相当） */
#header_area {
  position: relative; /* ← これが最重要。青帯の基準になる */
  width: 100%;
  background: #fff;
  z-index: 10;
}

/* 青い帯（スコア帯） */
#header_score {
  position: absolute; /* ← 白帯の中に固定してかぶせる */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ← 白帯の高さに完全フィット */
  background: #005bac; /* 青色 */
  z-index: 20; /* ← 白帯より前に出す */
  overflow: hidden; /* ← はみ出し防止（絶対必要） */
}

/* 中身（あなたが作ったカウントダウン） */
.cd_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* ← 中央寄せ */
  gap: 80px; /* ← 左・中央・右のバランス調整 */
  color: #fff;
}
.cd_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;

  /* これが最重要：3つを中央に寄せて、間隔を均等にする */
  justify-content: center;
  gap: 80px; /* ← 左・中央・右の距離を均等にする */
  color: #fff;
}

/* 左側 */
.cd_left {
  text-align: left;
  flex-shrink: 0;
}

.cd_label {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cd_date {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* 真ん中（カウントダウン） */
.cd_center {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.cd_num {
  font-size: 30px;
  font-weight: 900;
  margin: 0 3px;
}

.cd_unit {
  margin-right: 8px;
  opacity: 0.9;
}

/* 右側 */
.cd_right {
  text-align: right;
  flex-shrink: 0;
}

.cd_opening {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}
/* スマホではカウントダウン帯を非表示 */
@media screen and (max-width: 768px) {
  #header_score {
    display: none !important;
  }
}