#footer {
  display: flex;
  justify-content: center;
  background-color: #323232;
  position: relative;
  z-index: 1;
}

.footer {
  display: block; /* flex → block */
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding-top: 18px; /* 약 11.6% */
  padding-left: 40px !important;
  padding-right: 40px !important;
  padding-bottom: 18px !important;
  background-color: transparent;
  overflow: hidden; /* 넘침 방지 (선택 사항) */
}

.footer_hr {
  border-bottom: 1px solid #767676;
  width: 100%;
}
.footer_top {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 24px;
}
.footer_top_logo {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.footer_top_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer_bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 190px;
  gap: 10px;
}
.footer_bottom > button {
  display: inline-flex;
}
.footer_bottom_text {
  font-size: 10px;
  font-weight: 300;
  line-height: 140%;
}
.footer .company {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .company_policy {
  display: flex;
  gap: 10px;
}
.footer .company_policy_button {
  background-color: transparent;
}
.footer .company_policy_button > span {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: white;
}
.footer .company_info {
  display: flex;
  gap: 10px;
  font-size: 10px;
  font-weight: 300;
  line-height: 140%;
  color: white;
}
.footer .social {
  display: flex;
  gap: 20px;
}
.footer .footer_top.media_mobile {
  display: none;
}

.vertical_pipe {
  display: inline-flex;
  width: 1px;
  height: 12px;
  background-color: #767676;
}

.logo_furence {
  display: inline-flex;
  width: 74px;
  height: 17px;
  background: transparent
    url("../../assets/image/common/footer/img_furence.svg") padding-box
    no-repeat;
  background-size: 74px;
  cursor: pointer;
}
.logo_ACT {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: transparent url("../../assets/image/common/footer/img_ACT.svg")
    padding-box no-repeat;
  background-size: auto;
}
.logo_KAB {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: transparent url("../../assets/image/common/footer/img_KAB.svg")
    padding-box no-repeat;
  background-size: auto;
}
.logo_facebook {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: transparent
    url("../../assets/image/common/footer/icon_facebook.svg") padding-box
    no-repeat;
  background-size: auto;
}
.logo_instagram {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: transparent
    url("../../assets/image/common/footer/icon_instagram.svg") padding-box
    no-repeat;
  background-size: auto;
}
.logo_naver_blog {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: transparent
    url("../../assets/image/common/footer/icon_naver_blog.svg") padding-box
    no-repeat;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  .footer .footer_top.media_pc {
    display: none;
  }
  .footer .footer_top.media_mobile {
    display: flex;
    flex-direction: column;
  }
  .footer .footer_top.media_mobile .company_policy {
    justify-content: center;
  }
  .footer .footer_top.media_mobile .footer_top_content {
    justify-content: center;
  }
  .footer .footer_top.media_mobile .footer_top_content .company_info {
    text-align: center;
  }
  .footer_bottom {
    flex-direction: column;
    padding-left: 0px;
  }
  .footer_bottom > p {
    width: 100%;
  }
  .footer_bottom_text {
    text-align: center;
  }
}
