/*서브탭메뉴*/
.smenu_wrap {
  display: none;
  width: 100%;
  height: auto;
   background: #8c0052;
}
.smenu_wrap ul {
  width: 100vw;
  height: 8vw;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}
.smenu_wrap.amazing_menu ul {
  height: 8vw;
 
}
.smenu_wrap ul li {
  flex: 1;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
      box-sizing: border-box; 
    font-weight: 900;
}
.smenu_wrap ul li:last-child {
  border-right: 0;
}
.smenu_wrap ul li a {
  display: block;
  font-size: 2.8vw;
  font-weight: 300;
  line-height: 8vw;
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
}

.smenu_wrap ul li a.smtab_on {
  background: #fff;
  border-bottom: 1px solid #ccc;
/*  box-sizing: border-box; */
  color: #8c0052;
    font-weight: 500;
}
