/* Draft Countdown - based on "Draft Countdown" by Dorian Camilleri (CodePen jEJvaV)
   Adapted for FMたんと42.195kmリレーマラソン (Days/Hours/Minutes/Seconds, 日本語ラベル)
   Style: pqina/Tick.js 風 — ダークカード + 白文字 + 上下グラデ + 中央折り目
   ※ 静止表示版（アニメーション無し・角丸クリーン優先） */

/* 数字用フォント: League Gothic（Google Fonts） */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');

.countdown {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}

.countdown-wrap {
  text-align: center;
  padding: 30px 0 40px;
}

.countdown .bloc-time {
  float: left;
  margin-right: 8px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown .bloc-time:last-child {
  margin-right: 0;
}

.countdown .count-title {
  display: block;
  order: 2;
  width: 100%;
  margin: 12px 0 0;
  font: normal 0.94em 'Noto Sans JP', 'Lato', sans-serif;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown .figure {
  position: relative;
  float: left;
  height: 92px;
  width: 78px;
  margin-right: 8px;
  /* 上半分 #3d3d3d、下半分 #262626、中央でハード切替 */
  background-color: #262626;
  background-image: linear-gradient(180deg,
    #3d3d3d 0%,
    #3d3d3d 50%,
    #262626 50%,
    #262626 100%);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px -6px rgba(0, 0, 0, .4);
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, .4);
}

.countdown .figure:last-child {
  margin-right: 0;
}

/* 中央の折り目ライン */
.countdown .figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: rgba(0, 0, 0, .5);
  z-index: 10;
  pointer-events: none;
}

/* 使用しない裏面レイヤーは非表示 */
.countdown .figure .top,
.countdown .figure .top-back,
.countdown .figure .bottom-back {
  display: none;
}

/* 数字表示: .bottom を唯一の表示レイヤーとして全面センター配置 */
.countdown .figure .bottom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Gothic', 'Impact', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 5.6em;
  line-height: 1;
  color: #f2f2f2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* タブレット */
@media (max-width: 991px) {
  .countdown .bloc-time { margin-right: 7px; }
  .countdown .figure {
    height: 74px;
    width: 58px;
    margin-right: 5px;
    border-radius: 10px;
  }
  .countdown .figure .bottom {
    font-size: 3.8em;
  }
}

/* スマホ */
@media (max-width: 575px) {
  .countdown .bloc-time { margin-right: 4px; }
  .countdown .count-title {
    font-size: 0.72em;
    margin: 6px 0 0;
  }
  .countdown .figure {
    height: 48px;
    width: 36px;
    margin-right: 3px;
    border-radius: 8px;
  }
  .countdown .figure .bottom {
    font-size: 2.4em;
  }
}
