.timer {
  position: relative;
}

.timer .left-block {
  position: absolute;
  bottom: 5px;
  left: 1%;
  font-size: 20px;
  width: calc(100% - 92%);
}

/* ミッキーbrush（正面）位置調整 */
.timer .left-block.is-mickey {
  left: 1.3%;
  width: calc(100% - 84%);
}

.timer .center-block {
  position: absolute;
  color: #DA465F;
  top: 37%;
  right: 5%;
  font-size: 20px;
  font-weight: 1000;
  font-family: 'Sawarabi Gothic', sans-serif;
}

.timer .clock-block {
  position: absolute;
  color: #DA465F;
  top: 17%;
  right: 5%;
  font-size: 28px;
  font-weight: 1000;
  font-family: 'Sawarabi Gothic', sans-serif;
}

@media screen and (max-width:850px) {

  .timer .center-block,
  .timer .clock-block {
    font-size: 3.8vw;
  }
}

@media screen and (max-width:640px) {

  .timer .center-block,
  .timer .clock-block {
    font-size: 3.8vw;
  }
}

@media screen and (max-width:500px) {

  .timer .center-block,
  .timer .clock-block {
    font-size: 3.8vw;
  }
}

@media screen and (max-width:375px) {

  .timer .center-block,
  .timer .clock-block {
    font-size: 3.8vw;
  }
}

.shiny {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.shiny::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}