/*서브탭메뉴*/
.smenu_wrap {
  display: none;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #cacaca;
}
.smenu_wrap ul {
  width: 70%;
  height: 60px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
  /* border-bottom: 1px solid #cacaca; */
}
.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); */
  /* border-bottom: 1px solid #cacaca; */
}
.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: #3a3a3a;
  font-weight: 700;

  /* opacity: 0.8; */
}

.smenu_wrap ul li a.smtab_on {
  opacity: 1;
  font-weight: 700;
  background: #ffffff;
  color: #313131;
  position: relative;
}
.smenu_wrap ul li a.smtab_on::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #274140;
  position: absolute;

  bottom: -4%;
  left: 50%;
  transform: translate(-50%, -50%);
}
