@charset "UTF-8";
/* TOPに戻るボタン用 */
.page-top {
  display: flex;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #006CAA;
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  line-height: 1;
  z-index: 999; }
  .page-top.is-show {
    opacity: 0.95;
    visibility: visible; }
  .page-top:hover, .page-top:active, .page-top:focus {
    color: #fff;
    text-decoration: none; }
  .page-top i {
    font-size: 1.6rem; }
  .page-top span {
    font-size: 1.2rem;
    letter-spacing: 0.05em; }
