#scroll-to-top {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 56px;
  height: 56px;
  background: url("../images/top-img.png") no-repeat center center;
  background-size: cover;
  cursor: pointer;
  z-index: 9999;

}

/* フッターが近づいたら位置を調整 */
#scroll-to-top.fixed {
  bottom: 100px !important;
}

/* 押された後に画像が変更される
#scroll-to-top.hovered {
  background-image: url("../images/dog5.jpeg");
} */

/*上部まで移動するアニメーション*/
#scroll-to-top.fly-out {
  animation: flyUpFade 0.6s ease forwards;
}

@keyframes flyUpFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  /*  50%   { transform: translateY(-50vh);   opacity: 1; }*/
  85% {
    transform: translateY(-90vh);
    opacity: 1;
  }

  100% {
    transform: translateY(-200vh);
    opacity: 0;
  }
}