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

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

.smenu_wrap ul li {
  flex: 1;
  height: 100%;

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

  position: relative;
  border-bottom: 1px solid #c0c0c0;
}
.smenu_wrap ul li a {
  display: block;
  font-size: 3.33vw;
  font-weight: 300;
  line-height: 8.89vw;
  letter-spacing: 0;
  color: #555555;
  text-align: center;
  flex: 1;
  height: 100%;

  background: #fff;
  opacity: 0.8;
}

.smenu_wrap ul li a.smtab_on {
  opacity: 1;
  font-weight: 700;
  background: #274141;
  color: #fff;
}
