/* 1281 ~ ***********************************************/

footer {
  width: 100%;
}

.footer_area {
  background-color: #c31a21;
  padding: 75px 0;
  display: flex;
  justify-content: space-evenly;
}

.footer_area .footerCon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_area .footerCon {
  font-size: 14px;
  color: #fff;
  opacity: 80%;
}

.footer_area .footerCon ul {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
}

.footer_area .footerCon ul li {
  position: relative;
  padding-right: 20px;
  padding-bottom: 10px;
}

.footer_area .footerCon ul li:nth-last-of-type(1) {
  padding-bottom: 0;
}

.footer_area .footerCon ul li::after {
  content: "";
  border-right: 10px;
  position: absolute;
  width: 2px;
  height: 14px;
  background-color: #fff;
  margin-left: 10px;
  opacity: 40%;
}

.footer_area .footerCon ul li:nth-of-type(3)::after,
.footer_area .footerCon ul li:nth-of-type(6)::after,
.footer_area .footerCon ul li:nth-of-type(7)::after {
  display: none;
}

.footer_area .footerCon .copyr {
  padding-top: 50px;
}
.footer_area .footerCon .copyr-m {
  display: none;
}
.footer_area .footer_logo {
  width: 130px;
}
.footer_area .footer_logo > img {
  width: 100%;
}

.footer_area .footerCon > div:first-child {
  display: flex;
  flex-direction: row;
}
.footer_button_wrap {
  display: flex;
  gap: 0.5vw;
}
.footer_button_wrap > .footer_btn {
  height: 36px;
  line-height: 36px;
  padding: 0 20px;
  border: 1px solid #fff;
  opacity: 0.8;
  transition: 0.3s;
  font-size: 14px;
  color: #fff;
  background: none;
  cursor: pointer;
  display: inline-block;
}
.footer_button_wrap > .footer_btn:hover {
  opacity: 1;
}

.popup_wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  display: none;
}
.popup_wrap.on {
  display: block;
}
.popup_wrap > .dim {
  width: 100dvw;
  height: 100dvh;
  background: #000;
  opacity: 0.5;
}

.popup_wrap .popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  width: 620px;
}
.popup_wrap .popup .popup_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup_wrap .popup .popup_top > h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.popup_wrap .popup .popup_top > .btn_close {
  width: 24px;
  height: 24px;
  background: no-repeat center / 14px url(../img/close.png);
  border: none;
  cursor: pointer;
}
.popup_wrap .popup .popup_top > .btn_close > span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 0);
}
.popup_wrap .popup .popup_content {
  margin-top: 28px;
}
.popup_wrap .popup .popup_content li + li {
  margin-top: 24px;
}
.popup_wrap .popup .popup_content [class*="_form"] .form_top {
  display: flex;
  justify-content: space-between;
}
.popup_wrap .popup .popup_content [class*="_form"] .form_top span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.popup_wrap .popup .popup_content [class*="_form"] .inquiry_number {
  color: #999;
}
.popup_wrap .popup .popup_content [class*="_form"] .form_bottom {
  margin-top: 10px;
}
.popup_wrap .popup .popup_content [class*="_form"] .form_bottom input,
.popup_wrap .popup .popup_content [class*="_form"] .form_bottom textarea {
  padding: 16px 18px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  box-sizing: border-box;
  font-family: "Pretendard";
}
.popup_wrap .popup .popup_content [class*="_form"] .form_bottom textarea {
  padding: 14px 18px;
  height: 180px;
  resize: none;
}
.popup_wrap .popup .popup_bottom {
  margin-top: 24px;
  display: flex;
  justify-content: right;
}
.popup_wrap .popup .popup_bottom .btn {
  padding: 0 18px;
  border-radius: 12px;
  min-width: 90px;
  cursor: pointer;
}
.popup_wrap .popup .popup_bottom .btn + .btn {
  margin-left: 10px;
}
.popup_wrap .popup .popup_bottom .btn > span {
  font-size: 16px;
  line-height: 52px;
  font-weight: 700;
}

.popup_wrap .popup .popup_bottom .btn.grey {
  border: 1px solid #e3e3e3;
  background: #fff;
}
.popup_wrap .popup .popup_bottom .btn.grey > span {
  color: #8D8D8D;
}
.popup_wrap .popup .popup_bottom .btn.dark {
  border: none;
  background: #000;
}
.popup_wrap .popup .popup_bottom .btn.dark > span {
  color: #fff;
}


@media (min-width: 1281px) {
}

/* 768px ~ 1280px ***********************************************/
@media (min-width: 768px) and (max-width: 1280px) {
  .footer_area {
    padding: 50px 0;
  }

  .footer_area .footerCon {
  }

  .footer_area .footerCon {
    font-size: 12px;
    color: #fff;
    opacity: 80%;
  }

  .footer_area .footerCon ul {
    display: flex;
    flex-wrap: wrap;
    width: 530px;
  }

  .footer_area .footerCon ul li {
    position: relative;
    padding-right: 20px;
    padding-bottom: 10px;
  }
  .footer_area .footerCon ul li::after {
    content: "";
    border-right: 10px;
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #fff;
    margin-left: 10px;
    opacity: 40%;
  }

  .footer_area .footerCon ul li:nth-of-type(3)::after,
  .footer_area .footerCon ul li:nth-of-type(6)::after {
    display: none;
  }

  .footer_area .footerCon .copyr {
    padding-top: 50px;
  }
  .footer_area .footer_logo {
    width: 80px;
  }
  .footer_area .footer_logo > img {
    width: 100%;
  }
}

/* 360px ~ 767px  ***********************************************/
@media (max-width: 767px) {
  .footer_area {
    padding: 20px 0;
    display: flex;
    align-items: center;
  }

  .footer_area .footerCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #fff;
    opacity: 80%;
  }

  .footer_area .footerCon ul {
    display: none;
  }

  .footer_area .footerCon .copyr-m {
    display: block;
    padding: 25px 0;
  }

  .footer_area .footerCon .copyr {
    padding: 30px;
  }
  .footer_area .footer_logo {
    display: none;
  }

  .footer_button_wrap {
    display: none;
  }
  .footer_button_wrap.mobile {
    display: block;
  }

  .popup_wrap .popup {
    width: calc(100% - 6.6667vw * 2);
  }

  .popup_wrap .popup .popup_top > h3 {
    font-size: 4.1026vw;
  }

  .popup_wrap .popup .popup_content [class*="_form"] .form_top span {
    font-size: 2.8205vw;
  }

  .popup_wrap .popup .popup_content li + li {
    margin-top: 4.8718vw;
  }

  .popup_wrap .popup .popup_content [class*="_form"] .form_bottom {
    margin-top: 2.0513vw;
  }

  .popup_wrap .popup .popup_content [class*="_form"] .form_bottom input, .popup_wrap .popup .popup_content [class*="_form"] .form_bottom textarea {
    font-size: 3.3333vw;
    line-height: 4.8718vw;
    padding: 3.3333vw 3.5897vw;
  }

  .popup_wrap .popup .popup_content [class*="_form"] .form_bottom textarea {
    padding: 2.8205vw 3.5897vw;
    height: 36.9231vw;
  }

  .popup_wrap .popup .popup_bottom {
    margin-top: 4.8718vw;
  }

  .popup_wrap .popup .popup_bottom .btn {
    padding: 0 3.5897vw;
  }
  .popup_wrap .popup .popup_bottom .btn > span {
    line-height: 10.7692vw;
    font-size: 3.3333vw;
  }
}