@charset "utf-8";

#shGnb {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 90px;
  padding: 0 5.5%;
}
#shGnb.blur {
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}
#shGnb.blur.on {
  backdrop-filter: blur(0);
  background-color: transparent;
}
#shGnb.sub {
  background: #fff;
}
#shGnb.main {
  background: #fff;
}
#shGnb.main.main_bottom_bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sh_lnb_bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-color: #fff;
}

/* 로고 */
#shGnb .sh_logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  z-index: 20;
}

.sh_logo .sh_logo_img {
  width: 100px;
}

/* 대분류  */
#shGnb .sh_nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
#shGnb .sh_nav > li {
  float: left;
  position: relative;
  padding: 0 25px;
  line-height: 70px;
}
#shGnb .sh_nav > li > a {
  display: block;
  font-size: 17px;
  color: #fff;
  transition: all 0.2s;
}
#shGnb.on .sh_nav > li > a {
  color: #222;
}
#shGnb.sub .sh_nav > li > a {
  color: #222;
}
#shGnb.main .sh_nav > li > a {
  color: #222;
}

/* 소분류 */
#shGnb .sh_lnb_s {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  width: max-content;
  min-height: 180px;
  padding-top: 30px;
  padding-bottom: 20px;
}
#shGnb .sh_lnb_s li a {
  display: block;
  line-height: 1.8;
  text-align: center;
  color: #999;
  transition: all 0.2s;
  font-family: 'LotteMartDreamLight';
}
#shGnb .sh_lnb_s li a:hover {
  color: var(--main-blue);
}

/* sns */
#shGnb .sh_tip {
  margin-left: auto;
}
#shGnb .sh_tip {
  display: flex;
}
#shGnb .sh_tip li + li {
  margin-left: 20px;
}
#shGnb .sh_tip li a {
  font-size: 15px;
  color: #fff;
}
#shGnb.on .sh_tip li a {
  color: #222;
}
#shGnb.sub .sh_tip li a {
  color: #222;
}
#shGnb.main .sh_tip li a {
  color: #222;
}

/* 반응형 메뉴 [s] */
#topmenuM {
  display: none;
  position: relative;
  width: 100%;
  padding: 15px;
  line-height: 1.8;
  background-color: #fff;
  font-family: 'Noto Sans KR';
}
/* 로고 */
#m_logo {
  position: relative;
}
#m_logo a {
  display: inline-block;
}
#m_logo .m_logo_img {
  width: 60px;
}
#m_logo .m_logo_img_2 {
  margin-left: 10px;
  width: 70px;
}
#m_lan {
  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-family: 'Noto Sans KR';
  font-weight: 500;
}
/* 상단 버튼 및 오픈메뉴 */
#m_navBtn {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 5;
  width: 30px;
  height: 30px;
}
#m_navBtn span {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
}
#m_navBtn span:before,
#m_navBtn span:after {
  display: block;
  content: '';
  position: absolute;
  top: -6px;
  width: 30px;
  height: 2px;
  background-color: #222;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
#m_navBtn span:after {
  top: 6px;
  width: 30px;
  right: 0;
  background-color: var(--primary);
}
#m_navBtn.on {
  position: fixed;
}
#m_navBtn.on span:before {
  top: 0;
  right: -4px;
  transform: rotate(45deg);
}
#m_navBtn.on span:after {
  top: 0;
  right: -4px;
  width: 30px;
  transform: rotate(-45deg);
  background-color: #222;
}
#navWrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  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: 6;
  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-family: 'Noto Sans KR';
  font-weight: 500;
}
#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;
}

@media (max-width: 1024px) {
  #shGnb {
    display: none;
  }
  #topmenuM {
    display: block;
  }
}
/* 반응형 메뉴 [e] */
