@charset "utf-8";
/* footer *************************************************************************/
#footer {
  background: #000;
  min-width: 1024px;
  padding: 48px 0 12px;
  box-sizing: border-box;
}
.footer-cnt {
  margin: 0 0 48px;
}
.footer-cnt img {
  width: 175px;
  margin: 0 auto 24px;
}
.footer-links {
  display: flex;
  row-gap: 0;
  column-gap: 0;
  justify-content: center;
}
.footer-links li {
  padding: 0 16px;
  box-sizing: border-box;
  border-right: solid 1px #fff;
  line-height: 1;
}
.footer-links li:last-child {
  border-right: none;
}
.footer-links a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}
#copyright {
  color: #fff;
  text-align: center;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  #footer {
    background: #000;
    min-width: 100%;
    padding: 48px 0 48px;
    box-sizing: border-box;
  }
  #footer .inBox {
    padding: 0 24px;
  }
  .footer-cnt {
    margin: 0 0 48px;
  }
  .footer-cnt img {
    width: 150px;
    margin: 0 auto 32px;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 0;
    justify-content: center;
  }
  .footer-links li {
    width: 100%;
    text-align: center;
    padding: 0;
    border-right: solid 0 #fff;
  }
}
