/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#101010;
  font-family: 'NotoSansKR', sans-serif;
  font-size:62.5% !important;
  /* letter-spacing:-0.02em; */
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  animation:entry .3s ease forwards;
  opacity: 0;
	/* outline: none;
	-webkit-tap-highlight-color : transparent !important; */
}

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;
	-webkit-tap-highlight-color: rgba(0,0,0,.1);
}

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('/en/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:#999999;
}

@-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;}
.mb{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;}
}
@media screen and (max-width:576px){
	.mb {
		display: block;
	}
}

/* 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);
}


/* Font Family */
.font-family--montserrat {
  font-family: 'Montserrat', sans-serif;
}

/* Font Weight */
.font-weight--bold {
  font-weight:700;
}



/* Font Color */
.color--point {
  color:#0068b7;
}

.color--darkgreen {
  color:#006b2d;
}

.color--lightgreen {
  color:#3cb44a;
}

.color--lightbrown {
  color:#697215;
}

.color--blue {
  color:#0650c0;
}

.color--darkblue {
  color:#253c95;
}

.color--lightblue {
  color:#4e67a5;
}

.color--red {
  color:#e30613;
}


/* Font Align */
.text--center {
  text-align: center;
}


/* 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;
}

.button--point {
  color:#fff;
  background-color: #0068b7;
}

.button--gray8 {
  color:#fff;
  background-color: #898989;
}

.button--linepoint {
  color:#0068b7;
  border-color:#0068b7;
}

@media screen and (min-width:1201px) {
  .button--point:hover {
    background-color: #00477d;
  }

  .button--gray8:hover {
    background-color: #666;
  }  

  .button--linepoint:hover {
    color:#fff;
    background-color: #0068b7;
  }
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Container */
.container {
  max-width:1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}


/* Wrap */
.wrap--sub {
  padding-top:109px;
}

.wrap--main {
  padding-top:108px;
}

@media screen and (max-width:1200px) {
  .wrap--main {
    padding-top:50px;
  }

  .wrap--sub {
    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 - 580px);
  overflow: hidden;
}


/* Header Theme */
#header[header-theme = "header-theme-sub"] {
  background-color: #fff;
  border-bottom:1px solid #d2d2d2;
}

#header[header-theme = "header-theme-sub"] .h_menu__link {
  color:#191919;
}

#header[header-theme = "header-theme-sub"] .h_global li::after {
  background-color: #313131;
}

#header[header-theme = "header-theme-sub"] .h_global a {
  color:#191919;
}


/* Header */
#header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  background-color: #fff; 
  border-bottom:1px solid #ccc;
}

#header .h-container {
  max-width:1790px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

#header .h-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
}

#header .h_logo {
  display: block;
  width:102px;
  height:46px;
}

#header .h_logo a {
  display: block;
  width:100%;
  height:100%;
  background:url('/en/img/common/h_logo.png') no-repeat center;
}

#header .h_menu {
  display: flex;
  align-items: center;
  margin:0px -160px 0px 0px;
}

#header .h_menu__li {
  cursor: pointer;
  position: relative;
  padding:40px 160px 40px 0px;
}

#header .h_menu__mobile {
  display: none;
}

#header .h_menu__link {
  font-size:1.8rem;
  font-weight:500;
  color:#191919;
}

#header .h_menu__link h2 {
  font-size: inherit;
  font-weight: inherit;
  color:inherit;
}

#header .h_submenu {
  position: absolute;
  top:100%;
  left:0;
  width:100%;
  max-height:0;
  overflow: hidden;
  -webkit-transition: all ease .35s;
  transition: all ease .35s;
}

#header .h_submenu li {
  margin-top:28px;
}

#header .h_submenu li:first-child {
  margin-top: 50px;
}

#header .h_submenu a {
  display: block;
  font-size:1.8rem;
  /* line-height: 1; */
  color:#191919;
}

#header .mobile-familysite {
  display: none;
}

#header .h_global__pc {
  display: block;
}

#header .h_global__mobile {
  display:none;
}

#header .h_global ul {
  display: flex;
  margin:0px -10px;
}

#header .h_global li {
  position: relative;
  padding:0px 10px;
}

#header .h_global li::after {
  content:"";
  display: block;
  position: absolute;
  top:50%;
  right:0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:1px;
  height:14px;
  background-color: #191919;
}

#header .h_global li:last-child::after {
  display: none;
}

#header .h_global a {
  display: block;
  font-size:1.8rem;
  line-height:1;
  color:#191919;
}

#header .h_global li.on a {
  font-weight:700;
}

#header .h_mobile {
  display: none;
  position: absolute;
  top:0;
  right:0;
  width: 50px;
  height: 50px;
  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: 3px;
  background-color: #333;
}

#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);
  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);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h_main__background {
  z-index:-1;
  position: absolute;
  top: calc(100% + 1px);
  left: -50%;
  width: 200%;
  height:0;
  background-color:#fff;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}


@media screen and (min-width:1201px) {
  #header .h_menu__link:hover {
    color:#0068b7 !important;
  }

  #header .h_submenu a:hover {
    color:#0068b7 !important;
  }


  /* Scroll Date */
  #header[data-header = "sticky"] {
    background-color: #fff; 
    border-bottom:1px solid #ccc;
  }

  #header[data-header = "sticky"] .h_menu__link {
    color:#191919;
  }

  #header[data-header = "sticky"] .h_global li::after {
    background-color: #191919;
  }

  #header[data-header = "sticky"] .h_global a {
    color:#191919;
  }


  /* Sub Menu Data */
  #header[data-header-submenu = "on"] {
    background-color: #fff;
    border-bottom:1px solid #ccc;
  }

  #header[data-header-submenu = "on"] .h_menu__link {
    color:#191919;
  }

  #header[data-header-submenu = "on"] .h_submenu {
    max-height:350px;
  }

  #header[data-header-submenu = "on"] .h_global a {
    color:#191919;
  }

  #header[data-header-submenu = "on"] .h_global li::after {
    background-color: #191919;
  }

  #header[data-header-submenu = "on"] .h_main__background {
    height:400px;
  }
}

@media screen and (max-width:1366px){
  #header .h_menu {
    margin:0px -140px 0px 0px;
  }
  
  #header .h_menu__li {
    padding:40px 140px 40px 0px;
  }
}
@media screen and (max-width:1200px){
  #header {
    height:50px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .15);
  }

  #header .h-container {
    max-width:100%;
    padding:0px;
  }

  #header .h_logo {
    position: absolute;
    top:8px;
    left:15px;
    width:76px;
    height:34px;
  }

  #header .h_logo a {
    background-size:auto 34px;
  }

  #header .h_main {
    display: block;
    overflow-y: auto;
    z-index: 99999;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 70px 15px;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
  }

  #header .h_menu {
    display: block;
    margin:0px;
  }

  #header .h_menu__li {
    padding:0px;
		-webkit-tap-highlight-color: transparent;
  }

  #header .h_menu__mobile {
    display:block;
  }  

  #header .h_menu__link {
    display: block;
    position: relative;
    /* font-size:1.6rem; */
    line-height:1;
    color:#000;
    padding:15px 0px;
    border-bottom:1px solid #ddd;
  }

  #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: #000;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s;
    transition: all .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;
    width: 100%;
    max-height:0px;
    top: unset;
    left: unset;
    padding:0px;
    margin:-10px 0px 10px;
  }

  #header .h_submenu a {
    font-size:1.6rem;
    color:#919191;
    margin-top: 20px;
		-webkit-tap-highlight-color: rgba(0,0,0,.1);
  }

  #header .h_submenu li {
    margin-top:0px;
  }

  #header .h_submenu li:first-child {
    margin-top:0px;
  }

  #header .mobile-familysite {
    display:block;
    margin-top:40px;
    padding:20px 10px;
    background-color: #e7e7e7;
  }

  #header .mobile-familysite li {
    padding:5px 10px;
  }

  #header .mobile-familysite a {
    display: block;
    font-size:1.6rem;
    font-weight:700;
    color:#191919;
  }

  #header .h_global {
    position: absolute;
    top:17px;
    left:15px;
    /* right:60px; */
  }

  #header .h_global__pc {
    display:none;
  }
  
  #header .h_global__mobile {
    display: block;
  }

  #header .h_global ul {
    margin:0px -6px;
  }

  #header .h_global li {
    padding:0px 6px;
  }

  #header .h_global a {
    font-size:1.6rem;
    color:#191919;
  }

  #header .h_global li::after {
    height:12px;
    background-color: #191919;
  }

  #header .h_mobile {
    display: block;
  }

  #header[data-header-mobile = "on"] .h_main {
    right:0;
  }

  #header .h_menu__toggle[data-menu-link="true"]{
    color:#0068b7;
  }

  #header .h_menu__toggle[data-menu-link="true"]::before {
    /* background: #fff !important; */
    background-color: #0068b7;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #header .h_menu__toggle[data-menu-link="true"]::after {
    opacity: 0;
    /* background: #fff !important; */
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .h_menu__toggle[data-menu-link="true"] + .h_submenu {
    visibility: visible;
    opacity:1;
    max-height:300px;
    margin:0px 0px 15px;
  }
}
@media screen and (max-width:768px){
  /* #header .h_menu__link {
    font-size:1.5rem;
  } */

  #header .h_submenu a {
    font-size:1.5rem;
    margin-top:18px;
  }

  #header .mobile-familysite {
    padding:10px;
  }
}
@media screen and (max-width:576px){
  /* #header .h_menu__link {
    font-size:1.4rem;
  } */

  #header .h_submenu a {
    /* font-size:1.4rem; */
  }
}


/* Footer */
#footer {
  padding:80px 0px 90px;
  background-color: #404040;
}

#footer .f-container {
  max-width:1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

#footer .f-top {
  display: flex;
  justify-content: space-between;
  padding-bottom:50px;
  border-bottom:1px solid #ccc;
}

#footer .f_logo {
  display: block;
  width:119px;
  height:53px;
  background:url('/en/img/common/f_logo.png') no-repeat center;
}

#footer .f_main {
  display:flex;
  max-width:880px;
  width:100%;
}

#footer .f_item {
  flex:1 1;
}

#footer .f_item__tit {
  display: block;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
  margin-bottom:40px;
}

#footer .f_item__tit.mo {
  display: none;
}

#footer .f_item__menu {
  margin:-10px 0px;
}

#footer .f_item__menu li {
  padding:10px 0px;
}

#footer .f_item__menu a {
  display: block;
  font-size:1.6rem;
  line-height:1;
  color:#fff;
}

#footer .f_family {
  width:210px;
  height:50px;
  position: relative;
  cursor: pointer;
}

#footer .f_family__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:16px 25px;
  border:1px solid #ffffff;
}

#footer .f_family__btn span {
  display: block;
  font-size:1.6rem;
  line-height:1;
  color:#fff;
}

#footer .f_family__btn span.arrow {
  width:14px;
  height:8px;
  background:url('/en/img/common/f_select.png') no-repeat center;
  -webkit-transition: all ease .1s;
  transition: all ease .1s; 
}

#footer .f_family__menu {
  display: none;
  position: absolute;
  left:0;
  bottom:50px;
  width:100%;
  background-color: #222;
  padding:5px 0px;
}

#footer .f_family__menu li {
  font-size:1.6rem;
  line-height:1;
  color:#fff;
  padding:10px 25px;
}

#footer .f-bot {
  position: relative;
  padding-top:50px;
}

#footer .din {
  position: relative;
}

#footer .rt {
  position: absolute;
  top:0;
  right:0;
}

#footer .f_info {
  display: flex;
  flex-wrap: wrap;
  margin:0px -12px;
}

#footer .f_info li {
  font-size:1.6rem;
  color:#fff;
  padding:0px 12px;
  position: relative;
}

#footer .f_info li::after {
  content:"";
  display: block;
  position: absolute;
  top:50%;
  right:0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width:2px;
  height:16px;
  background-color:#a0a0a0;
}



#footer .f_info li:last-child::after {
  display: none;
}

#footer .f_copylight {
  font-size:1.6rem;
  color:#fff;
  margin-top:10px;
}

#footer .f_scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  width:50px;
  height:50px;
  background:#fff url('/en/img/common/f_scroll.png') no-repeat center;
}


#footer  [aria-family = "true"] .f_family__menu {
  display:block;
  animation: family-fade-in ease .15s forwards;
  opacity: 0;
}

@-webkit-keyframes family-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes family-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media screen and (max-width:1200px) {
  #footer .f_logo {
    display: none;
  }

  #footer .f_main {
    max-width:920px;
  }

  #footer .f_item__tit {
    font-size:1.5rem;
  }

  #footer .f_item__menu a {
    font-size:1.5rem;
  }

  #footer .f_family {
    height:49px;
  }

  #footer .f_family__btn span {
    font-size:1.5rem;
  }

  #footer .f_family__menu {
    bottom:49px;
  }

  #footer .f_family__menu li {
    font-size:1.5rem;
  }

  #footer .f_info li {
    font-size:1.5rem;
  }

  #footer .f_copylight {
    font-size:1.5rem;
  }
}
@media screen and (max-width:992px) {
  #footer .f-top {
    padding-bottom:38px;
  }

  #footer .f_family {
    height:41px;
  }

  #footer .f_family__btn {
    padding:12px 18px;
  }

  #footer .f_family__menu {
    bottom:41px;
  }

  #footer .f_family__menu li {
    padding:8px 18px;
  }

  #footer .f-bot {
    padding-top:38px;
  }

  #footer .rt {
    position: fixed;
    top:unset;
    right: 15px;
    bottom: 15px;
    z-index:999;
    /* display: none; */
  }
  
  #footer .f_scroll {
    border:1px solid #191919;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    visibility: hidden;
    opacity: 0; 
  }

  #footer .f_info {
    margin:0px -8px;
  }
  
  #footer .f_info li {
    padding:0px 8px;
  }
  
  #footer .f_info li:nth-child(3):after {
    display: none;
  }

  #footer .f_copylight {
    margin-top:8px;
  }

  [data-scroll-top="true"] #footer .f_scroll {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: ease-out .25s;
    transition: ease-out .25s;
  }
}
@media screen and (max-width:768px) {
  #footer {
    padding:40px 0px 60px;
  }

  #footer .f_main {
    display: none;
  }
  
  #footer .f_item__tit.pc {
    display: none;
  }
  
  #footer .f_item__tit.mo {
    display: block;
  }

  #footer .f-top {
    padding-bottom:26px;
  }

  #footer .f_family {
    width: 100%;
    height:auto;
  }

  #footer .f_family__btn {
    padding:10px 14px;
  }

  #footer .f_family__btn span {
    font-size:1.4rem;
  }
  
  #footer .f_family__menu {
    bottom:36px;
  }

  #footer .f_family__menu li {
    padding:6px 14px;
  }

  #footer .f_info {
    justify-content: center;
    text-align: center;
    margin:0px -6px;
  }

  #footer .f_info li {
    font-size:1.4rem;
    padding:0px 6px;
  }

  #footer .f_copylight {
    text-align: center;
    font-size:1.4rem;
  }

  #footer .f_scroll {
    width:40px;
    height:40px;
  }
}
@media screen and (max-width:576px) {
  #footer {
    padding:30px 0px 50px;
  }

  #footer .f_family__btn span {
    font-size:1.3rem;
  }

  #footer .f_family__menu {
    bottom:35px;
  }

  #footer .f_family__menu li {
    font-size:1.3rem;
  }

  #footer .f_info li {
    width: 100%;
    font-size:1.3rem;
  }

  #footer .f_info li::after {
    display: none;
  }

  #footer .f_copylight {
    font-size:1.3rem;
  }
}