.page-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  /* ボタンのデザイン */
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  /* 文字を中央揃え */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最初は非表示にしておく */
  opacity: 0;
  visibility: hidden;
  /* ふわっと表示させるアニメーション */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* スクロール時にクラスを追加して表示させる */
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
