/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#121212;
  font-family: 'Lexend', "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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; */
  color: #999;
}

input, textarea {
  font-family:inherit;
  outline: none;
  border:1px solid transparent
}

:focus{
  outline:none;
}

::placeholder {
  color:#999;
}

@-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--sub {
  padding-top: 100px;
}
/* .wrap {
  padding-top: ;
} */

@media screen and (max-width:1200px) {
  .wrap--sub {
    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) {

}



/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .3s ease-out;
}

#header .header-container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#header .header_logo {
  display: block;
  position: absolute;
  top: 26px;
  left: 168px;
  width: 92px;
  height: 49px;
  z-index: 9999;
}

#header .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/child/img/inc/logo.svg") no-repeat center;
  background-size: cover;
}


/* Header Mobile */
#header .header_mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .header_mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .header_mobile__btn span {
  position: relative;
  margin: 0 auto;
}

#header .header_mobile__btn span::before,
#header .header_mobile__btn span::after {
  content: "";
  position: absolute;
}

#header .header_mobile__btn span,
#header .header_mobile__btn span::before,
#header .header_mobile__btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .header_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 .header_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 .header_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .header_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 .header_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 .header_main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#header .header_menu {
  display: flex;
  align-items: center;
  height: 100px;
}

#header .header_menu__list {
  position: relative;
  height: 100%;
  padding: 0 22px;
  margin: 0 20px;
}

#header .header_menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  width: 100%;
  height: 100%;
}

#header .header_menu__link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

#header .header_submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
  max-height: 0;
  height: auto;
  padding: 20px 0;
  opacity: 0;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  border-radius: 10px;
}

#header .header_submenu li {
  padding: 10px 0px;
}

#header .header_submenu li a {
  font-size: 1.8rem;
  line-height: 1;
}


#header .language {
  display: flex;
  align-items: center;
  position: absolute;
  top: 38px;
  right: 143px;
  color: #fff;
  font-size: 2rem;
}

#header .language button {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

#header .language .box {
  position: relative;
  width: 50px;
  height: 26px;
  margin: 0 10px;
  border-radius: 13px;
  background-color: #f2a036;
}

#header .language .box span {
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  transition: all .25s ease-out;
}

#header .language .box.kr .circle {
  right: calc(100% - 22px);
}

#header[data-header="sticky"] {
  top:-103px;
}

#header.active {
  background-color: #fff;
}

#header.active .header_menu__link, 
.wrap--sub #header .header_menu__link {
  color: #191919;
}

#header.active .language,
.wrap--sub #header .language {
  color: #191919;
}

#header.active .header_logo a,
.wrap--sub #header .header_logo a  {
  background-image: url("/child/img/inc/logo-hover.svg");
}


.wrap--sub #header {
  border-bottom: 1px solid #dcdcdc;
}

@media(max-width:1700px) {
  #header .language {
    right: 30px;
  }

  #header .header_logo {
    left: 50px;
  }
}

@media(max-width:1400px) {
  #header .header_menu__list {
    padding: 0 20px;
    margin: 0 15px;
  }
}

@media (min-width: 1201px) {
  #header .header_menu__list.menu-active .header_submenu {
    max-height: 300px;
    opacity: 1;
    padding: 17px 0px;
  }

}

@media (max-width: 1200px) {
  #header {
    position: fixed;
    height: 60px;
    background-color: #fff;
    border-bottom: none;
  }

  #header .header_logo {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 83px;
    height: 44px;
  }

  #header .header_logo a {
    background-image: url("/child/img/inc/logo-hover.svg");
  }

  #header .header_main {
    display: block;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    max-width: 500px;
    background-color: #fff;
    padding: 65px 24px;
    -webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
    z-index: 9999;
  }

  #header .header_menu {
    flex-direction: column;
    align-items: start;
    height: fit-content;
  }

  #header .header_menu__list {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #191919;
  }
  
  #header .header_menu__link {
    justify-content: start;
    color: #191919;
  }

  #header .header_menu__toggle::before,
  #header .header_menu__toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    margin-top: -1px;
    background-color: #003a6f;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header .header_menu__toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
  }

  #header .header_mobile {
    display: block;
  }

  #header .header_submenu {
    opacity: 0;
    visibility: hidden;
    position: relative;
    top: unset;
    left: unset;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-width: 500px;
    max-height: 0px;
    padding: 0px;
    margin: -15px 0px 15px;
    text-align: left;
    background-color: transparent;
  }

  #header .header_submenu a {
    display: block;
    font-size: 1.4rem;
    margin-top: 15px;
    color: #191919;
  }

  #header .header_submenu li {
    margin-top: 0px;
    padding: 0px;
  }

  #header .header_submenu li:first-child {
    margin-top: 0px;
  }

  #header[data-header-mobile="on"] .header_main {
    right: 0;
    height: 100vh;
    overflow: hidden;
  }

  #header[data-header-mobile="on"] .header-background {
    display:block;
  }

  #header .header_menu__toggle[data-menu-link="true"] {
    color: #003a6f;
  }

  #header .header_menu__toggle[data-menu-link="true"]::before {
    background-color: #003a6f;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #header .header_menu__toggle[data-menu-link="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .header_menu__toggle[data-menu-link="true"] + .header_submenu {
    visibility: visible;
    opacity: 1;
    max-height: 300px;
    margin: 0px 0px 15px;
  }

  #header .header_mobile__btn span, #header .header_mobile__btn span::before, #header .header_mobile__btn span::after {
    background-color: #003a6f;
  }

  #header .language {
    top: 20px;
    right: 60px;
    font-size: 1.8rem;
    color: #003a6f;
  }

  #header .language .box {
    width: 45px;
    height: 20px;
    margin: 0 5px;
  }

  #header .language .box span {
    width: 14px;
    height: 14px;
  }
  
  #header .language .box.kr .circle {
    right: calc(100% - 18px);
  }
}

@media (max-width: 1024px) {
  #header .header_logo {
    width: 74px;
    height: 39px;
  }
}

@media (max-width: 768px) {
  #header .header_logo {
    width: 64px;
    height: 34px;
  }
}

@media (max-width: 500px) {
  #header .header_logo {
    width: 55px;
    height: 29px;
  }

  #header .language {
    top: 21px;
    right: 60px;
    font-size: 1.6rem;
  }

  #header .language .box {
    width: 35px;
    height: 18px;
    margin: 0 5px;
  }

  #header .language .box span {
    width: 12px;
    height: 12px;
  }
  
  #header .language .box.kr .circle {
    right: calc(100% - 16px);
  }
}


/* Footer */
#footer {
  padding: 52px 0 56px;
  background-color: #003a6f;
  color: #fff;
}

#footer .footer-container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

#footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}

#footer .footer_logo {
  width: 142px;
  height: 75px;
}

#footer .footer_logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url('/child/img/inc/logo.svg') no-repeat center;
  background-size: cover;
}

#footer .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

#footer .footer-address {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 27px;
  width: 100%;
  font-size: 1.6rem;
}

#footer .footer-address ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 75%;
}

#footer .footer-address ul li {
  display: flex;
  align-items: center;
  width: auto;
}

#footer .footer-address p {
  line-height: 1.75;
  letter-spacing: 0.026em;
}

#footer .footer-address ul span {
  display: block;
  width: 1px;
  height: 18px;
  margin: 0 13px;
  background-color: #fff;
}

#footer .footer-address p br.mo500 {
  display: none;
}

#footer .privacy {
  cursor: pointer;
  line-height: 1.75;
}



@media(max-width:1200px) {
  #footer {
    padding: 50px 0;
  }
  
  #footer .footer_logo {
    width: 128px;
    height: 67px;
  }
  
  #footer .top-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  

  #footer .footer-address {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  
  #footer .footer-address ul span {
    height: 16px;
    margin: 0 10px;
  }
  
  
}

@media(max-width:1024px) {
  #footer {
    padding: 45px 0;
  }
  
  #footer .footer_logo {
    width: 113px;
    height: 60px;
  }
  
  #footer .top-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  #footer .footer-address {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  
  #footer .footer-address ul {
    width: 80%;
  }
  
  #footer .footer-address ul span {
    height: 14px;
    margin: 0 8px;
  }
  
  #footer .footer-address ul li {
    width: 100%;
  }
  
  #footer .footer-address ul li span {
    display: none;
  }
  
}

@media(max-width:768px) {
  #footer {
    padding: 35px 0;
  }
  
  #footer .footer_logo {
    width: 99px;
    height: 52px;
  }
  
  #footer .top-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  #footer .footer-address {
    margin-top: 12px;
    font-size: 1.3rem;
  }
 
  #footer .footer-address ul {
    width: 70%;
  }
  
    
  #footer .footer-address ul li span {
    display: none;
  }
}

@media(max-width:500px) {
  #footer {
    padding: 25px 0;
  }
  
  #footer .footer_logo {
    width: 85px;
    height: 45px;
  }
  
  #footer .top-btn {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  
  #footer .footer-address {
    flex-direction: column-reverse;
    align-items: start;
    margin-top: 10px;
    font-size: 1.2rem;
  }

  #footer .footer-address .privacy {
    margin-bottom: 10px;
  }

  #footer .footer-address p {
    width: 100%;
  }

  #footer .footer-address p span {
    display: none;
  }
  
  #footer .footer-address p br.mo500 {
    display: block;
  }
  
  #footer .footer-address ul {
    width: 100%;
    flex-direction: column;
    align-items: start;
  }

}

/* Privacy */
.modal--privacy {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal--privacy .modal-container {
  max-width: 1430px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.modal--privacy .modal-inner {
  width: 100%;
  height: 100%;
  padding: 150px 0;
}

.modal--privacy .title {
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.modal--privacy .modal-contents {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
}

.modal--privacy .button--close {
  position: absolute;
  top: -10px;
  right: 0;
  transform: translateY(-100%);
  width: 32px;
  height: 32px;
  background:  url('/child/img/inc/modal-close-button.png') no-repeat center;
  background-size: cover;
}

.modal--privacy .modal-con {
  height: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  overflow-y: scroll;
}

.modal--privacy .con-title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
}

.modal--privacy .con-text {
  font-size: 1.8rem;
}

.modal--privacy.on {
  display: block;
}

@media(max-width:1200px) {
  .modal--privacy .modal-container {
    max-width: 1430px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .modal--privacy .modal-inner {
    width: 100%;
    height: 100%;
    padding: 130px 0;
  }
  
  .modal--privacy .title {
    font-size: 3.6rem;
  }
  
  .modal--privacy .modal-contents {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fff;
  }
  
  .modal--privacy .button--close {
    top: -10px;
    width: 32px;
    height: 32px;
  }
  
  .modal--privacy .modal-con {
    height: 100%;
    padding: 15px;
  }
  
  .modal--privacy .con-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  
  .modal--privacy .con-text {
    font-size: 1.6rem;
  }
  
}


@media(max-width:1024px) {
  .modal--privacy .modal-container {
    max-width: 1430px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .modal--privacy .modal-inner {
    width: 100%;
    height: 100%;
    padding: 110px 0;
  }
  
  .modal--privacy .title {
    font-size: 3rem;
  }
  
  .modal--privacy .modal-contents {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fff;
  }
  
  .modal--privacy .button--close {
    top: -10px;
    width: 30px;
    height: 30px;
  }
  
  .modal--privacy .modal-con {
    height: 100%;
    padding: 15px;
  }
  
  .modal--privacy .con-title {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  .modal--privacy .con-text {
    font-size: 1.5rem;
  }
  
}

@media(max-width:768px) {
  .modal--privacy .modal-container {
    max-width: 1430px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .modal--privacy .modal-inner {
    width: 100%;
    height: 100%;
    padding: 90px 0;
  }
  
  .modal--privacy .title {
    font-size: 2.6rem;
  }
  
  .modal--privacy .modal-contents {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: #fff;
  }
  
  .modal--privacy .button--close {
    top: -10px;
    width: 25px;
    height: 25px;
  }
  
  .modal--privacy .modal-con {
    height: 100%;
    padding: 12px;
  }
  
  .modal--privacy .con-title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .modal--privacy .con-text {
    font-size: 1.4rem;
  }
  
}

@media(max-width:500px) {
  .modal--privacy .modal-container {
    max-width: 1430px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  
  .modal--privacy .modal-inner {
    width: 100%;
    height: 100%;
    padding: 70px 0;
  }
  
  .modal--privacy .title {
    font-size: 2.1rem;
  }
  
  .modal--privacy .modal-contents {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 12px;
    background-color: #fff;
  }
  
  .modal--privacy .button--close {
    top: -10px;
    width: 20px;
    height: 20px;
  }
  
  .modal--privacy .modal-con {
    height: 100%;
    padding: 12px;
  }
  
  .modal--privacy .con-title {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .modal--privacy .con-text {
    font-size: 1.3rem;
  }
  
}