@charset "utf-8";

#foot_layout {
  position: relative;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: #222;
}
body[class*="sub"] #foot_layout .footer-wrap {
  padding: 7rem 2rem;
}
#foot_layout .footer-wrap {
  max-width: 172rem;
  margin: 0 auto;
  padding: 7rem 10rem 7rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
#foot_layout .footer-top {
  display: flex;
  gap: 4.8rem;
}
#foot_layout .footer-top > li {
  position: relative;
  width: 50%;
  padding: 2.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: #fff;
  border-top: 1px solid #949494;
  border-bottom: 1px solid #949494;
}
#foot_layout .footer-top > li:first-of-type:before {
  position: absolute;
  top: 0;
  right: -2.4rem;
  width: 1px;
  height: 100%;
  background: #949494;
  content: "";
}
#foot_layout .footer-top > li p {
  font-size: 1.6rem;
  font-weight: 700;
}
#foot_layout .footer-top .address-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #949494;
  font-size: 1.6rem;
  font-weight: 700;
}
#foot_layout .footer-top .address-info .dt {
  display: inline-block;
  min-width: 3.6rem;
  margin-right: 0.6rem;
}
#foot_layout .footer-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
#foot_layout .footer-bottom .footer-logo {
  width: 26rem;
}
#foot_layout .footer-bottom p {
  color: #949494;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 1820px) {
  #foot_layout .footer-wrap {
    max-width: 100%;
    padding: 7rem 2rem;
  }
}
@media (max-width: 1001px) {
  #foot_layout .footer-wrap {
    max-width: 100%;
    padding: 4rem 2rem;
  }
}
@media (max-width: 800px) {
  #foot_layout .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  #foot_layout .footer-top > li {
    width: 100%;
  }
  #foot_layout .footer-top > li:first-of-type:before {
    display: none;
  }
  #foot_layout .footer-top > li:nth-child(n + 2) {
    border-top-width: 0;
    padding-top: 0;
  }
  #foot_layout .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
/* 250205 개인정보처리방침 링크추가 */
#foot_layout .footer-bottom p a{
  color: #12D0BE;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  #foot_layout .footer-bottom p a{
    display: block;
  }
}