/* Font */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-style: normal;
    src: url('/child/font/Pretendard-Thin.woff2') format('woff2'),
         url('/child/font/Pretendard-Thin.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-style: normal;
    src: url('/child/font/Pretendard-ExtraLight.woff2') format('woff2'),
         url('/child/font/Pretendard-ExtraLight.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('/child/font/Pretendard-Light.woff2') format('woff2'),
         url('/child/font/Pretendard-Light.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    src: url('/child/font/Pretendard-Regular.woff2') format('woff2'),
         url('/child/font/Pretendard-Regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('/child/font/Pretendard-Medium.woff2') format('woff2'),
         url('/child/font/Pretendard-Medium.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    src: url('/child/font/Pretendard-SemiBold.woff2') format('woff2'),
         url('/child/font/Pretendard-SemiBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    src: url('/child/font/Pretendard-Bold.woff2') format('woff2'),
         url('/child/font/Pretendard-Bold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    src: url('/child/font/Pretendard-ExtraBold.woff2') format('woff2'),
         url('/child/font/Pretendard-ExtraBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    src: url('/child/font/Pretendard-Black.woff2') format('woff2'),
         url('/child/font/Pretendard-Black.woff') format('woff');
    font-display: swap;
}


/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  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;
  font-size:62.5% !important;
  color:#101010;
  letter-spacing:-0.02em;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
  -webkit-animation: fadein .3s ease forwards;
  animation: fadein .3s ease forwards;
  opacity: 0;
}

body {
  font-size:1.6rem;
}

ul,ol {
  list-style: none;
}

img {
  max-width:100%;
}

a {
  text-decoration:none;
  color:inherit;
  outline:none;
}

b, strong {
  font-weight:800;
}

button {
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table {
  border-collapse:collapse;
}

input,select,textarea {
  padding-left:15px;
  padding-right:15px;
  font-family:inherit;
  font-size:1.8rem;
  font-weight:400;
  background-color:#fff;
  border:1px solid #ccc;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
  outline: none;
  border-radius:5px;
}

textarea {
  padding:10px;
  resize: none;
}

select {
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
}

select::-ms-expand {
  display:none;
}

::placeholder{
  color:#8a8a8a;
}

:-ms-input-placeholder{
  color:#8a8a8a;
}

::-ms-input-placeholder{
  color:#8a8a8a;
}

@-webkit-keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

@keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


/* Display */
.d-block {
  display:block;
}

.d-none {
  display: none;
}


/* 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);
}


/* Hidden */
.hidden {
  overflow: hidden;
}


/* Display */
@media(max-width:1024px){
  .pc{display:none;}
}

@media(max-width:768px){
}


/* Size */

/* Weight */
.font-weight--light {
  font-weight:300;
}

.font-weight--medium {
  font-weight:500;
}

.font-weight--sembold {
  font-weight:600;
}

.font-weight--bold {
  font-weight:700;
}

/* Color */
.text-yellow {
  color:#f8b72d;
}

.text-green {
  color:#9cc813;
}

/* Block */
.block {
  padding:2px 4px;
}

.block--yellow {
  color:#fff;
  background-color: #f8b72d;
}

.block--green {
  color:#fff;
  background-color: #9cc813;
}


/* Button */
.button {
  display:inline-flex;
  justify-content: space-between;
  align-items: center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  cursor: pointer;
  border-radius:50px;
}

.button--line {
  color:#101010;
  border-color: #101010;
}

.button--yellow {
  color:#fff;
  background-color: #f8b62b;
}

.button--green {
  color:#fff;
  background-color: #9dc814;
}

.button--black {
  color:#fff;
  background-color: #000000;
}

@media (min-width:1201px) {
  .button--line:hover {
    color:#fff;
    background-color: #101010;
  }

  .button--yellow:hover {
    background-color:#ffb313;
  }

  .button--green:hover {
    background-color: #799d05;
  }


  .button--black:hover {
    background-color: #333;
  }
}


/* Wrap */
.wrap--sub {
  padding-top:95px;
}

@media (max-width:1200px) {
  .wrap--sub {
    padding-top:60px;
  }
}



/* Main */
#main {
  min-height: calc(100vh - 230px);
  overflow:hidden;
}


/* Container */
.container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}


/* Header */
#header {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
}

.h__container {
  width: 100%;
  height:96px;
  background-color: #fff;
  border-bottom:1px solid #eaeaea;
  position: relative;
}

.h__inner {
  height:100%;
  display:flex;
  justify-content: center;
}

.h__left {
  position: absolute;
  top:20px;
  left:80px;
}

.h__logo {
  width:162px;
  height:56px;
  overflow: hidden;
  position: relative;
}

.h__logo a {
  display: block;
  width:100%;
  height:100%;
  background:url('/child/img/inc/h_logo.svg') no-repeat center;
}

.h__menu {
  display: flex;
  align-items: center;
  height:100%;
}

.h__menu__list {
  position: relative;
  height:100%;
}

.h__menu__link {
  display:inline-flex;
  align-items: center;
  height:100%;
  font-size:2rem;
  font-weight:500;
  line-height:1;
  margin:0px 40px;
}

.h__menu__link h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color:inherit;
}

.h__submenu {
  opacity:0;
  visibility: hidden;
  position: absolute;
  width:100%;
  top:96px;
  left:0;
  background-color: #fff;
  padding:10px 0px;
  -webkit-transition: all ease .15s;
  transition: all ease .15s;
}

.h__submenu li {
  text-align: center;
  padding:10px 5px;
}

.h__right {
  position: absolute;
  top:0;
  right:0;
  width:96px;
  height:96px;
}

.h__right .h__button {
  width:100%;
  height:100%;
  background-color: #f8b62b;
  display: inline-block;
}

.h__right .h__button--mo {
  display: none;
}

.h__right .h__button__item {
  display: block;
  width:40px;
  height:4px;
  margin:0 auto;
  background-color: #fff;
  position: relative;
}

.h__right .h__button__item::before,
.h__right .h__button__item::after {
  content:"";
  display: block;
  position: absolute;
  width:40px;
  height:4px;
  background-color: #fff;
}

.h__right .h__button__item::before {
  margin-top:-10px;
  -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;
}

.h__right .h__button__item::after {
  margin-top:10px;
  -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;
}

@media (min-width:1201px) {
  .h__submenu.on {
    opacity:1;
    visibility:visible;
  }
}
@media (max-width:1366px) {
  .h__left {
    left:30px;
  }
}
@media (max-width:1200px) {
  #header {
    position: fixed;
  }

  .h__container {
    height:60px;
  }

  .h__left {
    top:16px;
    left:15px;
    z-index:10000;
  }

  .h__logo {
    width:86px;
    height:28px;
  }

  .h__logo a {
    background-size:auto 28px;
  }

  .h__cnt {
    display: block;
    overflow-y: auto;
    z-index: 9999;
    position: fixed;
    top: 0;
    right:-100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 70px 25px;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
    margin:0px;
  }

  .h__menu {
    display: block;
    height:auto;
  }

  .h__menu__list {
    height: auto;
  }

  .h__menu__link {
    display:block;
    font-size:1.8rem;
    margin:10px 0px;
    padding:10px 0px;
  }

  .h__submenu {
    opacity:0;
    visibility:hidden;
    position: relative;
    width: 100%;
    max-height:0px;
    top: unset;
    left: unset;
    padding:0px;
    margin:-10px 0px 10px;
  }

  .h__submenu li {
    text-align:left;
    padding:8px 0px;
  }

  .h__submenu a {
    display: block;
    color:#999;
  }

  .h__right {
    width:60px;
    height:60px;
    z-index:10000;
  }

  .h__right .h__button--pc {
    display: none;
  }

  .h__right .h__button--mo {
    display: block;
  }

  .h__right .h__button__item {
    width:28px;
    height:2px;
  }

  .h__right .h__button__item::before,
  .h__right .h__button__item::after {
    width:28px;
    height:2px;
  }

  #header[data-header-mobile = "on"] .h__cnt {
    right:0px;
  }

  #header .h__button[aria-pressed="true"] .h__button__item {
    background-color: rgba(0,0,0,0) !important;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  #header .h__button[aria-pressed="true"] .h__button__item::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  #header .h__button[aria-pressed="true"] .h__button__item::after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  #header .h__menu__toggle[aria-toggle="true"] + .h__submenu {
    visibility: visible;
    opacity:1;
    max-height:300px;
    margin:-10px 0px 15px;
  }
}
@media (max-width:992px) {

}
@media (max-width:768px) {

}
@media (max-width:500px) {

}


/* Sitemap */
.sitemap {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:9999;
  transition:all .3s ease;
  opacity:0;
  visibility: hidden;
}

.sitem-wrap {
  display: flex;
  justify-content: flex-end;
  width:100%;
  height:100%;
}

.sitemap-container {
  width:56%;
  height:100%;
  background-color: #fff;
  padding:160px 0px 160px 8%;
  position:relative;
  opacity:0;
  visibility: hidden;
  z-index:10;
  transition:all .6s ease;
}

.sitemap-container::after {
  content:"";
  display: block;
  position: absolute;
  right:-100px;
  opacity:0;
  bottom:0;
  width:100%;
  height:100%;
  pointer-events: none;
  background:url('/child/img/inc/sitemap_bg.png') no-repeat bottom center;
  transition:all 1s ease .2s;
  z-index:-1;
}

.sitemap-container .sitemap-close {
  position: absolute;
  top:80px;
  right:120px;
  width:48px;
  height:48px;
  background:url('/child/img/inc/sitemap_close.png') no-repeat center;
  cursor: pointer;
}

.sitemap-container .sitemap-item {
  display: flex;
  align-items: center;
  margin-bottom:80px;
  opacity:0;
  transform: translateY(-50px);
  transition:all .6s;
}

.sitemap-container .sitemap-item:last-child {
  margin-bottom:0px;
}

.sitemap-container .sitemap-item:nth-child(1) {
  transition-duration: .6s;
  transition-delay: .2s;
}

.sitemap-container .sitemap-item:nth-child(2) {
  transition-duration: .6s;
  transition-delay: .4s;
}

.sitemap-container .sitemap-item:nth-child(3) {
  transition-duration: .6s;
  transition-delay: .6s;
}

.sitemap-container .sitemap-item:nth-child(4) {
  transition-duration: .6s;
  transition-delay: .8s;
}

.sitemap-container .sitemap-item:nth-child(5) {
  transition-duration: .6s;
  transition-delay: 1s;
}

.sitemap-container .sitemap-item:nth-child(6) {
  transition-duration: .6s;
  transition-delay: 1.2s;
}

.sitemap-container .sitemap-item .sitemap-tit {
  width:200px;
  font-size:2.4rem;
  font-weight:600;
  color:#191618;
}

.sitemap-container .sitemap-item .sitemap-menu {
  width:calc(100% - 200px);
}

.sitemap-container .sitemap-item .sitemap-menu a {
  font-size:2rem;
  font-weight:500;
  color:#929ba0;
  margin-right:5%;
}

.sitemap-container .sitemap-item .sitemap-menu a:last-child {
  margin-right:0px;
}

.sitemap .sitemap-background {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,.4);
  opacity:0;
  visibility: hidden;
  transition:all .6s ease;
}

.sitemap.on {
  opacity:1;
  visibility:visible;
}

.sitemap.on .sitemap-container {
  opacity:1;
  visibility:visible;
}

.sitemap.on .sitemap-container::after {
  right:0;
  opacity:1;
}

.sitemap.on .sitemap-background {
  opacity:1;
  visibility:visible;
}

.sitemap.on .sitemap-container .sitemap-item {
  opacity:1;
  transform: translateY(0);
}

@media (max-width:1566px) {
  .sitemap-container {
    padding:160px 0px 160px 6%;
  }

  .sitemap-container .sitemap-close {
    right:60px;
  }
}

@media (max-width:1366px) {
  .sitemap-container {
    width:64%;
  }

  .sitemap-container .sitemap-item .sitemap-tit {
    width:160px;
  }

  .sitemap-container .sitemap-item .sitemap-menu {
    width:calc(100% - 160px);
  }
}

@media (max-width:1200px) {
  .sitemap {
    display: none;
  }
}


/* Footer */
#footer {
  background-color: #656565;
  padding-bottom:24px;
}

.f__container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding: 0px 15px;
}

.f__top {
  border-bottom:1px solid #e5e5e5;
}

.f__link {
  display: -ms-flexbox;
  display: flex;
  margin:0px -18px;
}

.f__link li {
  padding:24px 18px;
}

.f__link a {
  font-size:1.6rem;
  color:#fff;
}

.f__bot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding:25px 0px 40px;
}

.f__logo {
  display: block;
  width:162px;
  height:56px;
  background:url('/child/img/inc/f_logo.svg') no-repeat center;
}

.f__info {
  max-width:720px;
}

.f__info li {
  float: left;
  font-size:1.6rem;
  font-weight:300;
  line-height:.9;
  color:#fff;
  margin:6px 0px;
  padding:0px 13px;
  border-left:1px solid #fff;
}

.f__info li:nth-child(1),
.f__info li:nth-child(5),
.f__info li:nth-child(6) {
  border-left:0px;
}

.f__info li.f__info__both {
  clear: both;
  width:100%;
}

.f__family {
  width:220px;
  height:48px;
  position: relative;
  z-index:99;
}

.f__family__button {
  width:100%;
  height:100%;
  text-align: left;
  font-size:1.8rem;
  font-weight:500;
  color:#fff;
  border-radius:10px;
  border:1px solid #e5e5e5;
  padding:0px 15px;
  position:relative;
  transition:all .1s ease;
}

.f__family__button::after {
  content:"";
  display:block;
  position: absolute;
  top:50%;
  right:15px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height:10px;
  background:url('/child/img/inc/f_family_arrow.svg') no-repeat center;
  transition:all .3s ease;
}

.f__family__item {
  position: absolute;
  top:-146px;
  left:0;
  width:100%;
  transition:all .1s ease;
  opacity:0;
  visibility:hidden;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}

.f__family__item ul {
  padding:15px 0px;
}

.f__family__item li {
  padding:5px 15px;
}

.f__family__item a {
  font-size:1.6rem;
  color:#101010;
}

.f__capylight {
  text-align: center;
  font-size:1.6rem;
  font-weight:500;
  color:#fff;
}

.f__family[data-family = 'on'] {
  background-color: #f9f9f9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.f__family[data-family = 'on'] .f__family__item {
  opacity:1;
  visibility: visible;
  background-color: #f9f9f9;
}

.f__family[data-family = 'on'] .f__family__button {
  color:#101010;
  border:0px;
}

.f__family[data-family = 'on'] .f__family__button::after  {
  background-image: url('/child/img/inc/f_family_arrow_on.svg');
  transform: rotate(180deg);
}

@media (max-width:1200px) {
  .f__info li {
    font-size:1.4rem;
  }

  .f__family__button {
    font-size:1.6rem;
  }

  .f__capylight {
    font-size:1.4rem;
  }
}
@media (max-width:1024px) {
  .f__link {
    -ms-flex-pack: center;
    justify-content: center;
    margin:0px -14px;
  }

  .f__link li {
    padding:20px 14px;
  }

  .f__bot {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .f__logo {
    height:40px;
    background-size:auto 40px;
    margin-bottom:20px;
  }

  .f__info {
    max-width:none;
    width:100%;
  }

  .f__family {
    margin-top:30px;
    text-align:left;
  }

  .f__info li {
    float: none;
    display: inline-block;
    margin:4px 0px;
    padding:0px 8px;
  }

}
@media (max-width:768px) {
  .f__link {
    margin:0px -10px;
  }

  .f__link li {
    padding:16px 10px;
  }

  .f__link a {
    font-size:1.4rem;
  }

  .f__bot {
    padding:22px 0px 28px;
  }

  .f__logo {
    height:32px;
    background-size:auto 32px;
    margin-bottom:16px;
  }

  .f__info li {
    font-size:1.3rem;
    line-height:1.4;
    margin:2px 0px;
    padding:0px 6px;
    border:0px;
  }

  .f__family {
    width:200px;
    height:42px;
    margin-top:24px;
  }

  .f__capylight {
    font-size:1.3rem;
  }
}
@media (max-width:500px) {

}


/* Quick */
.quick {
  position: fixed;
  right:12.5%;
  bottom:280px;
  z-index:998;
  text-align: center;
}

.quick .quick-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quick .quick-icon {
  width:80px;
  height: 80px;
  background-color: #656565;
  border-radius:50%;
  padding:15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick .quick-icon a {
  display: block;
  width:100%;
  height:100%;
  background:url('/child/img/inc/quick_icon.png') no-repeat center;
}

.quick .quick-tit {
  font-size:2rem;
  font-weight:700;
  color:#171717;
  margin-top:12px;
  opacity:0;
  transition:opacity .3s ease;
}

@media (min-width:1025px) {
  .quick .quick-icon:hover + .quick-tit {
    opacity:1;
  }
}
@media (max-width:1566px) {
  .quick {
    right:4%;
  }
}
@media (max-width:1366px) {
  .quick {
    right:25px;
  }
}
@media (max-width:1200px) {
  .quick {
    right:20px;
    bottom:20px;
  }

  .quick .quick-icon {
    width:56px;
    height:56px;
    background-color:#e72c32;
  }

  .quick .quick-tit {
    display: none;
  }
}
