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

/* ----- footer ----- */
.footer {
  width: 100%;
  padding: 25px 20px 10px;
  background-color: #070707;
}
.footer-inner {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-logo {
  display: block;
  width: 50%;
  min-width: 200px;
  max-width: 300px;
}
@media (hover: hover) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}
.footer-share h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}
.footer-share ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-share ul li {
  width: 44px;
  height: 44px;
}
.footer-share ul li a {
  display: block;
}
.footer-share ul li._x a {
  padding: 3px;
}
@media (hover: hover) {
  .footer-share ul li a {
    transition: transform 0.3s;
  }
  .footer-share ul li a:hover {
    transform: scale(1.2);
  }
}
.footer-copyright {
  display: block;
  width: 100%;
  line-height: 1.5;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
  .footer-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .footer-share h2 {
    padding-top: 15px;
  }
  .footer-share ul {
    gap: 10px;
  }
  .footer-copyright {
    font-size: 1.4rem;
  }
}
</pre></body></html>