@charset "utf-8"; /* 공통 CSS */
/* 1. 폰트 */
/* font-family: 'Montserrat', sans-serif; font-family: 'NanumSquare', sans-serif; font-family: 'Noto Sans SC', sans-serif; */
/* font-family: 'Saira', sans-serif; */

/* -------- GNB :: header-search-box--------- */
.table-layout {
  display: table;
  width: 100%;
  height: 100%;
}
.table-cell-layout {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.search_btn {
  /* height: 110px; */
  z-index: 100;
  width: fit-content;
}
.search_btn a {
  color: #fff;
  font-size: 15px; /* line-height: 110px; */
  padding: 12px 3rem;
  border-radius: 47px;
  display: block;
}
.search_btn a i {
  padding-right: 10px;
}
.header-search-box {
  position: relative;
  z-index: 999999;
}
.header-search-open-btn,
.header-search-close-btn,
.header-search-btn {
  width: 100px;
  height: 100px;
}
.header-search-open-btn {
  color: #fff;
  font-size: 24px;
}
.header-search-overlay {
  position: fixed;
  top: 0px;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: visible;
  -webkit-transition: 0.5s left ease-in-out;
  -moz-transition: 0.5s left ease-in-out;
  -o-transition: 0.5s left ease-in-out;
  -ms-transition: 0.5s left ease-in-out;
  transition: 0.5s left ease-in-out;
}
.header-search-inner {
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  height: 86px;
  border-bottom: 1px solid #fff;
  margin: 0px auto;
  opacity: 0;
  filter: Alpha(opacity=0);
  -webkit-transition: all 0.4s 0.4s;
  -moz-transition: all 0.4s 0.4s;
  -o-transition: all 0.4s 0.4s;
  -ms-transition: all 0.4s 0.4s;
  transition: all 0.4s 0.4s;
}
.header-search-inner .header-search-inner-box {
  height: 80px;
  padding-right: 200px;
  position: relative;
  border: 0;
}
.header-search-inner .header-search-word {
  height: 80px;
  width: 100%;
  vertical-align: top;
  background-color: transparent;
  border: 0;
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}
.header-search-inner .header-search-word::placeholder {
  line-height: 80px;
}
.header-search-inner .header-search-btn-controls {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
}
.header-search-inner .header-search-btn-controls span {
  vertical-align: middle;
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: "Pretendard";
}
.header-search-inner .header-search-btn-controls i {
  font-size: 48px;
  vertical-align: middle;
  color: #fff;
}
.header-search-inner .header-search-btn {
  width: 86px;
  height: 86px;
  background: unset;
  border: unset;
}
.header-search-inner .header-search-close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  background: unset;
  border: unset;
}
.header-search-inner .header-search-close-btn i {
  font-size: 2.8rem;
}
.header-search-box.open .header-search-overlay {
  left: 0px;
}
.header-search-box.open .header-search-inner {
  opacity: 1;
  filter: Alpha(opacity=100);
  width: 86%;
}
/* //검색 끝 */

/* 2. blind */
.blind {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}

/* 대표글씨, main-color */
:root {
  --main-color: #0155b7;
  --sub-color: #17549c;
  --font-fam: "Pretendard", sans-serif;
}
.main_color {
  color: #0155b7;
}
.font-eng {
  font-family: "Play", sans-serif;
}
.font-chn {
  font-family: "Noto Sans SC", sans-serif;
}
.emph {
  font-weight: 500;
  color: #f95050;
}
.none {
  display: none;
}
.weight_b {
  font-weight: bold;
}
/* mobile_none */
.m_none {
}
.pc_none {
  display: none;
}

/* page_size */
#main_wrapper {
  width: 100%;
}
#main_container {
  width: 100%;
}
.index_wrap .inner_wrap {
  max-width: 1328px;
}
.inner_wrap {
  max-width: 1400px;
  width: 96%;
  margin: 0 auto;
}

/* header */
#header {
  /* background: #ddd; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.3s;
  border-bottom: 1px solid #dcdcdc;
}
#header.active {
  background-color: #fff;
}
#header.active .pc_gnb .main_menu .gnb-1dep > a {
  color: #333;
}
#header .pc_hover_logo {
  display: none;
}
#header.active .search_btn .img_w,
#header .search_btn .img_b {
  display: none;
}
#header.active .search_btn .img_b {
  display: block;
}

#header.active .pc_hover_logo {
  display: block;
}
#header.active .pc_logo {
  display: none;
}
/* header_hover */
.m_gnb {
  display: none;
}
.pc_gnb .main_menu .gnb-1dep:hover::before {
  opacity: 1;
}

#header.active .pc_gnb .main_menu .gnb-1dep:hover > a {
  color: var(--main-color);
}
.common_wrap {
  max-width: 1730px;
  width: 96%; /* margin: 0 auto; */
  margin-left: auto;
}
.pc_gnb {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.pc_gnb .main_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 68%;
  max-width: 700px;
  height: 100px;
  margin-left: auto;
}
.pc_gnb .main_menu .gnb-1dep {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  min-width: 146px;
}
.pc_gnb .main_menu .gnb-1dep:hover > a {
  color: var(--main-color);
}
.pc_gnb .main_menu .gnb-1dep::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 0px;
  background: var(--main-color);
  transition: all 0.3s;
  transform-origin: bottom;
  transform: translateX(-50%);
}
.pc_gnb .main_menu .gnb-1dep:hover::before {
  height: 18px;
}
.pc_gnb .main_menu .gnb-1dep a {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-family: var(--font-fam);
}
.pc_gnb .main_menu .gnb-1dep > a {
  line-height: 100px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep {
  display: none;
  background: #0155b7c4;
  min-width: 190px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep li a {
  transition: all 0.4s;
  word-break: keep-all;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep > li {
  position: relative;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep > li:first-child {
  /* padding-top: 18px; */
  margin-top: 18px;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep > li:last-child {
  /* padding-bottom: 16px; */
  margin-bottom: 16px;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep li:hover {
  background: #fff;
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep li:hover a {
  color: var(--main-color);
}
.pc_gnb .main_menu .gnb-1dep .gnb-2dep li a {
  color: #fff;
  font-weight: 300;
  padding: 10px 20px;
  font-size: 1.7rem;
}

/* lang_btn */
#header .pc_gnb .lang_btn {
  position: relative;
  height: 100%;
  width: 9%;
}
#header .pc_gnb .lang_btn > a {
  /* line-height: 100px; */
}
#header .pc_gnb .lang_btn > a > span {
  color: #fff;
  border-left: 1px solid #dcdcdc;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: "Pretendard";
}
#header .pc_gnb .lang_btn .lang_list_box {
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  background: var(--main-color);
  display: none;
}
#header .pc_gnb .lang_btn .lang_list_box li a {
  font-size: 17px;
  color: #fff;
  padding: 10px 0;
  transition: all 0.4s;
}
#header .pc_gnb .lang_btn .lang_list_box li:hover a {
  color: var(--main-color);
  background: #fff;
}
#header .pc_gnb .lang_btn > a > span i {
  display: inline-block;
  padding-left: 13px;
  position: relative;
  top: 2px;
  font-size: 2rem;
}
#header.active .pc_gnb .lang_btn span {
  color: #fff;
  border-left: 1px solid #22222273;
  background: var(--main-color);
  border-bottom: 1px solid #fefefe9c;
}
#header .pc_gnb .lang_btn.on span {
}

html.ov_hidden {
  overflow: hidden;
}
.all_menu_btn {
  cursor: pointer;
}
.all_menu_btn span {
  background: url(../../img/all_menu_btn_w.png);
  width: 32px;
  height: 20px;
  display: inline-block;
  transition: all 0.4s;
}
#header.active .all_menu_btn span {
  background: url(../../img/all_menu_btn_b.png);
}
.all_menu_wrap {
  top: 100px;
  display: none;
  position: fixed;
  background: #fff;
  width: 100%;
  left: 0;
  height: 100vh;
}
.all_menu_wrap.show {
  display: block;
  transition: all 0.4s;
}
.all_menu_wrap .all_menu_list {
  max-width: 1730px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch; /* margin-top: 60px; */
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
}
.all_menu_wrap .all_menu_list::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 10%;
  right: 0;
  background: url(../../img/all_menu_bg_letter.png) no-repeat center
    center/contain;
  width: 30%;
  height: 200px;
}
.all_menu_wrap .all_menu_list li a {
  text-align: center;
}
.all_menu_wrap .all_menu_list > li {
  width: 33.3%;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.all_menu_wrap .all_menu_list > li:nth-child(3n) {
  border-right: unset;
}
.all_menu_wrap .all_menu_list > li:nth-child(4),
.all_menu_wrap .all_menu_list > li:nth-child(5) {
  border-bottom: unset;
}
.all_menu_wrap .all_menu_list .gnb-1dep > a {
  font-size: 5rem;
  font-weight: 600;
  text-shadow: 4px 2px #f3bdbd;
  height: auto;
  padding-top: 4rem;
}
.all_menu_wrap .all_menu_list .gnb-2dep {
  padding: 2.4rem 0;
  height: 238px;
}
.all_menu_wrap .all_menu_list .gnb-2dep > li a {
  transition: all 0.4s;
}
.all_menu_wrap .all_menu_list .gnb-2dep > li:hover a {
  color: var(--main-color);
}
.all_menu_wrap .all_menu_list .gnb-2dep a {
  font-size: 2.4rem;
}

/* 3dep */
#header .pc_gnb .main_menu .gnb-2dep > .sub_menu1 {
  position: relative;
  transition: all 0.4s;
}
#header .pc_gnb .main_menu .gnb-2dep > .sub_menu1.on > a {
}
#header .pc_gnb .main_menu .gnb-3dep {
  display: none;
  position: absolute;
  width: 100%;
  right: -100%; /* right: -271px; */
  top: 0;
  background: var(--main-color);
  padding: 10px 0px;
  z-index: 10;
}
#header .pc_gnb .main_menu .gnb-3dep li {
  /* border-bottom: 1px solid #dcdcdc54; */
}
#header .pc_gnb .main_menu .gnb-3dep li a {
  color: #ffffffc4;
}
#header .pc_gnb .main_menu .gnb-3dep li:hover a {
  color: var(--main-color);
}

/* footer */
#main_ft {
  padding: 2rem 0 0;
  position: relative;
  background: #231f20;
}
#main_ft .on,
#main_ft .on a {
  color: #fff;
}
.footer_box .footer_top {
  padding: 2rem 4%; /* border-bottom: 1px solid #999; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_box .footer_top ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.footer_box .footer_top ul li {
  padding: 0 1rem;
  position: relative;
}
.footer_box .footer_top ul li:last-child::after {
  display: none;
}
.footer_box .footer_top ul li::after {
  content: "/";
  display: block;
  position: absolute;
  color: #ddd;
  right: 0;
  top: 0;
}
.footer_box .footer_top ul li.on {
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}
.footer_box .footer_top ul li a {
  color: #999;
  font-size: 1.6rem;
}
.footer_box .footer_bottom {
  display: flex;
  justify-content: flex-start;
  padding: 2rem 4% 3rem;
  flex-wrap: wrap;
}
.footer_box .footer_bottom .footer_logo {
  margin-right: 7rem;
  padding-bottom: 20px;
}
.footer_box .footer_bottom .right_box {
  color: #f4f4f4cf;
}
.footer_box .footer_bottom .right_box.flex_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
/* .footer_box .footer_bottom .right_box .address_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 740px;
  line-height: 1.5;
} */
.footer_box .footer_bottom .right_box .address_box li {
  padding-right: 1.5rem;
  line-height: 1.9;
  position: relative;
  margin-right: 1rem;
}
.footer_box .footer_bottom .right_box .address_box li:nth-child(2) {
  width: 100%;
}
/* .footer_box .footer_bottom .right_box .address_box li::before {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
} */
.footer_box .footer_bottom .right_box .address_box li b {
  color: #f4f4f4cf;
  font-weight: 200;
  padding-right: 10px;
}
.footer_box .footer_bottom .right_box .address_box li:nth-child(2)::before,
.footer_box .footer_bottom .right_box .address_box li:nth-child(4)::before,
.footer_box .footer_bottom .right_box .address_box li:nth-child(5)::before,
.footer_box .footer_bottom .right_box .address_box li:nth-child(6)::before {
  display: none;
}
.footer_box .footer_bottom .right_box .address_box li span {
  padding: 1rem;
}
.footer_box .footer_bottom .right_box .address_box li.kakaoCh {
  width: 100%;
}
.footer_box .footer_bottom .right_box .address_box li.kakaoCh a {
  color: #fff;
}
.footer_box .footer_bottom .right_box .copyright {
  padding-top: 2rem;
}
.footer_box .footer_bottom .right_box .copyright .on {
  text-transform: uppercase;
}
.top_btn_box {
  color: #999;
  position: absolute;
  right: 4%;
  cursor: pointer;
  bottom: 10%;
}
.copyright {
  color: #999;
  padding: 3rem 4% 3rem;
  border-top: 1px solid #999;
}
.private_btn {
  border: 1px solid #dddddd9c;
}
#main_ft .private_btn span a.on {
  padding: 1.6rem 2rem;
  color: #dddddde8;
}

/* 버튼 */
.product_btn {
  display: inline-block;
  width: 242px;
  height: 71px;
  transition: all 0.4s;
}
.product_btn a {
  width: 100%;
  height: 100%;
  position: relative;
  color: var(--main-color);
}
.product_btn span {
  font-size: 18px;
  line-height: 70px;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-weight: 600;
}
.product_btn span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--main-color);
}
.product_btn span:after {
  content: " ";
  display: block;
  transition: width 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 10;
  width: 70%;
  height: 100%;
  border-top: 2px solid #dee6f6;
  border-bottom: 2px solid #dee6f6;
  z-index: 10;
}

/* POP UP */
.about_popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #222222cc;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.about_popup .popup_info {
  width: 63%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_popup .popup_info .art1 {
  display: flex;
  background: #fff;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  position: relative;
  border-radius: 13px;
}
.about_popup .popup_info .art1 .box1 {
  width: 100%;
}
.about_popup .popup_info .art1 .box1 textarea {
  width: 100%;
  height: 300px;
  font-size: 15px;
  padding: 20px;
  border: unset;
}
.about_popup .popup_info .art1 .box1 h1 {
  font-size: 20px;
  padding-bottom: 30px;
}
.about_popup .popup_info .close_btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 14px;
  position: absolute;
  top: -63px;
  right: 0;
  cursor: pointer;
}
.about_popup .popup_info .close_btn i {
  font-size: 18px;
}
.about_popup {
  transform: translate(9999px);
  opacity: 0;
}
.about_popup.show {
  transition: opacity 0.3s linear;
  transform: translate(0);
  opacity: 1;
}
.about_popup .popup_info .textwrap {
  box-shadow: 0px 0px 2px 0px #111111a1;
}

@media (max-width: 1540px) {
}
@media (max-width: 1370px) {
  /* 검색 부분 */
  .common_wrap {
    margin: 0 auto;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li i {
    font-size: 2.2rem;
  }
  .search_btn {
    position: absolute;
    right: calc(2% + 42px);
  }
  .header-search-inner .header-search-btn {
    width: auto;
    height: 60px;
  }
  .header-search-inner .header-search-btn-controls span {
    font-size: 2.4rem;
    visibility: hidden;
  }
  .header-search-inner .header-search-btn-controls i {
    font-size: 24px;
  }
  .search_btn a {
    padding: 10px;
    background: var(--main-color);
  }
  .search_btn a i {
    padding-right: 0;
  }
  .header-search-inner .header-search-word {
    height: 60px;
    font-size: 2.4rem;
  }
  .header-search-inner .header-search-inner-box {
    padding-right: 0;
    height: 60px;
  }
  .header-search-inner {
    height: 60px;
  }
  .header-search-inner .header-search-close-btn {
    border: 1px solid #ffffff73;
    width: 50px;
    height: 50px;
    top: 3vw;
    right: 3vw;
  }
  .header-util-box {
    padding-right: 15px;
  }
  .header-search-inner {
    top: 60px;
  }
  /* 검색 끝 */

  .inner_wrap {
    /* width: 92%; */
  }
  #header {
    height: 60px;
    background: #fff;
  }
  #header .pc_gnb {
    display: none;
  }
  #header .m_gnb {
    display: block;
  }
  #header .m_gnb .mobile_top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
  /* hamberger */
  #header .m_gnb .nav-open-btn {
    display: block;
    height: 30px;
    background-color: unset;
    border: unset; /* 햄버거 애니메이션 */
    -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  #header .m_gnb .nav-open-btn .line {
    background-color: #333;
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 5px;
    margin: 4px auto;
  }
  /* 햄버거 애니메이션 */
  #header:hover .m_gnb .nav-open-btn .line {
    background-color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #header.active .m_gnb .nav-open-btn .line {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .nav-open-btn.active .line {
    background-color: #fff;
  }
  .nav-open-btn.active .line:nth-child(2),
  .nav-open-btn.active .line:nth-child(4) {
    opacity: 0;
  }
  .nav-open-btn.active .line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  .nav-open-btn.active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
  /* show_m_header */
  #header .m_gnb .main_menu {
    height: 100vh;
    background: linear-gradient(50deg, #86d6f8e3, #0155b7);
    right: -50%;
    position: absolute;
    top: 60px;
    width: 50%;
    transition: all 0.4s;
  }
  #header .m_gnb .main_menu.right {
    right: 0;
  }
  #header .m_gnb .main_menu .lang_btn_mobile {
    padding: 20px 24px;
    border-bottom: 1px solid #dddddd80;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li {
    color: #fff;
    padding-right: 24px;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li.on a {
    font-weight: 700;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li a {
    color: #fff;
  }
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li i {
    font-size: 2rem;
    position: relative;
    top: 2px;
  }
  #header .m_gnb .main_menu .gnb-1dep {
    border-bottom: 1px solid #dddddd80;
  }
  #header .m_gnb .main_menu .gnb-1dep > a {
    color: #fff;
  }
  #header .m_gnb .main_menu .gnb-2dep {
    background: var(--main-color); /* background: var(--sub-color); */
    display: none;
  }
  #header .m_gnb .main_menu .gnb-1dep a {
    padding: 20px 24px;
    position: relative;
  }
  #header .m_gnb .main_menu .gnb-1dep .gnb-2dep a {
    padding: 14px 24px;
    position: relative;
    font-size: 15px;
    color: #fff;
  }
  #header .m_gnb .main_menu .gnb-1dep .gnb-2dep a br {
    display: none;
  }
  #header .m_gnb .main_menu .gnb-1dep.active a::after {
    transform: translate(-50%, -50%);
  }
  #header .m_gnb .main_menu .gnb-1dep > a:after {
    background-color: #fff;
    content: "";
    width: 15px;
    height: 1px;
    position: absolute;
    right: 2%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #header .m_gnb .main_menu .gnb-1dep > a:before {
    background-color: #fff;
    content: "";
    width: 15px;
    height: 1px;
    position: absolute;
    right: 2%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
  }
  #header .m_gnb .gnb-1dep.active .gnb-2dep {
    display: block;
  }
  #header .m_gnb .gnb-1dep.active .gnb-3dep {
    background: #6c114dad;
  }
}
@media (max-width: 1080px) {
  /* mobile_none */
  .m_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
  .private_btn {
    margin: 2rem auto 0;
  }
  .copyright {
    padding: 2rem 4% 0;
  }
  .top_btn_box {
    bottom: 5%;
  }
}
@media (max-width: 768px) {
  /* header */
  #header .m_gnb .main_menu .lang_btn_mobile .selected_lang_box li a {
    font-size: 14px;
  }
  #header .m_gnb .main_menu {
    right: -100%;
    width: 100%;
  }
  #header .m_gnb .main_menu .gnb-1dep a {
    padding: 12px 14px;
    font-size: 14px;
  }
  #header .m_gnb .main_menu .gnb-1dep .gnb-2dep a {
    padding: 12px 14px;
    font-size: 13px;
  }
  /* footer */
  .footer_box .footer_top {
    display: flex;
    flex-direction: column;
  }
  #main_ft {
    padding: 2rem 0;
  }
  .footer_box .footer_bottom .right_box .address_box li:after {
    display: none;
  }
  .footer_box .footer_bottom .right_box .address_box {
    display: flex;
    justify-content: center;
  }
  .footer_box .footer_bottom .right_box .address_box li:nth-child(2) {
    width: auto;
  }
}
@media (max-width: 480px) {
  .m480_none {
    display: none;
  }
  .footer_logo {
    width: 150px;
  }
  .footer_logo img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .footer_box .footer_bottom .right_box .address_box li:nth-child(1) {
    padding-right: 0;
    text-align: left;
    padding-left: 38px;
    text-indent: -38px;
  }
  .footer_box .footer_bottom .footer_logo img {
    max-width: 120px;
  }
  #main_ft .footer_box .footer_bottom .address_box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  #main_ft .footer_box .footer_bottom .address_box .div_span {
    display: none;
  }
  #main_ft .footer_box .footer_bottom > li {
    padding: 2px;
  }
  #main_ft .footer_box .footer_bottom .add_tit {
    font-weight: 600;
    padding-right: 10px;
    color: #d5d5d5;
  }
  #main_ft .footer_box .copyright {
    font-size: 1.4rem;
  }
  .footer_box .footer_bottom .right_box .address_box li::before {
    display: none;
  }

  /* 개인정보처리방침 */
  .about_popup .popup_info .art1 {
    padding: 20px;
  }
  .about_popup .popup_info {
    width: 80%;
  }
  .about_popup .popup_info .art1 .box1 h1 {
    font-size: 15px;
  }
  .about_popup .popup_info .art1 .box1 textarea {
    font-size: 13px;
  }
  .about_popup .popup_info .close_btn i {
    font-size: 13px;
  }
  .about_popup .popup_info .close_btn {
    top: -50px;
    padding: 10px;
  }
}
