@charset "UTF-8";
/*----------------------------------------------
// ページTOPへ戻るボタン
----------------------------------------------*/
.page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 45px;
  bottom: 45px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: #0157ae;
  opacity: 1;
  border-radius: 50%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 30px;
  }
}
.page-top > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-top > a {
    width: 60px;
    height: 60px;
  }
}
.page-top > a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 24px;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
}