.tab_view_tabs_area {
    position: relative;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
}
.tab_view_tabs_area::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #e2e2e2;
}
.tab_view_tabs_area .tab_view_tabs {
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    margin: auto;
}
.tab_view_tabs_area .tab_view_tabs button {
    position: relative;
    flex: 0 auto;
    min-width: 180px;
    font-size: 1.4em;
    line-height: 50px;
}
.tab_view_tabs_area .tab_view_tabs button[focused] {
    font-weight: 600;
}
.tab_view_tabs_area .tab_view_tabs button[focused] span {
    position: relative;
    display: inline-block;
}
.tab_view_tabs_area .tab_view_tabs button[focused] span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #6e0094;
}

.tab_view_body_area .tab_view_detail_wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.tab_view_body_area .tab_view_detail_area {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
}
.tab_view_body_area .tab_view_detail_area[focused] {
    position:relative;
    left: 0;
    top: 0;
    opacity: 1;
}

@media (max-width: 798px) {
    .tab_view_tabs_area {
    }
    .tab_view_tabs_area .tab_view_tabs {
        width: 100%;
    }
    .tab_view_tabs_area .tab_view_tabs button {
        min-width: auto;
        flex: 1 1 100%;
        font-size: 1.2em;
        letter-spacing: 5px;
    }
}