/*서브탭메뉴*/
.smenu_wrap {
  display: none;
  width: 100%;
  height: auto;
}
.smenu_wrap ul {
  width: 100%;
  height: 60px;
  margin: 0 auto;

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

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  border-right: 1px solid rgb(192, 192, 192);
  /* border-bottom: 1px solid rgb(192, 192, 192); */
}
.smenu_wrap ul li:last-child {
  border-right: 0;
}
.smenu_wrap ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;

  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #8c0052;
  color: #ffffff;

  /* opacity: 0.8; */
}

.smenu_wrap ul li a.smtab_on {
  opacity: 1;
  font-weight: 700;
  background: #ffffff;
  color: #1a1a1a;
  border-bottom: 1px solid #cacaca;
}
