/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#121212;
  font-family: "Wanted Sans", "Pretendard Variable", "Open Sans", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size:62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  animation: entry .3s ease forwards;
  opacity: 0;
  letter-spacing: -0.02em;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size:1.6rem;
}

body.non-scroll {
  /* position: fixed;
  top: 0;
  left: 0; */
  height: 100vh;
  overflow: hidden;
  touch-action: none; 
}

a {
  color:inherit;
  outline: none;
  text-decoration: none;
}

ol,ul {
  list-style: none;
}

b, strong {
  font-weight:700;
}

img {
  max-width:100%;
}

button {
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

select {
  outline: none;
  border:1px solid transparent;
  font-family:inherit;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  /* background-size:9px auto; */
  /* background-image: url('/child/img/bbs/select.png'); */
  background-repeat:no-repeat;
  /* background-position:right 15px center; */
}

input, textarea {
  font-family:inherit;
  outline: none;
  border:1px solid transparent
}

:focus{
  outline:none;
}

::placeholder {
  color:#cecece;
}

@-webkit-keyframes entry {
    to{opacity: 1;}
}

@keyframes entry {
    to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {
  /* select {
    background-size:7px auto;
    background-position:right 10px center;
  } */
}
@media screen and (max-width:576px) {

}


/* Overflow */
.hidden {
  overflow: hidden;
}


/* Display */
.sp{display:none;}
.mo{display:none;}

@media screen and (max-width:992px){
  .sp{display:block;}
  .pc{display:none;}
}

@media screen and (max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}


/* Ellip */
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}


/* Button */
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  cursor: pointer;
}

@media screen and (min-width:1201px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

/* Font Family */
.font-family--pretendard {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}


/* Container */
.container {
  max-width: 1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}


/* Wrap */
.wrap {
  /* padding-top:104px; */
}

.sub-wrap {
  padding-top: 100px;
}

@media screen and (max-width:1200px) {
  .wrap {
    padding-top:60px;
  }

  .sub-wrap {
    padding-top: 60px;
  }
}

@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Main */
#main {
  min-height: calc(100vh - 340px);
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

/* ----- S: Header ----- */


#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .3s ease-out;
  box-sizing: border-box;
  border-bottom: 1px solid #bcbcbc;
}

#header::after {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  /* height: 1px; */
  background-color: #fafafa;
  z-index: 99;
}

#header .h-container {
  width: 100%;
  
  height: 100px;
}

/* Header Mobile */
#header .h-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile-btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  content: "";
  position: absolute;
}

#header .h-mobile-btn span,
#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .h-mobile-btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}


/* header PC */
#header .h-inner {
  width: 100%;
  height: 100%;
}

#header .h-logo {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 215px;
  height: 32px;
  z-index: 99999;
  transition: all .15s ease-out;
}

#header .h-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/inc/logo.svg');
  transition: all .2s ease-out;
}

#header .h-main {
  position: relative;
  max-width: 1430px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#header .h-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#header .h-menu-list {
  height: 100%; 
  position: relative;
  transition: all .2s ease-out;
}

#header .h-menu-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 2px;
  background-color: #9cc813;
  transition: all .2s ease-out;
}

#header .h-menu-link  {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 208px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  transition: all .2s ease-out;
}

#header .h-menu-link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

#header .h-submenu {
  width: auto;
  max-height: 0;
  visibility: hidden;
  height: 280px;
  background-color: #fafafa;
  overflow: hidden;
  text-align: center;
  border-color: #f3f3f3;
  transition: all .2s ease-out;
}

#header .h-submenu::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-height: 0;
  height: 280px;
  background-color: #fafafa;
  transition: all .2s ease-out;
}

#header .h-submenu li:first-of-type .h-submenu-link {
  padding-top: 39px;
}

#header .h-submenu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0 11px;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  transition: all .2s ease-out;
}

#header .h-submenu-link i {
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  transition: all .2s ease-out;
}

#header .h-submenu-link i::after, 
#header .h-submenu-link i::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #121212;
}

#header .h-submenu-link i::after {
  width: 100%;
  height: 2px;
}

#header .h-submenu-link i::before {
  width: 2px;
  height: 100%;
  transition: all .2s ease-out;
}

#header .h-submenu-depth {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  transition: all .3s ease-out;
}

#header .h-submenu-depth li a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.77;
  transition: all .2s ease-out;
  color: #959595;
  letter-spacing: -0.02em;
}


/* 스크롤 이벤트(sticky) */
#header[data-header="sticky"] {
  top:-100px;
}

body.non-scroll #header[data-header="sticky"] {
  top: 0;
}

/* 스크롤, 호버 효과 */
#header.active,
#header.header-active ,
.sub-wrap #header {
  background-color: #fff;
}

#header.active::after,
#header.header-active::after {
  display: block;
}

#header.active .h-menu-link,
#header.header-active .h-menu-link,
.sub-wrap #header .h-menu-link {
  color: #191919;
}

#header.active .h-logo a,
#header.header-active .h-logo a,
.sub-wrap #header .h-logo a {
  background-image: url('/child/img/inc/logo-on.svg');
}

#header.active .h-member-menu a ,
#header.header-active .h-member-menu  a,
.sub-wrap #header .h-member-menu a {
  color: #191919;
}

#header.active .h-member-menu span,
#header.header-active .h-member-menu span,
.sub-wrap #header .h-member-menu span {
  background-color: #191919;
}


#header.menu-on .h-menu-link {
  width: 240px;
}

#header.menu-on .h-logo {
  width: 190px;
  height: 28px;
}

/* 3뎁스 노출 이벤트 */
#header .h-submenu-toggle[data-submenu-link="true"] + .h-submenu-depth {
  height: auto;
  visibility: visible; 
  padding-top: 5px;
}

#header .h-submenu-toggle[data-submenu-link="true"] i {
  transform: rotate(90deg);
}

#header .h-submenu-toggle[data-submenu-link="true"] i::after {
  display: none;
}

/* Header Mobile */
#header .h-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile-btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  content: "";
  position: absolute;
}

#header .h-mobile-btn span,
#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .h-mobile-btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

@media(min-width:1201px) {
  #header .h-submenu li:hover .h-submenu-link  {
    font-weight: 700;
  }
  
  #header .h-submenu-depth li:hover a {
    color: #121212;
    font-weight: 500;
  }
    
  #header .h-menu-list.menu-active .h-submenu {
    background-color: #f7f7f7;
    border-left: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;
  }

  #header .h-menu-list.menu-active::after {
    width: 100%;
    transition: all .2s ease-out;
  }
  
    
  #header.menu-on .h-submenu {
    max-height: 280px;
    visibility: visible;
  }

  #header.menu-on .h-submenu::after {
    max-height: 280px;
    visibility: visible;
  }

}

@media(max-width:1600px) {
  #header .h-logo {
    left: 15px;
  }
  
  #header.menu-on .h-menu-link {
    width: 220px;
  }
}

@media(max-width:1400px) {
  #header .h-logo {
    width: 170px;
    height: 25px;
  }
  
  #header.menu-on .h-menu-link {
    width: 210px;
  }
  
  #header .h-menu {
    margin-left: 70px;
  }
  
  #header.menu-on .h-logo {
    width: 170px;
    height: 25px;
  }
}

@media(max-width:1200px) {
  #header .h-mobile {
    display: block;
  }
  
  
  #header .h-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
    background-color: #fff;
  }
  
  #header[data-header-mobile="on"] .h-main {
    right: 0;
    height: 100%;
    overflow: hidden;
    padding-bottom: 0;
  }

  /* #header[data-header-mobile="on"] .header-background {
    display:block;
  } */

  #header .h-menu-toggle[data-menu-link="true"]::before {
    background-color: #9cc813;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #header .h-menu-toggle[data-menu-link="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .h-container {
    height: 60px;
  }

  #header.menu-on .h-logo,
  #header .h-logo {
    width: 138px;
    height: 20px;
  }

  #header .h-logo a {
    background-image: url('/child/img/inc/logo-on.svg');
  }

  #header .h-mobile-btn span, 
  #header .h-mobile-btn span::before, 
  #header .h-mobile-btn span::after {
    background-color: #191919;
  }
  
  #header .h-mobile {
    display: block;
  }
  
  #header .h-main {
    display: block;
    z-index: 10000;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 500px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 65px 15px;
    -webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
    z-index: 999;
  }
  
  #header .h-menu {
    flex-direction: column;
    align-items: start;
    height: auto;
    margin-left: 0;
  }
  
  #header .h-menu-list {
    width: 100%;
    height: auto;
  }
  
  #header .h-menu-link {
    position: relative;
    justify-content:start;
    width: 100%;
    padding: 15px 0;
    font-size: 1.6rem;
    color:#191919;
  }
  
  #header.menu-on .h-menu-link {
    width: 100%;
  }
  
  #header .h-menu-toggle::before,
  #header .h-menu-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    margin-top: -1px;
    background-color: #1c2d56;
    /* background-color: #3b3b3b; */
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header .h-menu-toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
  }

  #header .h-submenu  {
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-height: 0px;
    height: auto;
    overflow: hidden;
    padding: 0px;
    margin: -15px 0px 15px;
    text-align: left;
    background-color: transparent;
  }
  
  #header .h-submenu-container {
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 0 15px;
    border-left: 1px solid #aeaeae;
  }
  
  #header .h-submenu-container li {
    width: 100%;
  }
  
  #header .h-menu-toggle[data-menu-link="true"] + .h-submenu {
    visibility: visible;
    opacity: 1;
    max-height: fit-content;
    margin: 0px;
    padding: 0 0 5px;
    border-left: 1px solid #959595;
  }
  
  #header .h-submenu-link {
    display: block;
    padding: 10px 2px 10px 10px;
    margin-bottom: 0;
    font-size: 1.4rem;
  }

  #header .h-submenu li:first-of-type .h-submenu-link {
    padding: 10px 2px 10px 10px;
  }
  
  #header .h-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  #header .h-submenu-toggle i {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #1c2d56;
    border-right: 1px solid #1c2d56;
    transform: rotate(45deg);
    transition: all .3s ease-out;
  }
  
  #header .h-submenu-toggle i::after,
  #header .h-submenu-toggle i::before {
    display: none;
  }
  
  #header .h-submenu-toggle[data-submenu-link="true"] i {
    transform: rotate(225deg);
  }
  
  #header .h-submenu-depth {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: relative;
    top: unset;
    left: unset;
    overflow: hidden;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    padding: 0px;
    max-height: 0;
    height: auto;
    text-align: left;
    background-color: transparent;
    transition: all .2s ease-out;
  }
  
  #header .h-submenu-toggle[data-submenu-link="true"] + .h-submenu-depth {
    max-height: fit-content;
    opacity: 1;
    padding: 5px 0;
  }

  #header .h-submenu-toggle[data-submenu-link="true"]::after  {
    transform: rotate(225deg);
  }
  
  #header .h-submenu-depth li {
    width: 100%;
    padding: 0 10px;
  }

  #header .h-submenu-depth li a {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  
  #header .h-member {
    right: 60px;
    z-index: 99999;
  }

  #header .h-member-menu {
    display: none;
  }

  #header .h-member-menu.mo {
    display: flex;
    margin-left: -10px;
    margin-top: 20px;
  }
  
  #header .h-member-menu.mo a {
    padding: 0 10px;
    font-size: 1.4rem;
    color: #191919;
  }
  
  #header .h-member-menu span {
    width: 1px;
    height: 15px;
    background-color: #191919;
  }
  
}

/* ----- E:Header ----- */

/* ----- S:Site Map ----- */
.site-map-icon {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 999999;
  cursor: pointer;
}

.site-map-icon span {
  position: relative;
  margin: 0 auto;
}

.site-map-icon span::before,
.site-map-icon span::after {
  content: "";
  position: absolute;
}

.site-map-icon span,
.site-map-icon span::before,
.site-map-icon span::after {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.site-map-icon span::before {
  margin-top: -14px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.site-map-icon span::after {
  margin-top: 14px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.site-map-icon.on span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.site-map-icon.on span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.site-map-icon.on span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}
#header.header-active .site-map-icon span,
#header.header-active .site-map-icon span::before,
#header.header-active .site-map-icon span::after{
  background-color: #121212;
} 


#header.active .site-map-icon span,
#header.active .site-map-icon span::before,
#header.active .site-map-icon span::after,
.sub-wrap #header.active .site-map-icon span::before {
  background-color: #121212;
} 

.site-map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 99999;
  background-color: #fff;
  transition: all .3s ease-out;
}

.site-map-container.on {
  position: fixed;
  height: 100vh;
}

.site-map-main {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  
}

.site-map-container .logo {
  width: 188px;
  height: 28px;
  margin: 50px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/inc/logo-on.svg');
}

.site-map-main {
  width: 100%;
}

.site-menu {
  width: 100%;
}

.site-menu-list {
  display: flex;
  align-items: start;
  width: 100%;
  padding: 50px 0;
  border-bottom: 1px solid #f3f3f3;
  border-top: 1px solid #f3f3f3;
}

.site-menu-link {
  width: 290px;
  font-size: 2.4rem;
  font-weight: 500;
}

.site-menu-link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.site-submenu {
  display: flex;
  align-items: start;
}

.site-submenu > li {
  position: relative;
  padding-left: 10px;
  width: 240px;
}

.site-submenu > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #9cc813;
}

.site-submenu-link {
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.site-submenu-depth {
  margin-top: 15px;
}

.site-submenu-depth li a {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #959595;
}

.site-submenu-depth li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #959595;
  transition: all .2s ease-in;
}

#header.header-active .site-map-icon span,
.sub-wrap #header .site-map-icon span,
.sub-wrap #header .site-map-icon span::before, 
.sub-wrap #header .site-map-icon span::after {
  background-color: #121212;
}

@media(min-width:1201px) {
  .site-submenu-depth li:hover a::after {
    width: 100%;
  }
}

@media (max-width:1600px) {
  .site-map-icon {
    right: 15px;
  }
}

@media(max-width:1200px) {
  .site-map {
    display: none;  
  }
}
/* ----- E:Site Map ----- */

/* ----- S:Footer ----- */
#footer {
  background-color: #353535;
}

#footer .f-container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#footer .f-inner {
  width: 100%;
  padding: 45px 0 40px;
}

#footer .logo-wrap {
  display: flex;
  align-items: end;
  gap: 0 37px;
  margin-bottom: 34px;
}

#footer .logo-wrap > div a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .f-logo {
  width: 202px;
  height: 30px;
}

#footer .f-logo a {
  background-image: url('/child/img/inc/logo.svg');
}

#footer .f-logo2 {
  width: 183px;
  height: 34px;
}

#footer .f-logo2 a {
  background-image: url('/child/img/inc/logo-ev.svg');
}

#footer .f-menu {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

#footer .f-menu h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#footer .f-menu ul {
  display: flex;
  align-items: center;
  margin-left: -23px;
  margin-top: 9px;
}

#footer .f-menu ul li {
  position: relative;
  padding: 0 23px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

#footer .f-menu ul li span {
  font-weight: 400;
}

#footer .f-menu ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #fff;
}

#footer .f-menu ul li:last-of-type:after {
  display: none;
}

#footer .copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

#footer .copy p,
#footer .copy button {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

@media(max-width:1400px) {
  #footer .f-menu ul {
    margin-left: -15px;
  }
  
  #footer .f-menu ul li {
    padding: 0 15px;
  }
}

@media(max-width:1300px) {
  #footer .f-menu ul {
    flex-wrap: wrap;
    max-width: 720px;
    gap: 5px 0;
    margin-left: -15px;
    margin-top: 9px;
  }
  
  #footer .f-menu ul li {
    padding: 0 15px;
  }
  
  #footer .f-menu ul li:nth-of-type(2)::after {
    display: none;
  }
}

@media(max-width:1200px) {
  #footer .f-inner {
    padding: 40px 0 35px;
  }
  
  #footer .logo-wrap {
    gap: 0 35px;
    margin-bottom: 25px;
  }

  #footer .f-menu ul {
    max-width: 720px;
    gap: 5px 0;
    margin-left: -12px;
  }
  
  #footer .f-menu ul li {
    padding: 0 12px;
  }

  
  #footer .copy {
    margin-top: 15px;
  }
 
}

@media(max-width:1024px) {
  #footer .f-inner {
    padding: 35px 0 30px;
  }
  
  #footer .logo-wrap {
    gap: 0 30px;
    margin-bottom: 20px;
  }
  
  #footer .f-logo {
    width: 162px;
    height: 24px;
  }
  
  #footer .f-logo2 {
    width: 145px;
    height: 27px;
  }
  
  #footer .f-menu {
    padding-bottom: 15px;
  }
  
  #footer .f-menu h3 {
    font-size: 1.3rem;
  }
  
  #footer .f-menu ul {
    max-width: 720px;
    gap: 5px 0;
    margin-left: -10px;
  }
  
  #footer .f-menu ul li {
    padding: 0 10px;
    font-size: 1.3rem;
  }
  
  #footer .f-menu ul li::after {
    height: 10px;
  }

  #footer .copy p,
  #footer .copy button {
    font-size: 1.3rem;
  }
}

@media(max-width:768px) {
  #footer .f-inner {
    padding: 30px 0 25px;
  }
  
  #footer .logo-wrap {
    gap: 0 25px;
    margin-bottom: 15px;
  }
  
  #footer .f-logo {
    width: 160px;
    height: 24px;
  }
  
  #footer .f-logo2 {
    width: 145px;
    height: 27px;
  }
  
  #footer .f-menu {
    padding-bottom: 15px;
  }
  
  #footer .f-menu h3 {
    font-size: 1.2rem;
  }
  
  #footer .f-menu ul {
    max-width: 720px;
    gap: 5px 0;
    margin-left: -10px;
  }
  
  #footer .f-menu ul li {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  
  #footer .f-menu ul li::after {
    height: 10px;
  }
  
  #footer .copy p,
  #footer .copy button {
    font-size: 1.2rem;
  }
}

@media(max-width:585px) {
  #footer .f-menu ul li:first-of-type {
    width: 100%;
  }
  
  #footer .f-menu ul li:first-of-type::after {
    display: none;
  }
}


@media(max-width:500px) {
  #footer .f-inner {
    padding: 25px 0 20px;
  }
  
  #footer .logo-wrap {
    gap: 0 20px;
    margin-bottom: 20px;
  }
  
  #footer .f-logo {
    width: 134px;
    height: 20px;
  }
  
  #footer .f-logo2 {
    width: 119px;
    height: 22px;
  }
  
  #footer .f-menu {
    padding-bottom: 12px;
  }
  
  #footer .f-menu h3 {
    font-size: 1.1rem;
  }
  
  #footer .f-menu ul {
    gap: 5px 0;
    margin-left: -8px;
  }
  
  #footer .f-menu ul li {
    padding: 0 8px;
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  #footer .f-menu ul li::after {
    height: 10px;
  }
  
  #footer .copy {
    margin-top: 12px;
  }
  
  #footer .copy p,
  #footer .copy button {
    font-size: 1.1rem;
  }
}

@media(max-width:450px) {
  #footer .logo-wrap  {
    justify-content: center;
  }
  #footer .f-menu {
    text-align: center;
  }
  #footer .f-menu ul li {
    width: 100%;
  }
  
  #footer .f-menu ul li::after {
    display: none;
  }
  
  #footer .copy {
    flex-direction: column-reverse;
    gap: 5px 0;
  }
}
/* ----- E:Footer ----- */


/* ---------- S: Modal Common ---------- */
.bbs-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  padding: 15px;
  display: none;
  visibility: hidden;
  transition: all .3s ease-out;
}


.bbs-modal .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  height: 100%;
  min-height: calc(100% - 120px);
  max-height: calc(100% - 120px);
  margin: 0 auto;
}

.bbs-modal .modal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: none;
  height: 100%;
  width: 100%;
}

.bbs-modal .modal-content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.bbs-modal .modal-content .close {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9cc813;  
  z-index: 10;
  cursor: pointer;
}

.bbs-modal .modal-content .close span {
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.bbs-modal .modal-content .close span::after, 
.bbs-modal .modal-content .close span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background-color: #fff;
}

.bbs-modal .modal-content .close span::after {
  width: 100%;
  height: 2px;
}

.bbs-modal .modal-content .close span::before {
  width: 2px;
  height: 100%;
}

.bbs-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.bbs-modal.open {
    display: flex;
    align-items: center;
    visibility: visible;
}

@media(max-width:1200px) {
  .bbs-modal .modal-content .close {
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
  }
  
  .bbs-modal .modal-content .close span {
    width: 22px;
    height: 22px;
  }
  
}

@media(max-width:1024px) {
  .bbs-modal .modal-content .close {
    width: 40px;
    height: 40px;
  }
  
  .bbs-modal .modal-content .close span {
    width: 20px;
    height: 20px;
  }
  
}

@media(max-width:768px) {
  .bbs-modal .modal-content .close {
    width: 35px;
    height: 35px;
  }
  
  .bbs-modal .modal-content .close span {
    width: 18px;
    height: 18px;
  }
 
  .bbs-modal .modal-content .close span::after {
    width: 100%;
    height: 1px;
  }
  
  .bbs-modal .modal-content .close span::before {
    width: 1px;
    height: 100%;
  }
  
}

@media(max-width:500px) {
  .bbs-modal .modal-content .close {
    width: 30px;
    height: 30px;
  }
  
  .bbs-modal .modal-content .close span {
    width: 15px;
    height: 15px;
  }
  
}
/* ---------- E: Modal Common ---------- */
/* ---------- S: Modal Privacy ---------- */
.bbs-modal-privacy .modal-container {
  width: 100%;
  max-width: 1200px;
  /* min-height: auto;
  max-height: none; */
  font-family: 'Noto Sans KR';
} 

.bbs-modal-privacy .logo {
  width: 206px;
  height: 30px;
  margin: 30px auto 0;
  background-image: url('/child/img/inc/logo-on.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bbs-modal-privacy .bbs-modal .modal-inner {
  position: relative;
  max-height: none;
  height: 100%;
  width: 100%;
}

.bbs-modal-privacy  .modal-content {
  width: 100%;
  background-color: #fff;
}

.bbs-modal-privacy .con-area {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
}

.bbs-modal-privacy .con-area .text-area {
  width: 100%;
  padding: 20px;
  height: 400px;
  border: 1px solid #adadad;
  background-color: #fff;
  overflow: auto;
  font-size: 1.8rem;
}

@media(max-width:1340px) {
  .bbs-modal-privacy .modal-container {
    max-width: 1024px;
  } 
}

@media(max-width:1200px) {
  .bbs-modal-privacy .con-area {
    padding: 25px;
  }
  
  .bbs-modal-privacy .con-area .text-area {
    padding: 18px;
    height: 370px;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .bbs-modal-privacy .logo {
    width: 180px;
    height: 26px;
    margin: 25px auto 0;
  }
  
  .bbs-modal-privacy .con-area {
    padding: 20px;
  }
  
  .bbs-modal-privacy .con-area .text-area {
    padding: 15px;
    height: 340px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .bbs-modal-privacy .con-area {
    padding: 15px;
  }
  
  .bbs-modal-privacy .con-area .text-area {
    padding: 12px;
    height: 310px;
    font-size: 1.4rem;
  }
  
  .bbs-modal-privacy .modal-content .close {
    top: -45px;
    right: 0;
  }

  .bbs-modal-privacy .modal-content .close::after, 
  .bbs-modal-privacy .modal-content .close::before {
    background-color: #fff;
  }
}

@media(max-width:500px) {
  .bbs-modal-privacy .logo {
    width: 150px;
    height: 22px;
    margin: 20px auto 0;
  }
  
  .bbs-modal-privacy .modal-content .close {
    top: -35px;
    right: 0;
  }
  
  .bbs-modal-privacy .con-area .text-area {
    padding: 10px;
    height: 280px;
    font-size: 1.2rem;
  }

}
/* ---------- E: Modal Privacy ---------- */
