/* 탭 메뉴 */
    .sc_tabmenu {
        padding-bottom: 0;
    }
    .sc_tabmenu .menu_list{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sc_tabmenu .menu_list .menu_item{
        flex: 1;
    }
    .sc_tabmenu .menu_list .menu_item a{
        text-align: center;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        border-top: 1px solid #ddd;
        border-right: 1px solid #ddd;
        color: #888;
    }
    .sc_tabmenu .menu_list .menu_item:first-child a{
        border-left: 1px solid #ddd;
    }

    .sc_tabmenu .menu_list .menu_item a.active{
        position: relative;
        border-bottom: 1px solid #fff;
        border-top: 1px solid #fff;
        color: #000;
    }
    .sc_tabmenu .menu_list .menu_item a.active::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--brandColor);
    }

    /* 게시글 */
    .filter_form{
        margin-bottom: 30px;
    }

    .sc_1 .filter_area, .sc_2 .filter_area{
        width: fit-content;
        margin-left: auto;
    }


    /* 초보자 가이드 ============================================== */
    .sc_3{
        position: relative;
        background: var(--brandColor3);
    }
    .sc_3 .inner{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 50px;
    }
    .col_left .step2, .col_left .step3, .col_left .step4, .col_left .step5 {
        display: none;
    }
    
    .sc_3 .col_left{
        width: 70%;
    }
    .sc_3 .group_guide {
        padding: 45px 0;
        border-bottom: 1px solid #bbb;
    }
    .sc_3 .group_guide:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
    .sc_3 .group_guide h3{
        padding-bottom: 30px;
        font-size: 28px;
        font-weight: 400;
    }
    .sc_3 .group_guide h3 strong{
        font-size: 34px;
        font-weight: 700;
        color: var(--brandColor);
    }
    .sc_3 .swiper .img_wrap{
        border: 1px solid #eee;
    }
    .sc_3 .desc_item {
        padding: 30px 25px;
        background: #fff;
        border: 1px solid #eee;
        border-top: 0;
    }
    .sc_3 .desc_item p:not(:last-child){
        line-height: 1.6;
    }
    .sc_3 .desc_item p.reference{
        padding-top: 10px;
        font-weight: 600;
        line-height: 1.6;
    }
    .sc_3 .desc_item p.asterisk{
        font-size: 15px;
        line-height: 1.6;
        color: #d35424;
    }


    .sc_3 .col_right{
        position: sticky;
        top: 120px;
    }
    .sc_3 .col_right ul{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 50px;
    }
    .sc_3 .col_right ul li{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 150px;
        padding: 30px 20px;
        text-align: center;
        color: #666;
        background: #fff;
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 20px 0px;
        cursor: pointer;
    }
    .sc_3 .col_right ul li:hover{
        background: #f4f6f8;
    }
    .sc_3 .col_right ul li strong{
        font-size: 17px;
        font-weight: 700;
    }
    .sc_3 .col_right ul li span{
        font-size: 16px;
        line-height: 1.4;
    }
    .sc_3 .col_right ul li.active {
        background: var(--brandColor);
        color: #fff;
    }

    :root {
        --swiper-navigation-size: 20px;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
        text-align: center;
        color: var(--brandColor2);
        background: #fff;
        border-radius: 50%;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px;
    }
    .swiper-button-next:after{
        padding-left: 5px;
    }
    .swiper-button-prev:after{
        padding-right: 5px;
    }



    /* 광고 용어 */
    .sc_3 table{
        margin-top: 30px;
        border: 1px solid #eee;
    }
    .sc_3 table tr td{
        padding: 14px 10px;
        font-size: 15px;
        line-height: 1.6;
    }
    .sc_3 table tr td:nth-child(1){
        width: 160px;
        font-weight: 500;
        text-align: center;
        color: #fff;
        background: var(--brandColor2);
    }
    .sc_3 table tr td:nth-child(2){
        background: #fff;
    }
    .sc_3 .group_guide:nth-child(5) h3{
        position: relative;
        padding-bottom: 0;
        padding-left: 15px;
        margin-bottom: 10px;
    }
    .sc_3 .group_guide:nth-child(5) h3::before{
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 100%;
        background: var(--brandColor);
    }


/* 959 ~ 768 */
@media (max-width: 959px) {
    .sc_tabmenu .menu_list .menu_item a{
        padding: 13px 0;
        font-size: 15px;
    }
}
/* 767 ~ 587 */
@media (max-width: 586px) {
    .sc_tabmenu .menu_list .menu_item a {
        font-size: 14px;
    }
}
/* 430 ~ 360 */
@media (max-width: 430px) {
    .sc_tabmenu .menu_list .menu_item a {
        font-size: 12px;
    }
}