footer {
  background-color: #fff;
  padding: 40px 0 65px 0;
}
footer .footer-logo {
  max-width: 170px;
  width: 100%;
  margin: 0 auto 30px auto;
}
footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}
footer .footer-nav-list {
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}
footer .footer-nav-list::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 18px;
  background-image: url(../img/footer/gaibu.png);
  background-repeat: no-repeat;
  background-size: cover;
}
footer .footer-nav-list:not(:last-child) {
  padding-right: 5px;
  border-right: 1px solid #3e3a39;
}
footer .footer-copy-txt {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  footer {
    padding: 20px 0 100px 0;
  }
  footer .footer-logo {
    max-width: 126px;
  }
  footer .footer-wrap {
    padding: 0 5px;
  }
  footer .footer-nav {
    gap: 5px;
    margin-bottom: 15px;
  }
  footer .footer-nav-list {
    font-size: 15px;
  }
  footer .footer-nav-list::after {
    width: 14px;
    height: 10px;
    background-size: contain;
  }
  footer .footer-copy-txt {
    max-width: 160px;
  }
}