@charset "UTF-8"; /********************************************************
■ Header : 헤더 - 기본
********************************************************/
:root {
  --top-height: 100px; /* 메뉴높이 */
  --top-right-w: 80px;
}

#top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  height: var(--top-height);
  transform: skew(-0.05deg); /*글씨깨짐방지*/
}
body.scrolled #top {
  border-color: #eee;
  background: #fff;
}
body.scrolled .is-subpage #top {
  top: calc(-1 * var(--top-height));
}
body.scrolled .is-subpage #top #menu li > .sub-depth-wrap {
  top: calc(-10 * var(--top-height));
}
body.scrolled.menu-on .is-subpage #top {
  background: unset;
  border: none;
}

#top .top-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--top-padding);
  margin-right: var(--top-right-w);
}

#top .top-wrap .left {
  width: 245px;
  height: 75px;
}
#top .top-wrap .logo {
  display: block;
  height: 100%;
  background: url("../image/main_logo_w.png") left center/contain no-repeat;
}

body.scrolled #top .top-wrap .logo {
  background-image: url("../image/main_logo.png");
}
.is-subpage #top .top-wrap .logo {
  background-image: url("../image/main_logo_w.png");
}
body.menu-on #top {
  background: #fff;
}
body.menu-on #top .top-wrap .logo {
  background-image: url("../image/main_logo.png");
}

#top .top-wrap > section {
  position: relative;
  margin-right: 20px;
  padding: 0;
  z-index: 999;
}
#top .top-wrap > section:hover {
  z-index: 10;
}
#top .top-wrap > section span[class*="-btn"] {
  display: block;
  width: 20px;
  height: 20px;
  background: none no-repeat center/contain;
  cursor: pointer;
}
.scrolled:not(.fullpage) #top .top-wrap > section span[class*="-btn"],
/* .is-subpage #top .top-wrap > section span[class*="-btn"] { filter:none; } */


#top .top-wrap > .top-search {
  margin-left: 3%;
}
#top .top-wrap > .top-search .search-btn {
  background-image: url("../image/top-icon-search-w.png");
}
body.scrolled #top .top-wrap > .top-search .search-btn,
body.menu-on #top .top-wrap > .top-search .search-btn {
  background-image: url("../image/top-icon-search.png");
}

body.menu-on #top .top-wrap > section span[class*="-btn"] {
  filter: unset;
}

#top .top-wrap .top-search-box {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
#top .top-wrap .top-search-box form {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  padding: 7px 8px 8px;
  width: 300px;
}
#top .top-wrap .top-search-box form .searchbox {
  background: transparent;
  border: 0;
  flex: 1;
}
#top .top-wrap .top-search-box form .searchbox::placeholder {
  color: #ddd;
}
#top .top-wrap .top-search-box form .searchbox:focus {
  outline: none;
}
#top .top-wrap .top-search-box form button {
  background: transparent;
  border: 0;
  color: var(--main-color2);
  flex: 0 0 25px;
  margin-left: 5px;
}
#top .top-wrap .top-search-box form button:focus {
  outline: none;
}
#top .top-wrap .top-search-box form .x-close {
  color: #444;
  font-size: 1.8rem;
  margin-left: 5px;
  cursor: pointer;
  display: flex;
}

#top .top-wrap > .links {
  width: 25px;
  height: 25px !important;
}

#top .top-wrap > .links .member-btn {
  background-image: url("../image/top-icon-login-w.png");
  width: 25px;
  height: 25px;
}
body.scrolled #top .top-wrap > .links .member-btn,
body.menu-on #top .top-wrap > .links .member-btn {
  background-image: url("../image/top-icon-login.png");
}

#top .top-wrap > section .sub {
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid transparent;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition-duration: 300ms;
}
#top .top-wrap > section:hover .sub,
#top .top-wrap > section .sub:hover {
  max-height: 300px;
  padding: 15px 25px;
  border-color: #ddd;
  opacity: 1;
  visibility: visible;
  transition-duration: 600ms;
}

#top .top-wrap > section .sub:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-radius: 5px 0 0 0;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
#top .top-wrap > section .sub a {
  display: block;
  color: #aaa;
  padding: 2.5px 0;
  text-align: center;
  opacity: 0;
  font-size: 0.875rem;
  transition-duration: 400ms;
}
#top .top-wrap > section:hover .sub a {
  opacity: 1;
}

#top .top-wrap .right {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--top-right-w);
  height: 100vh;
  padding: 120px 10px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}
#top .top-wrap .right:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}
body .is-subpage #top .top-wrap .right {
  z-index: 11;
}
body.scrolled .is-subpage #top .top-wrap .right {
  top: var(--top-height);
}
body.scrolled #top .top-wrap .right:before,
.is-subpage #top .top-wrap .right:before {
  background: rgba(255, 255, 255, 0.9);
  border-left: 1px solid #ddd;
}

#top .top-wrap .right section {
  position: relative;
  z-index: 2;
}

#top .top-wrap .right .langs {
}
#top .top-wrap .right .langs .item li {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top .top-wrap .right .langs .item .lms_logo a {
  color: #fff;
  font-weight: 500;
}
#top .top-wrap .right .langs .item .nis_logo {
  margin-top: var(--layout-gap-64);
}
#top .top-wrap .right .langs .item .nis_logo a {
  position: relative;
  height: var(--icon-md);
  width: var(--icon-md);
}
#top .top-wrap .right .langs .item .nis_logo img {
  position: absolute;
  z-index: 0;
  transition: 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top .top-wrap .right .langs .item .nis_logo img.nis_hov {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
#top .top-wrap .right .langs .item .nis_logo:hover img.nis_hov {
  opacity: 1;
  visibility: visible;
  z-index: 0;
}
#top .top-wrap .right .langs .item .postech_logo {
  position: absolute;
  top: -85%;
  right: 15rem;
  transform: rotate(-90deg);
  width: 13.5rem;
  height: 8rem;
  transform-origin: right;
  transition: 0.8s;
}

.scrolled #top .top-wrap .right .langs .item .postech_logo {
  transform: rotate(0deg);
  animation: postec_logo 0.6s linear forwards;
}
.is-subpage #top .top-wrap .right .langs .item .postech_logo {
  position: static;
  top: unset;
  right: unset;
  height: 6.3rem;
  width: 5rem;
  transform: rotate(0deg);
  animation: unset;
}

@keyframes postec_logo {
  0% {
    position: absolute;
    top: -95%;
    right: 15rem;
    transform: rotate(-90deg);
  }
  99.5% {
    position: absolute;
    top: 95%;
    right: -75%;
    transform: rotate(0deg);
    height: 6.3rem;
    width: 5rem;
  }
  100% {
    position: static;
    top: unset;
    right: unset;
    height: 6.3rem;
    width: 5rem;
    transform: rotate(0deg);
  }
}

.scrolled #top .top-wrap .right .langs .item .nis_logo img.nis_hov,
.is-subpage #top .top-wrap .right .langs .item .nis_logo img.nis_hov {
  opacity: 1;
  visibility: visible;
  z-index: 0;
}
.scrolled #top .top-wrap .right .langs .item .nis_logo img.nis_dif,
.is-subpage #top .top-wrap .right .langs .item .nis_logo img.nis_dif {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

#top .top-wrap .right .langs .item a {
  display: block;
  color: #999;
  transform: rotate(90deg);
}
#top .top-wrap .right .langs .item a.on {
  color: #fff;
}

body.scrolled #top .top-wrap .right .langs .item a.on,
.is-subpage #top .top-wrap .right .langs .item a.on {
  color: #333;
}

#top .top-wrap .right section:last-of-type {
  text-align: center;
  --links-color: #fff;
}
#top .top-wrap .right section:last-of-type span {
  position: relative;
  writing-mode: vertical-rl;
  color: var(--links-color);
  padding-bottom: 60px;
  margin-bottom: 20px;
  transition-duration: 300ms;
}
#top .top-wrap .right section:last-of-type span:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 40px;
  background: var(--links-color);
  display: none;
}

#top .top-wrap .right section:last-of-type li a {
  position: relative;
  display: block;
  font-size: 0;
  white-space: nowrap;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 99px;
}
#top .top-wrap .right section:last-of-type li a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  filter: brightness(100);
  transition-duration: 100ms;
}

#top .top-wrap .right .sns li a:before {
  background: none no-repeat center/26px;
}
#top .top-wrap .right .sns li.kakao a:before {
  background-image: url("../image/sns_icon_kakao.png");
}
#top .top-wrap .right .sns li.naver a:before {
  background-image: url("../image/sns_icon_naver.png");
}
#top .top-wrap .right .sns li.naver_map a:before {
  background-image: url("../image/sns_naver_map_white.png");
}
#top .top-wrap .right .sns li.naver_map a:hover:before {
  background-image: url("../image/sns_naver_map.png");
}
#top .top-wrap .right .sns li.naver_map a:hover {
  background: var(--naver-color);
}
#top .top-wrap .right .sns li.youtube a:before {
  background-image: url("../image/sns_icon_youtube.png");
}
#top .top-wrap .right .sns li.instagram a:before {
  background-image: url("../image/sns_icon_instagram.png");
}
#top .top-wrap .right .sns li.facebook a:before {
  background-image: url("../image/sns_icon_facebook.png");
}
#top .top-wrap .right .sns li.twiter a:before {
  background-image: url("../image/sns_icon_twitter.png");
}

#top .top-wrap .right .sns li.kakao a:hover {
  background: var(--kakao-color);
}
#top .top-wrap .right .sns li.kakao a:hover:before {
  filter: none !important;
  transition-duration: 0ms;
}
#top .top-wrap .right .sns li.naver a:hover {
  background: var(--naver-color);
}
#top .top-wrap .right .sns li.youtube a:hover {
  background: var(--youtube-color);
}
#top .top-wrap .right .sns li.instagram a:hover {
  background: var(--instagram-color);
}
#top .top-wrap .right .sns li.facebook a:hover {
  background: var(--facebook-color);
}
#top .top-wrap .right .sns li.twiter a:hover {
  background: var(--twiter-color);
}

#top .top-wrap .right .shop li a:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .top-wrap .right .shop li.cart a:before {
  content: "\f290";
  font-size: 22px;
}
#top .top-wrap .right .shop li.cart a:hover {
  background: var(--main-color1);
}
#top .top-wrap .right .shop li.order a:before {
  content: "\f0d1";
  font-size: 18px;
}
#top .top-wrap .right .shop li.order a:hover {
  background: var(--main-color3);
}

body.scrolled #top .top-wrap .right section:last-of-type,
.is-subpage #top .top-wrap .right section:last-of-type {
  --links-color: #333;
}
body.scrolled #top .top-wrap .right section:last-of-type li a:before,
.is-subpage #top .top-wrap .right section:last-of-type li a:before {
  filter: none;
}
body.scrolled #top .top-wrap .right .sns li.naver_map a:before,
.is-subpage #top .top-wrap .right .sns li.naver_map a:before {
  background-image: url("../image/sns_naver_map.png");
}
body.scrolled #top .top-wrap .right section:last-of-type li a:hover:before,
.is-subpage #top .top-wrap .right section:last-of-type li a:hover:before {
  filter: brightness(100);
}

/* 상단 우측 메뉴버튼 */
#top .top-menu-btn {
  position: fixed;
  right: 25px;
  top: 50%;
  height: 50px;
  width: 30px;
  margin-top: -25px;
  z-index: 19;
  cursor: pointer;
}
body.menu-on #top .top-menu-btn div {
  background: #111;
}
#top .top-menu-btn div {
  background: #fff;
  border-radius: 99px;
  height: 2px;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 400ms;
  width: 100%;
}
#top .top-menu-btn div:nth-child(1) {
  margin-top: -8px;
}
#top .top-menu-btn div:nth-child(3) {
  margin-top: 8px;
}
#top .top-menu-btn:hover div:nth-child(2) {
  width: 60%;
}

body.scrolled #top .top-menu-btn div,
.is-subpage #top .top-menu-btn div {
  background: #111;
}

@media (max-width: 1024px) {
  :root {
    --top-height: 60px;
    --top-right-w: 0;
  }

  body.scrolled #top {
    top: calc(-1 * var(--top-height));
  }

  #top .top-wrap {
    margin-right: auto;
  }
  body.menu-on #top .top-wrap {
    border: none;
  }
  #top .top-wrap .left {
    width: 160px;
    height: 45px;
  }
  #top .top-wrap .logo {
    background-image: url("../image/main_logo_w.png");
  }
  #top .top-wrap > section {
    display: none;
  }

  #top .top-wrap .right {
    position: static;
    right: var(--top-right-w);
    bottom: auto;
    width: auto;
    height: 100%;
    padding: 0;
    flex-direction: row;
    margin-left: auto;
  }
  #top .top-wrap .right:before,
  #top .top-wrap .right section:last-of-type {
    display: none;
  }

  #top .top-wrap .right .langs .item {
    display: flex;
    align-items: stretch;
  }
  #top .top-wrap .right .langs .item li {
    margin: 0 5px;
  }
  #top .top-wrap .right .langs .item .nis_logo {
    margin: 0 5px 0 var(--spacing-4);
  }
  #top .top-wrap .right .langs .item a {
    transform: rotate(0deg);
    line-height: 1;
  }
  #top .top-wrap .right .langs .item .nis_logo a {
    height: 100%;
  }
  #top .top-wrap .right .langs .item a.on {
    color: #fff;
  }
  #top .top-wrap .right .langs .item .postech_logo {
    position: static;
    top: unset;
    right: unset;
    transform: rotate(0deg);
    width: 5rem;
    padding-bottom: var(--spacing-1);
    animation: none;
  }
  #top .top-menu-btn {
    position: relative;
    width: 22px;
    top: 0;
    right: 0;
    margin-left: 10px;
    margin-top: 0;
  }
  #top .top-menu-btn div {
    background: #fff;
    height: 2px;
  }
  #top .top-menu-btn div:nth-child(1) {
    margin-top: -6px;
  }
  #top .top-menu-btn div:nth-child(3) {
    margin-top: 6px;
  }

  .scrolled #top .top-wrap .right .langs .item .postech_logo {
    animation: unset;
  }

  body.menu-on #top {
    background: transparent;
  }
  body.menu-on #top .top-wrap .logo {
    background-image: url("../image/main_logo_w.png");
  }
  body.scrolled #top .top-wrap .right .langs .item a.on,
  .is-subpage #top .top-wrap .right .langs .item a.on {
    color: #fff;
  }
  body.scrolled #top .top-menu-btn div,
  .is-subpage #top .top-menu-btn div {
    background-color: #fff;
  }
  body.menu-on #top .top-menu-btn div {
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  #top .top-wrap .left {
    width: 110px;
    height: 35px;
  }
  #top .top-wrap .right .langs .item .nis_logo {
    margin: 0 5px 0 var(--spacing-3);
  }
}

/********************************************************
■ Menu : 데스크톱 메뉴
********************************************************/
#menu {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 200ms;
  height: 100%;
  flex: 1;
}
#menu .nav {
  display: none;
}

#menu .swiper {
  position: static;
  margin: 0;
  overflow: visible;
  flex: 1;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: var(--color-silver0);
}

.is-subpage #menu .swiper,
body.menu-on #top #menu .swiper {
  color: var(--color-silver90);
}
#menu .swiper .swiper-wrapper {
  position: static;
  justify-content: center;
  transform: none;
}
#menu .swiper .li {
  position: static;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 1 0 auto;
  width: auto;
  max-width: 180px;
  transform: none;
}
#menu .swiper .li:hover {
  z-index: 9;
}
#menu .swiper .li .a {
  position: relative;
  font-size: 1.35rem;
  font-weight: 600;
  z-index: 2;
  color: inherit;
  padding: 10px;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
body.scrolled #menu .swiper .li .a,
body.menu-on #menu .swiper .li .a {
  color: #333;
}
.is-subpage #menu .swiper .li .a {
  color: #fff;
}

#menu .swiper .li .a:before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  height: 5px;
  border-radius: 10px;
  display: none;
  background: var(--color-primary70);
}
#menu .swiper .li:hover .a:before {
  display: block;
}

#menu .sub-depth-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100dvw;
  opacity: 0;
  visibility: hidden;
  height: 0;
  max-height: 0;
  padding: 0px 150px;
  z-index: 1;
  transition-duration: 0ms;
  border-top: 1px solid var(--color-silver5);
  color: var(--color-silver90);
}
#menu .sub-depth-wrap .sub-depth-wrap-left {
  flex: 0.5;
  padding: 0 var(--spacing-9);
  border-right: 1px solid var(--color-silver20);
  font-size: var(--heading-sm);
  font-weight: var(--font-bold);
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
#menu .sub-depth-wrap .sub-depth-wrap-icon {
  text-align: right;
  padding: var(--spacing-4);
  max-height: 5rem;
}
#menu .sub-depth-wrap .sub-depth-wrap-icon img {
  width: 35%;
  opacity: 0.8;
  max-width: 90px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform: translateY(0);
}
#menu .swiper .li:last-child .sub-depth-wrap .sub-depth-wrap-icon img {
  width: 29%;
}

#menu li:hover > .sub-depth-wrap .sub-depth-wrap-icon img {
  transform: translateY(-50px);
}

#menu li:hover > .sub-depth-wrap {
  opacity: 1;
  visibility: visible;
  height: auto;
  min-height: 100px;
  padding: 20px 150px;
  z-index: 9;
  transition-duration: 400ms;
  background: rgba(255, 255, 255, 0);
  /* box-shadow: 0 7px 6px rgba(0, 0, 0, 0.06); */
  max-height: unset;
  color: #fff;
}
#menu li:hover > .sub-depth-wrap .sub-a,
#menu li:hover > .sub-depth-wrap .depth2 > li > .sub-a,
#menu li:hover > .sub-depth-wrap .depth2 > li:hover > .sub-a,
#menu li:hover > .sub-depth-wrap .depth3 .sub-a,
#menu li:hover > .sub-depth-wrap .depth3 li:hover .sub-a {
  color: #fff;
}
body.menu-on #menu li:hover > .sub-depth-wrap {
  min-height: 20px;
  padding: 20px 150px;
}
#menu .sub-wrap {
}
#menu .sub-wrap .sub-a {
  display: block;
  word-break: keep-all;
  font-weight: 400;
  line-height: 1.3;
}

#menu .depth2 {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  padding: 0 var(--spacing-9);
  max-width: 1100px;
}
#menu .depth2 > li {
  position: relative;
  padding: var(--spacing-7);
  width: 20%;
}
#menu .depth2 > li > .sub-a {
  color: inherit;
  font-size: var(--label-lg);
  width: 100%;
  font-weight: normal;
}
#menu .depth2 > li > .sub-a span {
  display: inline-block;
  position: relative;
}
#menu .depth2 > li > .sub-a i {
  padding: 0.5rem 0rem;
  display: inline-block;
  font-size: var(--icon-xxs);
  margin-left: auto;
}
#menu li:hover > .depth2 {
  padding: 20px;
  max-height: 500px;
  width: 100%;
  max-width: 240px;
}
#menu .depth2 > li:hover > .sub-a,
#menu .depth2 > li.on > .sub-a {
  color: var(--color-silver50);
}
#menu .depth2 > li:hover > .sub-a span:before,
#menu .depth2 > li.on > .sub-a span:before {
  width: 100%;
}

#menu .depth3 {
}
#menu .depth3 .sub-a {
  position: relative;
  color: #aaa;
  padding: 5px 5px 5px 8px;
  word-break: keep-all;
  white-space: unset;
}
#menu .depth3 .sub-a::before {
  content: "";
  clear: both;
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  background: var(--color-silver20);
}
#menu .depth3 li:hover .sub-a,
#menu .depth3 li.on .sub-a {
  color: var(--color-primary70);
  margin-left: 5px;
}
#menu .depth3 li:hover .sub-a::before,
#menu .depth3 li.on .sub-a::before {
  background: var(--color-primary60);
}
#menu li:hover > .depth3 {
}

@media (max-width: 1400px) {
  #menu .swiper {
    padding-left: 5%;
  }
  #menu .sub-depth-wrap .sub-depth-wrap-left {
    font-size: var(--title-xxl);
  }
  #menu .depth2 > li {
    width: 33.33%;
  }
  body.menu-on #menu .swiper .li .a {
    color: #333;
  }
}

@media (max-width: 1024px) {
  #menu {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
  }
  #menu .swiper {
    position: relative;
  }
  #menu .swiper .swiper-wrapper {
    position: relative;
    justify-content: flex-start;
  }
  #menu .swiper .li {
    position: relative;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    max-width: unset;
  }

  #menu .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
  }
  #menu .swiper {
    padding-left: 0;
    overflow: hidden;
  }
  body.menu-on #top #menu .swiper {
    color: var(--color-silver0);
  }

  #menu .swiper .li .a {
    font-size: 1rem;
  }
  body.scrolled #menu .swiper .li .a,
  .is-subpage #menu .swiper .li .a {
    color: #fff;
  }

  #menu .depth2,
  #menu .sub-depth-wrap {
    display: none;
  }
}

@media (max-width: 767px) {
  #menu .swiper .li {
    margin: 0 5px;
  }
  body.menu-on #menu .swiper .li .a {
    color: #fff;
  }
}

@media (max-width: 767px) {
}
