<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*───────────────────────────────────────────────────────────

	Mixin

───────────────────────────────────────────────────────────*/
/*───────────────────────────────────────────────────────────

	Footer

───────────────────────────────────────────────────────────*/
.footer {
  max-width: 1840px;
  height: 130rem;
  padding: 0 20rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footer {
    height: 100rem;
  }
}
@media (max-width: 800px) {
  .footer {
    height: auto;
  }
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  height: 100%;
  padding: 0;
  border-top: 1px solid var(--light-gray-five);
}
@media (max-width: 800px) {
  .footer .inner {
    padding: 40rem 0;
  }
}
@media (max-width: 445px) {
  .footer .inner {
    padding: 25rem 0;
  }
}
.footer__copy {
  display: block;
  font-size: 15rem;
  color: #aaa;
  text-align: center;
}
@media (max-width: 800px) {
  .footer__copy {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .footer__copy {
    font-size: 13.0434782609rem;
  }
}

.scroll-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20rem;
  bottom: -100rem;
  width: 70rem;
  height: 70rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  border: none;
  border-radius: 5rem;
  background-color: var(--primary-color);
  scale: 0;
  transition-property: visibility, opacity, background-color, box-shadow, transform, scale;
  transition-duration: 0.3s;
  z-index: 1000;
  /* Media Query */
}
@media (min-width: 1025px) {
  .scroll-to-top:hover {
    box-shadow: 5rem 5rem 5rem rgba(0, 0, 0, 0.1);
    transform: translate3d(-3rem, -3rem, -3rem);
  }
}
@media (max-width: 640px) {
  .scroll-to-top {
    width: 50rem;
    height: 50rem;
  }
}
.scroll-to-top.show {
  bottom: 20rem;
  visibility: visible;
  opacity: 1;
  scale: 1;
}
.scroll-to-top.footer-bottom {
  position: absolute;
  top: -90rem;
  bottom: auto;
  /* Media Query */
}
@media (max-width: 640px) {
  .scroll-to-top.footer-bottom {
    top: -70rem;
  }
}
.scroll-to-top__icon {
  font-size: 26rem;
  transition: transform 0.3s;
}
@media (max-width: 800px) {
  .scroll-to-top__icon {
    font-size: 23.6363636364rem;
  }
}
@media (max-width: 445px) {
  .scroll-to-top__icon {
    font-size: 20rem;
  }
}
.scroll-to-top__text {
  display: block;
  margin-top: 5rem;
  font-size: 15rem;
  line-height: 1;
  /* Media Query */
}
@media (max-width: 800px) {
  .scroll-to-top__text {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .scroll-to-top__text {
    font-size: 13.0434782609rem;
  }
}
@media (max-width: 640px) {
  .scroll-to-top__text {
    display: none;
  }
}</pre></body></html>