/*서브탭메뉴*/
.smenu_wrap {
  display: none;
  width: 100%;
  height: auto;

  border-bottom: 2px solid #808080;
}
.smenu_wrap ul {
  width: 1200px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.smenu_wrap ul li {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}
.smenu_wrap ul li:last-child {
  border: none;
}
.smenu_wrap ul li::after {
  content: "";
  width: 1px;
  height: 30%;
  background: #808080;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.smenu_wrap ul li:last-child::after {
  display: none;
}
.smenu_wrap ul li a {
  font-size: 16px;

  text-align: center;
  color: rgb(24, 24, 24);
  opacity: 0.8;
  font-weight: 700;
  display: block;
}
.smenu_wrap ul li a:hover {
  color: #c3292f;
}
.smenu_wrap ul li a.smtab_on {
  opacity: 1;
  font-weight: 700;
  color: #c3292f;
}
.smenu_wrap ul li.smtab_on a {
}
