@charset "utf-8";
#top_nav_wrap {
  position: absolute;
  width: 100%;
  padding: 0 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  z-index: 99;
}
#r_menu {
  display: flex;
}
#top_nav_wrap #top_logo a img {
  max-width: 150px;
}
/* 대분류  */
#top_nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#top_nav > li {
  position: relative;
}
#top_nav > li > a {
  display: block;
  padding: 0 40px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--e-font);
  line-height: 100px;
  color: #fff;
  transition: all 0.2s;
}

/* 소분류 */
#top_nav > li > ul {
  display: none;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  min-width: 150px;
  width: auto;
  padding: 15px 10px 15px;
  background-color: #000;
  text-align: center;
  border-radius: 5px;
}
#top_nav > li > ul > li {
  padding: 5px 0;
  font-family: var(--k-font);
}
#top_nav > li > ul > li a {
  font-size: 15px;
  color: #ddd;
  transition: all 0.2s;
}

/* 메뉴 */
.menu_pane {
  position: fixed;
  z-index: 99;
  width: calc(100vw - 228px);
}
.menu_pane:after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: 70%;
  height: 100vh;
  background: #fff;
  transition-delay: 0s;
  transition: transform cubic-bezier(0.77, 0.77, 0.175, 1)
    0.8s;
  transform: translateX(0) translateY(-100%);
}
.menu_pane:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100vh;
  z-index: -1;
  content: '';
  background: url(bg.jpg) #0c0c0c no-repeat center;
  background-size: cover;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(-100%) translateY(0%);
}
.menu_pane_content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  font-size: 70px;
}
.menu_pane_list {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  margin-top: 100px;
  padding: 0 25% 0 15%;
  font-family: var(--k-font);
}
.menu_pane_wrap.nav-active .menu_pane {
  visibility: visible;
}
.menu_pane_wrap.nav-active .menu_pane:after,
.menu_pane_wrap.nav-active .menu_pane:before {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  transition-delay: 0.1s;
}
.menuall {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-family: var(--e-font);
}

/* 메뉴 열림 */
.menu_pane_content > ul > li {
  opacity: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.menu_pane_content > ul > li + li {
  margin-top: 40px;
}
.menu_pane_content > ul > li > a {
  display: block;
  width: max-content;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  font-family: var(--e-font);
  color: #111;
}
.menu_pane_content > ul > li:nth-child(1) {
  animation-delay: 0.4s;
}
.menu_pane_content > ul > li:nth-child(2) {
  animation-delay: 0.5s;
}
.menu_pane_content > ul > li:nth-child(3) {
  animation-delay: 0.6s;
}
.menu_pane_content > ul > li:nth-child(4) {
  animation-delay: 0.7s;
}
.menu_pane_content > ul > li:nth-child(5) {
  animation-delay: 0.8s;
}
.menu_pane_content > ul > li ul {
  display: flex;
  flex-wrap: wrap;
}
.menu_pane_content > ul > li ul li {
  line-height: 15px;
}
.menu_pane_content > ul > li ul li + li {
  margin-left: 25px;
}
.menu_pane_content > ul > li ul a {
  opacity: 0.6;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  transition: all 0.2s;
}

/* 메뉴버튼 */
#pfBtn {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 5px;
  position: relative;
  top: 0;
  z-index: 101;
  cursor: pointer;
  transition: all 0.2s;
}
#pfBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}
#pfBtn.active {
  background: transparent;
}
#pfBtn.active span {
  border: none;
  background: transparent;
}
#pfBtn.active span:first-child {
  top: 7px;
  width: 80%;
  transform: rotate(-45deg);
  background: #111;
}
#pfBtn.active span:last-child {
  width: 80%;
  transform: rotate(45deg);
  background: #111;
}

/* 상단 버튼 및 오픈메뉴 */
#topmenuM {
  display: none;
  width: 100%;
  line-height: 1.8;
  padding: 15px;
}
#m_navBtn {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 30;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
#m_navBtn span {
  display: block;
  position: relative;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
#m_navBtn span::before {
  display: block;
  position: absolute;
  top: -6px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: '';
}
#m_navBtn span::after {
  display: block;
  position: absolute;
  top: 6px;
  right: 0%;
  width: 40%;
  height: 100%;
  background-color: #fff;
  content: '';
}
#m_navBtn.on {
  position: fixed;
  top: 27px;
}
#m_navBtn.on span:before {
  top: 0;
  right: -4px;
  transform: rotate(45deg);
  background-color: #000;
}
#m_navBtn.on span:after {
  top: 0;
  right: -4px;
  width: 100%;
  transform: rotate(-45deg);
  background-color: #222;
}
#navWrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
#navWrap .inner {
  overflow-y: scroll;
  opacity: 0;
  position: fixed;
  right: -40px;
  top: 0;
  z-index: 999;
  min-width: 300px;
  width: 75%;
  height: 100%;
  padding: 60px 0;
  background-color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
#navWrap.on .inner {
  opacity: 1;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#navWrap .inner:before,
#navWrap .inner:after {
  opacity: 0;
  display: block;
  position: fixed;
  top: 0;
  right: -40px;
  z-index: 1;
  content: '';
  min-width: 300px;
  width: 70%;
  height: 60px;
  background-color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
#navWrap .inner:after {
  top: auto;
  bottom: 0;
}
#navWrap.on .inner:before,
#navWrap.on .inner:after {
  opacity: 1;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#navWrap .inner .mo_hd_copy {
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 2;
  min-width: 300px;
  width: 70%;
  font-size: 12px;
  text-align: center;
  color: #888;
}
#navWrap .user_tip {
  padding: 10px 20px;
  background-color: #f5f5f5;
}
#navWrap .user_tip li {
  display: inline-block;
}
#navWrap .user_tip li + li {
  margin-left: 10px;
}
/* 대분류 */
#topmenuM .m_lnb .m_bmenu {
  display: block;
  position: relative;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: none;
  font-size: 16px;
  line-height: 52px;
  color: #222;
  text-align: left;
  font-weight: 500;
  font-family: 'Noto Sans KR';
}
#topmenuM .m_lnb .m_bmenu:after {
  float: right;
  content: '\f107';
  font-family: 'fontawesome';
}
#topmenuM .m_lnb .m_bmenu.on:after {
  content: '\f106';
}
/* 소분류 */
#topmenuM .m_smenu {
  display: none;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #f2f3f5;
}
#topmenuM .m_smenu li a {
  font-size: 14px;
  color: #777;
}

/* 반응형 [s] */
@media (hover: hover) {
  #top_nav > li > ul > li a:hover {
    color: #fff;
  }
  .menu_pane_content > ul > li ul a:hover {
    opacity: 1;
  }
}
@media (max-width: 1380px) {
  #top_nav_wrap {
    padding: 0 5%;
  }
  .menu_pane_list {
    padding: 0 15%;
  }
}
@media (max-width: 1024px) {
  #top_nav_wrap {
    display: none;
  }
  #topmenuM {
    display: block;
  }
  #navWrap {
    display: none;
  }
}
/* 반응형 [e] */
