@charset "utf-8";
/* ページトップボタン */
.pagetop {
  display: none;
  position: absolute;
  right: calc((100vw - 1040px) / 2 - 95px);
  z-index: 1000;
}
.pagetop a {
  display: block;
  text-align: center;
  text-decoration: none;
  background-image: url('/img/icon/icon_topup.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  margin-top: -25px;
}
.pagetop a:hover {
  display: block;
  text-align: center;
  text-decoration: none;
  background-image: url('/img/icon/icon_topup.svg');
  width: 64px;
  height: 64px;
}

@media (max-width: 480px) {
  .pagetop {
    right: 20px;
  }
  .pagetop a {
    width: 48px;
    height: 48px;
  }
}