/* ============================
	メダル数カウンター（TOPページと共通）
============================ */

.medal-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
}

.medal-count__title {
  width: 100%;
  margin: 0;
  text-align: center;
}

.medal-count__title img {
  width: 400px;
  max-width: 100%;
  height: auto;
}

.medal-count__updated-at {
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: var(--cl-darkgray);
  margin: 8px 0 0;
}

.medal-count__frames {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 7px;
}

.medal-count__frame {
  position: relative;
  width: 247px;
  height: 194px;
  display: flex;
  justify-content: center;
}

.medal-count__frame[data-medal="silver"],
.medal-count__frame[data-medal="bronze"] {
  margin-top: 109px;
}

.medal-count__frame[data-medal="gold"] { background: url(../img/count/frame_gold.png) no-repeat center / contain; }
.medal-count__frame[data-medal="silver"] { background: url(../img/count/frame_silver.png) no-repeat center / contain; }
.medal-count__frame[data-medal="bronze"] { background: url(../img/count/frame_bronze.png) no-repeat center / contain; }

.medal-count__digits {
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.digit-slot {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 80px;
  overflow: hidden;
}

.digit-slot__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Media Queries ---- */

@media all and (max-width: 767px) {
  .medal-count__title img {
    width: 261px;
  }

  .medal-count__frame {
    width: 117px;
    height: 92px;
  }

  .medal-count__frame[data-medal="silver"],
  .medal-count__frame[data-medal="bronze"] {
    margin-top: 52px;
  }

  .digit-slot {
    width: 26px;
    height: 38px;
  }
}
