#mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
}

.mobile-nav {
  background: #222222;
  width: 20rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  position: relative;
  padding: 25px 16px;
  text-align: right;
  font-size: 0;
}

.mobile-nav-header a {
  display: inline-block;
  vertical-align: middle;
}

.mobile-nav-header .btn-toggle-menu {
  width: 1.107142857142857rem;
  margin-left: 1rem;
  height: auto;
}

.mobile-nav-header .btn-toggle-menu svg {
  display: block;
  width: 1.107142857142857rem;
  height: auto;
}

.mobile-nav-header .btn-toggle-menu svg path {
  fill: white;
}

.mobile-nav-header .btn-search {
  text-indent: 999em;
  overflow: hidden;
  background: 50% 50% no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: 1.214285714285714rem;
  height: 1.214285714285714rem;
}

.mobile-nav-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-body .gnb {
  margin-bottom: 1.428571428571429rem;
}

.mobile-nav-body .gnb > li > .first-menu {
  font-size:16px;
  display: block;
  padding:10px 20px 16px;
}
.mobile-nav-body .gnb > li.mobile-nav-sub > .first-menu{font-size:16px;}
.mobile-nav-body .gnb > li.mobile-nav-sub{margin-top:20px;}
.mobile-nav-body .gnb > li.mobile-nav-sub:last-child{margin-top:0;}

.mobile-nav-body .gnb > li > .first-menu a {
  display: inline-block;
  vertical-align: middle;
  color:#fff;
}

.mobile-nav-body .gnb > li > .first-menu a.on {
  color:#007acc;
}

.mobile-nav-body .gnb > li > .first-menu a.on span:after {border-color:#007acc;}

.mobile-nav-body .gnb > li > .first-menu a span {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}

.mobile-nav-body .gnb > li > .first-menu a span:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: 50% 50% no-repeat;
  -webkit-background-size: auto .5rem;
  background-size: auto .5rem;
  width:8px;
  height:8px;
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.mobile-nav-body .gnb > li > .first-menu .btn-toggle-submenu {
  background: 50% 50% no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: .85rem;
  height: .85rem;
  text-indent: -999em;
  overflow: hidden;
  font-size: 0;
  position: relative;
  top: .2rem;
  margin-left: .35rem;
  display: inline-block;
  vertical-align: middle;
}

.mobile-nav-body .gnb > li.active > .first-menu a span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top:6px;
}

.mobile-nav-body .gnb .sub-menu {
  background: #191919;
  padding: 15px 0;
  display: none;
}

.mobile-nav-body .gnb .sub-menu > li > a {
  color: #c8c8c8;
  font-size: 0.857142857142857rem;
  padding: 10px 1.428571428571429rem;
  display: block;
}

.mobile-nav-body .gnb .sub-menu > li > a.on {
  color:#007acc;
}

.mobile-nav-body .gnb-sub {
  margin-bottom: 1.428571428571429rem;
}

.mobile-nav-body .gnb-sub > li {
  padding: 0.571428571428571rem 1.428571428571429rem;
}

.mobile-nav-body .gnb-sub > li > a {
  color: #999999;
  font-size: 0.857142857142857rem;
  display: inline-block;
}

.mobile-nav-body .gnb-sub > li > a span {
  display: inline-block;
  padding-right: 1.25rem;
  background: 100% 50% no-repeat;
  -webkit-background-size: auto .6rem;
  background-size: auto .6rem;
}

.mobile-nav-footer .language {
  color: #999999;
  font-size: 0.857142857142857rem;
  padding: 1.428571428571429rem;
}

.mobile-nav-footer .language a {
  color: #999;
}

.mobile-nav-footer .language a.active {
  color: #fff;
}

.mobile-nav-footer .language .split {
  margin: 0 1em;
}

.mobile-nav-footer .sns-link {
  display: flex;
}

.mobile-nav-footer .sns-link a {
  display: block;
  flex: 1;
  text-indent: -999em;
  overflow: hidden;
  background: #272727;
  height: 4rem;
}

.mobile-search {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease-out, visibility 500ms ease-out;
  -moz-transition: opacity 500ms ease-out, visibility 500ms ease-out;
  -ms-transition: opacity 500ms ease-out, visibility 500ms ease-out;
  -o-transition: opacity 500ms ease-out, visibility 500ms ease-out;
  transition: opacity 500ms ease-out, visibility 500ms ease-out;
}

.mobile-search.active {
  opacity: 1;
  visibility: visible;
}

.mobile-search.active .mobile-search-box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.mobile-search .mobile-search-box {
  display: block;
  background: #141414;
  position: relative;
  padding: 25px 16px;
  -webkit-transition: -webkit-transform 500ms ease-out;
  -moz-transition: -moz-transform 500ms ease-out;
  -ms-transition: -ms-transform 500ms ease-out;
  -o-transition: -o-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.mobile-search .mobile-search-box-inner {
  display: flex;
  width: 100%;
  align-items: center;
}

.mobile-search .mobile-search-box-inner .icon-search {
  text-indent: 999em;
  overflow: hidden;
  display: block;
  background: 50% 50% no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: 1.214285714285714rem;
  height: 1.214285714285714rem;
  vertical-align: middle;
  opacity: .25;
  margin-right: 1rem;
}

.mobile-search .mobile-search-box-inner button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}

.mobile-search .mobile-search-box-inner form {
  display: flex;
  flex: 1;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mobile-search .mobile-search-box-inner form input {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  font-family: inherit;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: block;
  flex: 1;
  color: #fff;
  padding: 0;
  margin: 0;
}

.mobile-search .mobile-search-box-inner form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.mobile-search .mobile-search-box-inner form input::-ms-clear {
  display: none;
}

.mobile-search .mobile-search-box-inner form button[type="submit"] {
  width: 1.357142857142857rem;
}

.mobile-search .mobile-search-box-inner form button[type="submit"] svg {
  display: block;
  width: 1.357142857142857rem;
  height: auto;
}

.mobile-search .mobile-search-box-inner form button[type="submit"] svg path {
  fill: white;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  -ms-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.mobile-search .btn-close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  width: 1.571428571428571rem;
  position: absolute;
  right: 16px;
  bottom: -2.5rem;
}

.mobile-search .btn-close svg {
  display: block;
  width: 1.571428571428571rem;
  height: auto;
}

.mobile-search .btn-close svg path {
  fill: white;
}

@media screen and (max-width: 1080px) {
  body {
    position: static;
  }
  body.mobile-nav-opened {
    position: fixed;
    height: 100%;
    width: 100%;
  }
  #mobileNav {
    -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -ms-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .mobile-nav {
    -webkit-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -ms-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
  }
  .mobile-nav-opened #mobileNav,
  #mobileNav.active {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
  }
  .mobile-nav-opened #mobileNav .mobile-nav,
  #mobileNav.active .mobile-nav {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .mobile-nav-opened #mobileNav .mobile-nav,
  #mobileNav.active .mobile-nav {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@media all and (max-width:766px){
  .mobile-nav-body .gnb-sub > li > a{font-size:16px;}
}