﻿.unit_tab_box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ebeaec;
    margin-top: 2.65vw;
}
.unit_tab_box .unit_tab_item{
    font-size: 1.041vw;
    line-height: 1.2;
    color: #242629;
    text-align: center;
    padding: 0.7vw 2.343vw;
    position: relative;
    cursor: pointer;
}
.unit_tab_box .unit_tab_item.active::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2.291vw;
    height: 0.208vw;
    border-radius: 0.104vw;
    font-weight: bold;
    background: linear-gradient(to right, #52d680, #47cbb7);
}
@media screen and (max-width: 905px) {
    .unit_tab_box {
        justify-content: flex-start;
        margin-top: 6.4vw;
        padding: 0 4.266vw;
        gap: 3.2vw;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        display: none;
    }

    .unit_tab_box::-webkit-scrollbar {
        display: none;
    }

    .unit_tab_box .unit_tab_item {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 3.466vw;
        line-height: 1.4;
        padding: 2.933vw 0.8vw;
        cursor: pointer;
    }

    .unit_tab_box .unit_tab_item.active::after {
        width: 8vw;
        height: 0.8vw;
        border-radius: 0.4vw;
    }
}


