#footer {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
#footer_inner {
  width: 100%;
}

.footer__fix {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 800;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .footer__fix {
    bottom: 1rem;
    right: 1rem;
  }
  .footer__fix .socialList {
    display: none;
  }
}
.footer__logo {
  width: 335px;
  max-width: 80%;
  margin: auto auto 5rem;
}
.footer .socialList {
  flex-direction: column;
  align-items: flex-end;
}
.footer .socialList li {
  padding: 0 1em 0.5em 0;
}

.scrollButton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid #000000;
  border-width: 1px;
  background: #ffffff;
  font-size: 1.4rem;
  padding: 1em;
  font-weight: 700;
  transition: 0.7s;
}
.scrollButton::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: solid #000000;
  border-width: 1px 1px 0 0;
  transform: rotate(-45deg);
}
.scrollButton:not(.inview) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 1em;
  margin: 0;
  background: #000000;
  color: #fff;
}
