@charset "UTF-8";
/* フォント */
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Serif+JP&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #eeac4f;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  color: #eeac4f;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  font-family: var(--bs-body-font-family);
}
#page-top a:hover {
  background: #eeac4f;
  color: #fff;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(140px);
}

/*　上に上がる動き　*/
#page-top.up {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.down {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(140px);
  }
}/*# sourceMappingURL=page_top.css.map */