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

.smenu_wrap ul {
    width: 100vw;
    height: 8vw;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    /* border-bottom: 1px solid #aaa;*/
    box-sizing: border-box;
     box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.smenu_wrap.amazing_menu ul {
    height: 8vw;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);

}

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

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-right: 1px solid #ddd;
    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.7vw;
    font-weight: 300;
    line-height: 8vw;
    color: #222;
    text-align: center;
    width: 100%;
    height: 100%;
}

.smenu_wrap ul li a.smtab_on {
    background: #272e53;;
    color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}