#footer {
  padding: 7rem 0 5rem;
  position: relative;
  color: #fff;
  background: #231815;
  box-sizing: border-box;
  min-width: 1200px;
}
#footer .inner {
  width: 1200px;
  margin: 0 auto;
}
#footer .inner .logo {
  text-align: center;
  margin-bottom: 4rem;
}
#footer .inner a.spc {
  color: #fff;
  display: block;
  padding: 0.7rem;
  transition: 0.3s;
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  line-height: 2;
  width: 300px;
  margin: 0 auto 4rem;
  text-align: center;
}
#footer .inner a.spc::after {
  content: "";
  display: block;
  height: 1px;
  width: 45px;
  margin: 0.5rem auto 0;
  background: #fff;
}
#footer .inner a.spc:hover {
  color: #a86537;
}
#footer .inner .sitemap {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
#footer .inner .sitemap ul {
  width: 19%;
  text-align: center;
}
#footer .inner .sitemap ul li {
  font-size: 1.5rem;
}
#footer .inner .sitemap ul li.head {
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
}
#footer .inner .sitemap ul li.head::after {
  content: "";
  display: block;
  height: 1px;
  width: 45px;
  margin: 0.5rem auto 3rem;
  background: #fff;
}
#footer .inner .sitemap ul li a {
  color: #fff;
  display: inline-block;
  padding: 0.7rem;
  transition: 0.3s;
}
#footer .inner .sitemap ul li a:hover {
  color: #a86537;
}
#footer .inner .foot_navi {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.5rem;
}
#footer .inner .foot_navi a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.5rem 1.5rem;
  transition: 0.3s;
}
#footer .inner .foot_navi a:hover {
  color: #a86537;
}
#footer .inner small {
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
  text-align: center;
  display: block;
}

@media screen and (max-width: 834px) {
  #footer {
    padding: 5rem 0;
    min-width: auto;
  }
  #footer .inner {
    width: 96%;
    margin: 0 2%;
  }
  #footer .inner .logo {
    text-align: center;
    margin-bottom: 3rem;
  }
  #footer .inner .logo img {
    width: 200px;
  }
  #footer .inner .sitemap {
    display: block;
    flex-wrap: wrap;
  }
  #footer .inner .sitemap ul {
    width: 100%;
    text-align: center;
  }
  #footer .inner .sitemap ul li {
    display: none;
  }
  #footer .inner .foot_navi {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  #footer .inner small {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
  }
}