@charset "utf-8";

.footer {
  position: relative;
  background: #f5f1eb;
  padding-top: 60px;
  padding-bottom: 70px;
  text-align: center;
}
.footer .page-top {
  position: absolute;
  top: -22px;
  left: 0;
  width: 100%;
  text-align: center;
}

.footer-logo {
  margin-bottom: 35px;
}
.footer-logo a {
  display: inline-block;
  max-width: 216px;
  width: 50%;
}
.footer-logo a img {
  width: 100%;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto 18px;
}
.footer-nav li {
  font-size: 1.6rem;
  line-height: 1;
}
.footer-nav li a:hover {
  opacity: 1;
}
.footer-nav li:hover {
  color: #89662d;
}
.footer-nav.sub-nav {
  max-width: 490px;
  margin-bottom: 25px;
}
.footer-nav.sub-nav li {
  font-size: 1.3rem;
}
.footer .more-btn {
  margin-bottom: 40px;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 22px;
}
.footer-info li {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 16px;
  border-right: 1px solid #2f2a25;
}
.footer-info li:last-of-type {
  border: none;
}
.footer-info li a:hover {
  opacity: 1;
  color: #89662d;
}
.footer .sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer .sns-links li {
  margin-right: 10px;
}
.footer .sns-links li:last-of-type {
  margin-right: 0;
}
.footer .sns-links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2f2a25;
  /* transition: .3s; */
}
.footer .sns-links li a:hover {
  opacity: 1;
  background: #675539;
}
.copyright {
  font-size: 1.1rem;
}

@media screen and (max-width:767px) {
  .footer-logo {
    margin-bottom: 50px;
  }
  .footer-nav {
    flex-direction: column;
  }
  .footer-nav li {
    font-size: 3.6vw;
    margin-bottom: 3.6vw;
  }
  .footer-nav.sub-nav {
    margin-bottom: 40px;
  }
  .footer-nav.sub-nav li {
    font-size: 3vw;
  }
  .footer-info {
    flex-direction: column;
  }
  .footer-info li {
    font-size: 3vw;
    margin-bottom: 2.6vw;
    border-right: none;
  }
  .footer-info li:nth-of-type(2) a {
    color: #89662d;
  }
  .footer .sns-links {
    margin-bottom: 40px;
  }
  .footer .sns-links li {
    margin-right: 20px;
  }
  .footer .sns-links li a {
    width: 65px;
    height: 65px;
  }
  .copyright {
    font-size: 3vw;
  }
}
@media screen and (max-width:480px) {
  .footer-nav li {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  .footer-nav.sub-nav {
    margin-bottom: 30px;
  }
  .footer-nav.sub-nav li {
    font-size: 1.6rem;
  }
  .footer-info li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .footer .more-btn {
    margin-bottom: 30px;
  }
  .footer .sns-links li a {
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .copyright {
    font-size: 1.3rem;
  }
}