/*
 * Paw artwork: "肉球のアイコン1" by TopeconHeroes / ICOOON MONO.
 * https://icooon-mono.com/12781-%e8%82%89%e7%90%83%e3%81%ae%e3%82%a2%e3%82%a4%e3%82%b3%e3%83%b31/
 * Used under the ICOOON MONO licence: https://icooon-mono.com/license/
 */

#go-to-top .go-to-top-button {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(83, 82, 82, 0.14);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 5px 18px rgba(49, 49, 49, 0.18);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

#go-to-top .go-to-top-button:hover {
  box-shadow: 0 7px 22px rgba(49, 49, 49, 0.24);
  transform: translateY(-2px);
}

#go-to-top .go-to-top-button:focus-visible {
  outline: 3px solid rgba(187, 109, 78, 0.42);
  outline-offset: 3px;
}

#go-to-top .go-to-top-button > span {
  display: block;
  width: 31px;
  height: 31px;
  background-color: #535252;
  font-size: 0;
  -webkit-mask: url("paw.svg") center / contain no-repeat;
  mask: url("paw.svg") center / contain no-repeat;
}

@media screen and (max-width: 834px) {
  #go-to-top .go-to-top-button {
    width: 50px;
    height: 50px;
  }

  #go-to-top .go-to-top-button > span {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #go-to-top .go-to-top-button {
    transition: none;
  }
}

