/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#1a1a1a;
  font-family: 'Pretendard', 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;
}

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-repeat:no-repeat;
}

input, textarea {
  font-family:inherit;
  outline: none;
  border:1px solid transparent
}

:focus{
  outline:none;
}

::placeholder {
  color:#ccc;
}

@-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: 1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}


/* Wrap */
/* .wrap {
} */

@media screen and (max-width:1200px) {
  .wrap {
    padding-top:50px;
  }
  
}
@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: 1790px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .header_logo {
  position: absolute;
  top: 27px;
  left: 80px;
  width: 218px;
  height: 40px;
}

#header .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/inc/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all .35s ease;
}

#header .header_main {
  display: flex;
  align-items: center;
}

#header .header_menu {
  display: flex;
  align-items: center;
  height: 96px;
}

#header .header_menu__list {
  position: relative;
  height: 100%;
  /* width: 220px; */
}

#header .header_menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 75px;
  font-size: 2rem;
  font-weight: 500;
  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: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-height: 0;
  height: auto;
  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;
}

#header .header_submenu::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background-color: #1f87ca;
}

#header .header_submenu li {
  padding: 13px 0;
}

#header .header_submenu li a {
  font-size: 1.8rem;
  line-height: 1;
}

#header .language {
  position: relative;
  width: 40px;
  height: 64px;
  margin-left: 4px;
  background-image: url('../img/inc/language-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  transition: all .35s ease;
  cursor: pointer;
}

#header .language_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 64px;
  height: 0;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  overflow: hidden;
  visibility: hidden;
  transition: all .35s ease;
}

#header .language_menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translate(-50% , -100%);
  width: 10px;
  height: 6px;
  background-image: url('../img/inc/language-box-arrow.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

#header .language_menu li a {
  display: block;
  width: 100%;
  padding: 7px 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  color: #909090;
}

#header .language_menu li a.on {
  font-weight: 700;
  color: #12196d;
}

#header .header_mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 50px;
  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: #1f87ca;
}

#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: #1f87ca;
  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: #1f87ca;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header[data-header="sticky"] {
  top:-103px;
}

#header[data-click-header="sticky"] {
  top:-103px;
}

#header.active {
  background-color: #fff;
  box-shadow: 0px 0px 3px 1px #e6e6e6;
}

#header.active .header_logo a {
  background-image: url("../img/inc/logo-on.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#header.active .header_menu__link {
  color: #1a1a1a;
}

#header.active .language {
  background-image: url('../img/inc/language-icon-on.png');
}


@media (min-width: 1201px) {
  #header::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  #header.header-active {
    background-color: #fff;
  }
  
  #header.header-active .header_logo a {
    background-image: url("../img/inc/logo-on.png");
  }
  
  #header.header-active .header_menu__link {
    color: #1a1a1a;    
  }
  
  #header .header_menu__list.menu-active .header_submenu {
    max-height: fit-content;
    opacity: 1;
    padding: 22px 0;
    overflow: visible;
    border-top: 1px solid #c1c1c1;
  }

  #header .header_submenu li:hover a {
    font-weight: 600;
    color: #1f87ca;
  }

  #header.header-active .language {
    background-image: url('../img/inc/language-icon-on.png');
  }
  
  #header .language:hover .language_menu {
    height: 72px;
    overflow: visible;
    visibility: visible;
  }
}

@media (max-width: 1200px) {
  #header {
    position: fixed;
    height: 50px;
    background-color: #fff;
  }

  #header .header_logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: 135px;
    height: 24px;
    z-index: 99999;
  }

  #header .header_logo a {
    background: url("../img/inc/logo-on.png") no-repeat center;
    background-size: cover;
  }

  #header .header_main {
    display: block;
    overflow-y: auto;
    z-index: 10000;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 500px;
    width: 100%;
    height: 100%;
    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: 25px 0;
    border-bottom: 1px solid #1f87ca;
  }
  
  #header .header_menu__list:first-of-type {
    padding-top: 0;
  }
  
  #header .header_menu__list:last-of-type {
    border-bottom: none;
  }
  
  #header .header_menu__link {
    padding: 0;
    font-size: 1.6rem;
    justify-content: start;
    color: #1a1a1a;
  }

  #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: #1f87ca;
    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-height: 0px;
    padding: 0px;
    margin: -15px 0px 15px;
    text-align: left;
    background-color: transparent;
  }
  
  #header .header_submenu::before {
    display: none;
  }
  
  #header .header_submenu li {
    margin-top: 0px;
    padding: 0px;
  }

  #header .header_submenu li a {
    display: block;
    margin-top: 15px;
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.2;
  }
  
  #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: #1f87ca;
  }

  #header .header_menu__toggle[data-menu-link="true"]::before {
    background-color: #1f87ca;
    -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: 350px;
    margin: 0px;
  }
  
  #header .language {
    position: absolute;
    top: 11px;
    height: fit-content;
    left: calc(100% - 90px);
    z-index: 99999;
    background-image: none;
  }

  #header .language_menu {
    position: static;
    flex-direction: row;
    gap: 0 7px;
    height: fit-content;
    border: none;
    background-color: transparent;
    visibility: visible;
  }
  
  #header .language_menu li a {
    font-size: 1.6rem;
  }

  #header .language_menu li span {
    display: block;
    width: 1px;
    height: 15px;
    background-color: #c1c1c1;
  }
    
  #header.active .language {
    background-image: none;
  }
  
  #header .language_menu::before {
    display: none;
  }
}


@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

@media (max-width: 500px) {
  #header .header_main {
    max-width: 100%;
  }
}


/* Sub-wrap */
.sub-wrap {
  padding-top: 96px;
}

.sub-wrap #header {
  background-color: #fff;
  border-bottom: 1px solid #c1c1c1;
  /* box-shadow: 0px 0px 3px 1px #e6e6e6; */
}

.sub-wrap #header .header_logo a {
  background-image: url("../img/inc/logo-on.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-wrap #header .header_menu__link {
  color: #1a1a1a;
}

.sub-wrap #header .language {
  background-image: url('../img/inc/language-icon-on.png');
}


@media(max-width:1200px) {
  .sub-wrap {
    padding-top: 50px;
  }

  .sub-wrap #header .language {
    background-image: none;
  }
}

/* Footer */
#footer {
  padding: 40px 0;
  background-color: #3e3e3e;
  color: #fff;
}

#footer .footer-container{
  max-width: 1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

#footer .footer-logo {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-menu {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#footer .footer-list {
  padding: 0 17px;
  border-left: 1px solid #ccc;
  font-size: 1.4rem;
  font-weight: 700;
}

#footer .footer-list span {
  font-weight: 400;
  color: #dcdcdc;
}

#footer .footer-list:first-of-type {
  padding-left: 0;
  border-left: none;
}

#footer .copyright {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

#footer .copyright span {
  font-weight: 400;
}

@media(max-width:1200px){
  #footer .footer-logo {
    font-size: 1.2rem;
  }
  
  #footer .footer-list {
    font-size: 1.2rem;
  }
  
  #footer .copyright {
    font-size: 1.2rem;
  }
}

@media(max-width:1024px){
  #footer {
    padding: 35px 0;
  }

  #footer .footer-menu {
    flex-wrap: wrap;
    gap: 10px 0;
    max-width: 500px;
    width: 100%;
    margin-bottom: 15px;
  }
  
  #footer .footer-list {
    padding: 0 15px;
  }

  #footer .footer-list:nth-of-type(3) {
    padding-left: 0;
    border-left: none;
  }
}

@media(max-width:768px){
  #footer {
    padding: 30px 0;
  }
  
  #footer .footer-logo {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  #footer .footer-menu {
    margin-bottom: 10px;
  }
  
  #footer .footer-list {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  
  #footer .copyright {
    font-size: 1.2rem;
  }
}

@media(max-width:500px){
  #footer {
    padding: 25px 0;
  }
  
  #footer .footer-logo {
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  #footer .footer-menu {
    gap: 7px 0;
    margin-bottom: 10px;
  }
  
  #footer .footer-list {
    width: 100%;
    padding: 0;
    border: none;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  
  #footer .copyright {
    font-size: 1.1rem;
  }
}