/*======================================================
footer
=======================================================*/
.footer {
  background-color: var(--bg-footer);
  font-family: Montserrat;
  padding: 60px 0 60px;
}
.footer-nav-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-bottom: 32px;
}
.footer-nav-list__item {
  font-size: 1.2rem;
  line-height: 2.16rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease-in-out;
}
.footer-nav-list__item:hover {
  opacity: 0.6;
}

.footer-nav-list__link {
  color: var(--text-white);
}
.copyright {
  display: block;
  text-align: center;
  color: var(--copyright);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.05em;
}
.toTop {
  background-image: url(../images/solid_arrow-up_15px.svg);
  background-position: center 19px;
  position: fixed;
  right: 45px;
  bottom: 45px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--btn-white);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}
.toTop.is-show {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 67px;
  }
  .footer-nav-list {
    padding-left: 36px;
    padding-bottom: 38px;
    flex-wrap: wrap;
    gap: 22px 19px;
    justify-content: left;
  }
  .footer-nav-list__item {
    line-height: 1rem;
  }
  .toTop {
    right: 20px;
    bottom: 10px;
  }
}
