@charset "UTF-8";

/* layout */
.inner {
  width: var(--containerSize);
  margin: 0 auto;
}

/* header */
.header {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--Stroke);
  border-bottom: 1px solid var(--Stroke);
  height: 100px;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.header .logo a {
  display: flex;
}
.header ul.link-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header ul.link-group li a.ico {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header ul.link-group li.search a.ico {
  width: 24px;
  height: 24px;
  background: url(/assets/DOM_0000009/image/common/ico-search.svg) center no-repeat;
}
.header ul.link-group li.trans a.ico {
  width: 24px;
  height: 24px;
  background: url(/assets/DOM_0000009/image/common/ico-trans.svg) center no-repeat;
}
.header ul.link-group li.trans .dropdownCon {
  width: fit-content;
  box-shadow: 10px 10px 10px rgb(0 0 0 / 20%);
  border: 1px solid var(--Stroke);
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.header ul.link-group li.sitemap-wrap a.sitemap-btn {
  background: url(/assets/DOM_0000009/image/common/ico-sitemap.svg) center no-repeat;
}

/* 사이트링크 */
.siteLink-wrap {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;
  /* padding: 0 16px; */
  box-sizing: border-box;
  margin: 0 auto;
}
.siteLink-wrap .siteLinkCon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.siteLink-wrap .siteLinkCon .siteLinkItem {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.siteLink-wrap .siteLinkCon .siteLinkItem::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 22px;
  background: var(--Stroke);
}
.siteLink-wrap .siteLinkCon .siteLinkItem:last-child::after {
  content: none;
}
.siteLink-wrap .siteLinkCon .siteLinkItem a {
  color: var(--Greyscale8);
  font-size: 16px;
  font-weight: 500;
}

/* footer */
footer .footerWrap .infoBox {
  border-top: 1px solid var(--Stroke);
  border-bottom: 1px solid var(--Stroke);
  display: flex;
  align-items: center;
  padding: 23px 32px;
  box-sizing: border-box;
}
footer .footerWrap .infoBox nav {
  width: var(--containerSize);
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  font-size: 17px;
}
footer .footerWrap .infoBox nav a.bold {
  font-weight: 600;
  color: var(--Primary1);
}
footer .footerWrap .infoBox nav a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background: var(--Stroke);
  margin: 0 8px;
}
footer .footerWrap .infoBox nav a:last-child:after {
  display: none;
}
footer .footerWrap .footerInfo {
  background: var(--BackgroundDark);
  color: #fff;
  height: 170px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}
footer .footerWrap .footerInfo .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footerWrap .footerInfo .inner .left {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* GNB */

/* 상단 메뉴 (접근성/모바일/사이트맵 적용) */
body::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.76, 0.01, 0.24, 1);
}
body.gnb-open::before {
  opacity: 1;
  visibility: visible;
}
/********* 컨텐츠 넓이 ********
.inner {
  width: 100%;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}

@media only screen and (max-width: 1260px) {
  .inner {
    padding: 0 20px;
  }
}
  */
#exit-header {
  position: relative;
  z-index: 20;
  background: #fff;
}
.sub #exit-header {
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1800px) {
  #exit-header {
    border-bottom: 1px solid #ddd;
  }
}

/******** thead ********/
.thead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
.thead .logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.thead .logo h1 > a {
  height: 30px;
  display: inline-block;
}
.thead .logo img {
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 1420px) {
  .inner {
    width: 100%;
  }
  .siteLink-wrap {
    padding: 0 24px;
  }
  .siteLink-wrap .siteLinkCon .siteLinkItem::after {
    display: none;
  }
}

/***** 태블릿 *****/
@media only screen and (max-width: 960px) {
  .thead {
    padding: 20px 0;
  }
  .thead .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .thead .logo h1 > a {
    height: 26px;
  }
}

/******** GNB ********/
.gnb-wrap {
  color: var(--Greyscale9);
  flex: 1;
}
.gnb-wrap a {
  color: var(--Greyscale9);
}
.gnb-wrap > .inner {
  display: flex;
  justify-content: space-between;
}
.gnb-wrap > .inner .lf {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnb-wrap .gnb-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
/********** 사이트맵 **********/
.sitemap-layer {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  overflow: hidden;
}

.sitemap-layer::after {
  content: "";

  display: block;
  width: 640px;
  height: 600px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(/assets/DOM_0000009/Img/common/sitemap-bg.png) bottom / contain no-repeat;
}

.sitemap-layer.on {
  display: block;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.sitemap-layer .sitemap-close {
  position: absolute;
  top: 40px;
  right: 90px;
  display: block;
  width: 32px;
  height: 16px;
  font-size: 0;
}
.sitemap-layer .sitemap-close:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transform: rotate(45deg);
}
.sitemap-layer .sitemap-close:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transform: rotate(-45deg);
}
.sitemap-layer .sitemap-con {
  display: flex;
  justify-content: center;
}
.sitemap-layer .menu-list-wrap {
  width: 100%;
}
.sitemap-layer .menu-list-wrap .gnb {
  display: flex;

  gap: 16px;
  width: 100vw;
  padding: 0 80px;
  box-sizing: border-box;
}
.sitemap-layer .menu-list-wrap .gnb .btn-arrow {
  display: none;
}
.sitemap-layer .menu-list-wrap .gnb > li {
  /* flex: 1 1 16.66666666666667%; */
  flex: 1 1 calc(100% / 6);
  align-self: stretch;
  height: 100%;
  min-height: 100vh;
  padding: 90px 0 100px;
  overflow: hidden;
  box-sizing: border-box;
}
.sitemap-layer .menu-list-wrap .gnb-menu {
  position: relative;
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
  /* padding: 0 4rem; */

  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  border: 1px solid var(--Primary1);
  border-radius: 16px;
  box-sizing: border-box;

  transition: linear 300ms;
}
.sitemap-layer .menu-list-wrap .gnb-menu:hover {
  color: var(--Primary1);
  transition: linear 300ms;
}
.sitemap-layer .menu-list-wrap .lnb-box {
  margin-top: 40px;
  /* padding: 0 4rem; */
  box-sizing: border-box;
}
.sitemap-layer .menu-list-wrap .lnb-box .inner {
  max-width: 100%;
}
.sitemap-layer .menu-list-wrap .lnb-box .gnb-left {
  display: none;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 {
  width: 100%;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 > li {
  transition: all 0.3s;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 > li + li {
  margin-top: 20px;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 > li > a {
  font-weight: 500;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: transform 0.8s cubic-bezier(0.47, 0, 0.31, 1.04),
  opacity 0.8s cubic-bezier(0.47, 0, 0.31, 1.04);
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 > li > a:focus,
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list1 > li > a:hover {
  text-decoration: underline;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 {
  padding: 10px 0 10px;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 > li + li {
  margin-top: 8px;
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 > li > a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
  line-height: 1.3;
  color: #666;
  word-break: keep-all;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: transform 0.8s cubic-bezier(0.47, 0, 0.31, 1.04),
  opacity 0.8s cubic-bezier(0.47, 0, 0.31, 1.04);
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 > li > a:focus,
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 > li > a:hover {
  color: var(--Primary);
}
.sitemap-layer .menu-list-wrap .lnb-box .lnb-list2 > li > a::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  background: #666;
}
.sitemap-layer.on .menu-list-wrap .lnb-box .lnb-list1 > li > a {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.47, 0, 0.31, 1.04),
  opacity 0.8s cubic-bezier(0.47, 0, 0.31, 1.04);
}
.sitemap-layer.on .menu-list-wrap .lnb-box .lnb-list2 > li > a {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.47, 0, 0.31, 1.04),
  opacity 0.8s cubic-bezier(0.47, 0, 0.31, 1.04);
}
.sitemap-wrap .sitemap-btn {
  position: relative;
  top: 0;
  right: 0;
  display: block;
  width: 17px;
  height: 14px;
  font-size: 0;
}

.gnb-wrap #gnb {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.gnb-wrap .gnb-box .gnb-menu {
  position: relative;
  display: block;
  font-weight: 500;
  transition: ease-in-out 0.2s;
  font-size: 20px;
  font-weight: 600;
}

.gnb-wrap .gnb-box .gnb-menu:hover {
  color: var(--Primary);
  font-weight: 700;
}
/* 1dep */
.gnb-box .gnb > li .lnb-box {
  display: none;
  position: absolute;
  top: 151px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: fit-content;
  opacity: 1;
  visibility: visible;
  border-top: 1px solid #cdcdcd;
  background: #fff;
  z-index: 40;
  overflow: hidden;
}
.gnb-box .gnb > li .lnb-box .inner {
  display: flex;
  min-height: 400px;
  align-items: start;
  gap: 0;
}
.gnb-box .gnb > li .lnb-box .gnb-left {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  padding: 40px 0;
}
.gnb-box .gnb > li .lnb-box .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -510px;
  width: 50%;
  height: 100%;
  background: #eef7f2;
}
.gnb-box .gnb > li .lnb-box .gnb-left::after {
  content: "";
  display: inline-block;
  width: 346px;
  height: 242px;
  position: absolute;
  bottom: 0;
  left: -148px;
}
.gnb-box .gnb > li .lnb-box .gnb-left strong {
  font-size: 20px;
}
.gnb-box .gnb > li .lnb-box .gnb-left em {
  display: block;
  margin-top: 14px;
  line-height: 150%;
  color: var(--Greyscale7);
  font-size: 16px;
}
.gnb-box .gnb > li .lnb-list1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  width: 100%;
  padding: 30px;
  background: #fff;
  height: 100%;
}
.gnb-box .gnb > li .lnb-list1 > li {
  width: calc(25% - 30px);
}
.gnb-box .gnb > li .lnb-list1 > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: ease-in-out 0.2s;
}
.gnb-box .gnb > li .lnb-list1 > li > a:hover,
.gnb-box .gnb > li .lnb-list1 > li > a:active,
.gnb-box .gnb > li .lnb-list1 > li > a:focus {
  font-weight: 500;
  background: var(--Primary);
  border: 1px solid var(--Primary);
  color: #fff;
}
.gnb-box .gnb > li .lnb-list1 > li > a .btn-arrow {
  display: none;
}

/* 2dep */
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 {
  padding: 15px;
}
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li + li {
  margin-top: 15px;
}
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li a {
  position: relative;
  padding-left: 10px;
  font-weight: 400;
  transition: ease-in-out 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #666;
  border-radius: 100%;
}
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li a:hover,
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li a:active,
.gnb-box .gnb > li .lnb-list1 > li .lnb-list2 > li a:focus {
  font-weight: 500;
  color: var(--Primary);
}

/******** mbtn-box ********/
.mbtn-box {
  display: none;
}

/***** 모바일 *****/
@media only screen and (max-width: 1460px) {
  .header {
    padding: 0 24px;
    box-sizing: border-box;
  }
  .header .inner {
    width: 100%;
  }
  .sitemap-layer .menu-list-wrap .lnb-box {
    margin-top: 30px;
  }
  footer .footerWrap .infoBox nav {
    width: 100%;
  }
}
@media only screen and (max-width: 1260px) {
  /* header */
  .header {
    border-top: 0;
  }
  .header ul.link-group {
    display: none;
  }

  /******** GNB ********/
  .gnb-wrap {
    display: none;
  }

  /******** mbtn-box ********/
  .mbtn-box {
    display: block;
  }
  .mbtn-box .open {
    position: relative;
    display: block;
    width: 22px;
    height: 19px;
    font-size: 0;
  }
  .mbtn-box .open span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #222;
  }
  .mbtn-box .open:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 70%;
    height: 3px;
    background: #222;
  }
  .mbtn-box .open span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #222;
  }

  /******** mgnb-con ********/
  .mgnb-con {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(-320px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease,
    visibility 0s linear 0.3s;
  }
  .mgnb-con a {
    color: var(--Greyscale9);
  }
  .mgnb-con.on {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mgnb-con:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: opacity 0.2s linear 0.2s, z-index 0.2s linear 0.2s;
    transition: opacity 0.2s linear 0.2s, z-index 0.2s linear 0.2s;
  }
  .mgnb-con .mgnb-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 320px;
    height: 100vh;
    background: #fff;
    transform: translateX(-320px);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
  }

  /******** mgnb ********/
  .mgnb-box .top {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px 14px;
    background: var(--Primary);
  }
  .mgnb-box .top .lf {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mgnb-box .top .login a,
  .mgnb-box .top .login a strong {
    color: #fff;
  }
  .mgnb-box .top .logout {
    width: 20px;
    height: 20px;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87.09 76'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M56.66,58.33v4.32c0,5.69-4.66,10.35-10.35,10.35H13.35c-5.69,0-10.35-4.66-10.35-10.35V13.35C3,7.66,7.66,3,13.35,3h32.95c5.69,0,10.35,4.66,10.35,10.35v3.98'/%3E%3Cg%3E%3Cpolyline class='cls-1' points='70.37 24.28 84.09 38 70.37 51.72'/%3E%3Cline class='cls-1' x1='84.09' y1='38' x2='32.2' y2='38'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 16px 14px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mgnb-box .top .home {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    font-size: 0;
    background: url(/assets/DOM_0000009/image/layout/icn-home.png) no-repeat center center / auto
    auto;
  }
  .mgnb-box .top .close {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    font-size: 0;
  }
  .mgnb-box .top .close:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 50px;
  }
  .mgnb-box .top .close:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
    border-radius: 50px;
  }
  .mgnb-box .middle {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px 20px 20px;
    background: var(--Primary);
  }
  .mgnb-box .middle a {
    display: block;
    padding-left: 15px;

    font-size: 1.6rem;
    color: #fff;
    background: url(/assets/DOM_0000009/Img/layout/icn-mgtop01.png) no-repeat left center / auto
    10px;
  }
  .mgnb-box .middle a:nth-child(2) {
    background: url(/assets/DOM_0000009/Img/layout/icn-mgtop02.png) no-repeat left center / auto
    10px;
  }
  .mgnb-box .middle a:nth-child(3) {
    background: url(/assets/DOM_0000009/Img/layout/icn-mgtop03.png) no-repeat left center / auto
    10px;
  }
  .mgnb-box .bottom {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
  .mgnb-box .bottom a {
    display: block;
    font-size: 1.4rem;
    color: #757575;
  }
  .mgnb-box .bottom a + a {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
  }
  .mgnb-box .bottom a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 100%;
  }

  .mgtop-box {
    display: block;
    padding: 10px 30px 30px 30px;
  }
  .mgtop-box .mgtop {
    display: flex;
    align-items: center;
  }
  .mgtop-box .mgtop li {
    flex: 1;
    margin-right: 20px;
  }
  .mgtop-box .mgtop li:last-child {
    margin-right: 0;
  }
  .mgtop-box .mgtop li a {
    display: block;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
  }
  .mgnb-quick {
    width: 100%;
    background: var(--BackgroundDark);
    display: flex;
    flex-wrap: wrap;
  }
  .mgnb-quick .item:first-child {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .mgnb-quick .item:first-child .form-select {
    width: 100%;
    height: 100%;
    background: url(/assets/DOM_0000009/Img/common/mgnb-arrow.svg) right center no-repeat;
  }
  .mgnb-quick .item:first-child .form-select option {
    color: #222;
  }
  .mgnb-quick .item {
    height: 54px;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    position: relative;
  }
  .mgnb-quick .item:nth-child(2) {
    border-right: 1px solid #fff;
  }
  .mgnb-quick .item:last-child .dropdown {
    width: 100%;
    text-align: center;
  }
  .mgnb-quick .item:last-child .dropdown img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mgnb-quick .item .dropdownCon {
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    top: 39px;
    border: 1px solid var(--Stroke);
  }
  .mgnb {
    position: relative;
    height: calc(100vh - 61px);
    background: #f9f9f9;
    overflow-y: scroll;
    box-sizing: border-box;
    font-size: 15px;
  }
  .mgnb .gnb > li {
    width: fit-content;
  }
  .mgnb .gnb > li a.gnb-menu {
    display: inline-block;
    width: 130px;
    padding: 16px 14px;
    font-weight: 500;
    box-sizing: border-box;
  }
  .mgnb .gnb > li a.gnb-menu.on {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--Primary);
    background: #fff;
  }
  .mgnb .gnb > li .lnb-box {
    display: none;
    position: absolute;
    top: 0;
    left: 130px;
    width: calc(100% - 130px);
    height: 100%;
    background: #fff;
    box-sizing: border-box;
  }
  .mgnb .gnb > li .lnb-box.on {
    display: block;
  }
  .mgnb .gnb > li .lnb-box .inner {
    padding: 0;
    max-width: inherit;
  }
  .mgnb .gnb > li .lnb-box .gnb-left {
    display: none;
  }
  .mgnb .gnb > li .lnb-box ul.lnb-list1 {
    width: 100%;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px;
    word-break: keep-all;
    border-bottom: 1px solid var(--Greyscale3);
    box-sizing: border-box;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > a.on {
    font-weight: 600;
    color: var(--Primary);
    border-bottom: 1px solid var(--Primary);
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > a .btn-arrow {
    display: flex;
    align-items: center;
  }
  .mgnb .gnb > li .lnb-list1 > li > a .btn-arrow::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 4px;
    height: 4px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(315deg);
    background: transparent !important;
    transition: ease-in-out 0.2s;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > a.on .btn-arrow::before {
    border-left: 1px solid var(--Primary);
    border-bottom: 1px solid var(--Primary);
    transform: rotate(230deg);
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > .lnb-list2 {
    display: none;
    margin-top: 10px;
    padding: 10px 0;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > .lnb-list2 li {
    position: relative;
    padding-left: 8px;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > .lnb-list2 li + li {
    margin-top: 15px;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > .lnb-list2 li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #c2c2c2;
  }
  .mgnb .gnb > li .lnb-box .lnb-list1 > li > .lnb-list2 li > a {
    position: relative;
    color: var(--Greyscale7);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /*** mGNB Over ***/
  .mgnb-con.on:before {
    opacity: 1;
    z-index: 999;
    -webkit-transition: opacity 0.2s linear 0.2s;
    transition: opacity 0.2s linear 0.2s;
  }
  .mgnb-con.on .mgnb-box {
    transform: translateX(0);
  }

  .siteLink-wrap {
    display: none;
  }

  .sitemap-layer .menu-list-wrap .lnb-box .inner {
    padding: 0;
  }
  .gnb-box .gnb > li .lnb-box .inner::before {
    display: none;
  }
  .gnb-box .gnb > li .lnb-box .gnb-left {
    display: none;
  }
  .gnb-box .gnb > li .lnb-box::before {
    left: 25%;
  }
  .gnb-box .gnb > li .lnb-box::after {
    right: 25%;
  }
  .gnb-box .gnb > li .lnb-list1 {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 960px) {
  /* footer */
  footer .footerWrap .footerInfo .inner {
    width: 100%;
  }

  footer .footerWrap .footerInfo .inner .left {
    width: 100%;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  footer .footerWrap .footerInfo .inner .left a {
    width: calc(100% / 3);
  }

  footer .footerWrap .footerInfo .inner .left a img {
    width: 100%;
  }

  footer .footerWrap .footerInfo .inner .left p {
    word-break: keep-all;
  }

  footer .footerWrap .footerInfo .inner .wmark {
    width: calc(100% / 6);
  }

  footer .footerWrap .footerInfo .inner .wmark a {
    display: block;
    width: 100%;
  }

  footer .footerWrap .footerInfo .inner .wmark a img {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .header .inner {
    gap: inherit;
  }
  .header .inner .logo a img {
    height: 40px;
  }

  /* footer */
  footer .footerWrap .footerInfo {
    height: auto;

    padding: 32px;
    box-sizing: border-box;
  }

  footer .footerWrap .footerInfo .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  footer .footerWrap .footerInfo .inner .left a {
    width: 200px;
  }
}

/* nav */
.weblocation {
  width: 100%;
  height: 62px;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  border-top: 1px solid var(--Stroke);
  border-bottom: 1px solid var(--Stroke);
}
.weblocation .weblocation_box {
  position: relative;
  display: flex;
  width: 100%;
  height: 62px;
  margin: 0 auto;
  padding: 0 230px;
  box-sizing: border-box;
  align-items: center;
}
.weblocation_box h3 {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}
.weblocation_box .location {
  position: relative;
  display: flex;
  flex: 1;
  height: 100%;
  align-items: center;
}
.weblocation_box .location > li {
  position: relative;
  border-right: 1px solid var(--Stroke);
  text-align: left;
  min-width: 250px;
  height: 62px;
  box-sizing: border-box;
}
.weblocation_box .location > li.mn a .arrow {
  transform: rotate(0);
  transition: 300ms;
}
.weblocation_box .location > li.mn a .arrow.on {
  transform: rotate(90deg);
  transition: 300ms;
}
.weblocation_box .location > li > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  box-sizing: border-box;
}
.weblocation_box .location > li > a > span {
  display: inline-block;
  width: 100%;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s;
}
.weblocation_box .location > li > a:hover span {
  font-weight: 600;
}
.weblocation_box .location > li.home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 0;
  border-right: 0;
  background: var(--Primary1);
}
.weblocation_box .location > li.home a {
  width: 32px;
  height: 32px;
  padding: 0;
  background: url(/assets/DOM_0000009/image/common/ico-home.svg) center / contain no-repeat;
}
.weblocation_box .location > li.home a span {
  font-size: 0;
  background: none !important;
  padding: 0 !important;
}
.weblocation_box .location_dept_wrap h4 {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}
.weblocation_box .location_dept {
  display: none;
  position: absolute;
  top: 60px;
  z-index: 15;
  background-color: #fff;
  border: 1px solid var(--Stroke);
  left: -1px;
  box-sizing: border-box;
  width: calc(100% + 2px);
}
.location_dept > li:last-child {
  border-bottom: 0;
}

.location_dept > li > a {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 25px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid var(--Stroke);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.location_dept > li:last-child > a {
  border-bottom: 0;
}
.location_dept > li > a:hover,
.location_dept li a.on {
  background-color: var(--Greyscale1);
  font-weight: 600;
}
.location_dept > li > a span {
  display: inline-block;
  padding: 0 5px 5px 12px;
  cursor: pointer;
  background: none;
}

.weblocation .info {
  height: 100%;
  display: flex;
  align-items: center;
}
.weblocation .info button.sns {
  width: 62px;
  border-left: 1px solid var(--Stroke);
  background: none;
  padding: 0;
  border: none;
  border-left: 1px solid var(--Stroke);
  min-width: 0;
  height: 100%;
}
.weblocation .info button.print {
  width: 62px;
  border-left: 1px solid var(--Stroke);
  border-right: 1px solid var(--Stroke);
  height: 100%;
}
.location_dept > li > a.lnb_blank {
  position: relative;
  display: inline-block;
}
.location_dept > li > a.lnb_blank:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
}

/* sub-visual */
.sub-visual {
  height: 320px;
  background: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
  url(/assets/DOM_0000009/Img/common/sub-visual-img-01.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sub-visual .txt {
  font-family: "Gyeonggi_Title";
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;

  color: #fff;
}
.sub-visual p.stit {
  font-size: 24px;
}
.sub-visual p.tit {
  font-size: 40px;
  font-weight: 500;
}

/* contents */
.content-wrap {
  width: 100vw;
  margin: 0 auto;
  min-height: 700px;
  padding: 50px 230px;
  box-sizing: border-box;
}
.con-tit h3 {
  display: block;
  margin-bottom: 50px;
  padding-bottom: 48px;
  box-sizing: border-box;

  border-bottom: 1px dotted #cdcdcd;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

.inner-contents {
  word-break: keep-all;
}

/* 공유하기 모달 */
.cd-share .cd-popup-content {
  max-width: inherit;
  width: 900px;
}
.cd-share .head {
  height: 60px;
  background: var(--Primary1);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 20px;
  box-sizing: border-box;
}
.cd-share .body {
  display: flex;
  align-items: center;
  padding: 40px 24px;
  box-sizing: border-box;
  flex-direction: column;
  gap: 30px;
}
.cd-share .body ul.sns-list {
  display: flex;
  margin: 0 auto;
  gap: 20px;
}
.cd-share .body ul.sns-list li.sns-btn {
  background: #ddd;
  border-radius: 100%;
  width: 60px;
  height: 60px;
}
.cd-share .body .modal_url {
  width: 100%;
  display: flex;
}
.cd-share .cd-popup-container .cd-popup-close::before,
.cd-popup-container .cd-popup-close::after {
  background-color: #fff;
}

/* nav 모바일 */
@media only screen and (max-width: 1260px) {
  .weblocation {
    height: 48px;
  }
  .weblocation .weblocation_box {
    height: 100%;
    padding: 0;
  }
  .weblocation_box .location > li {
    min-width: 0;
  }
  .weblocation_box .location > li.now_location1 {
    display: none;
  }
  .weblocation_box .location > li.now_location2 {
    width: 100%;
    border-right: 0;
  }
  .weblocation_box .location > li.home {
    width: 48px;
    min-width: fit-content;
    height: 100%;
  }
  .weblocation_box .location > li.home a {
    width: 32px;
    height: 32px;
  }
  .weblocation .info button.sns,
  .weblocation .info button.print {
    width: 48px;
  }

  .weblocation .info button.print {
    border-right: 0;
  }
}

@media only screen and (max-width: 640px) {
  .weblocation_box .location > li > a {
    padding: 0 16px;
  }
  footer .footerWrap .footerInfo .inner .left p {
    font-size: 16px;
  }
}

/* contents 모바일 */
@media only screen and (max-width: 1260px) {
  .content-wrap {
    padding: 50px 24px;
  }

  .con-tit h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 960px) {
  .content-wrap {
    padding: 50px 16px;
  }
}
