@charset "UTF-8";
/* ランキング表示用 */
.fukidashi {
  position: absolute;
  top: 110px;
  width: 85px;
  left: 0;
  -webkit-animation-name: updown1;
  animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 1s;
  animation-duration: 1s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media (max-width: 768px) {
  .fukidashi {
    top: 20%;
    width: 32%;
  }
}
@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* /ランキング表示用 */