@charset "utf-8";

/*=================== visual 시작 ===================*/
.visual{
    background-image: url("/public/assets/renewal/images/bg_region.png");
}


/*=================== //visual 끝 ===================*/

/*=================== section style 시작 ===================*/
.section{
    padding: 76px 0 96px 0;
}

.section .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}

.sec_tx_wrap{
    width: 100%;
    text-align: center;
    align-items: center;
}

.tab_wrap{
    display: flex;
    width: 100%;
    padding: 6px;
    margin-top: 20px;
    border-radius: 20px;
    background-color: #F8F8F8;
}

.tab{
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 50%;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    padding: 15px 0;
    border-radius: 20px;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.4s;
}

.tab.on{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px 0;
}

.tab1.on{
    color: var(--semantic-text-primary);
}

.tab2.on{
    color: #00B7A8;
}
.tab svg path{
    fill: var(--color-gray-500);
}

.tab1.on svg path{
    fill: var(--semantic-text-primary);
}

.tab2.on svg path{
    fill: #00B7A8;
}

.sec_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.content_area{
    width: 100%;
    display: flex;
    justify-content: center;
}

.content_wrap{
    display: none;
    width: 100%;
}

.content_wrap.on{
    display: block;
}

.search_box {
    width: 100%;
    background: #F4F8FF;
    border-radius: 20px;
    margin-bottom: 57px;
    padding: 30px;
    position: relative;
}

#tab2 .search_box {
    background: #F1FAF9;
}

.search_title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 18px;
    text-align: center;
}

.search_input {
    position: relative;
    max-width: 508px;
    width: 100%;
    margin: 0 auto;
}

.search_text {
    width: 100%;
    padding: 16px 48px 12px 15px;
    border-radius: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.45);
    border: 1px solid #e1e1e8;
}

.search_btn {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 28px;
    height: 28px;
    background: #fff;
}

#tab2 .search_btn svg path {
    fill: #00B7A8;
}

.search_result {
    max-width: 508px;
    width: 100%;
    border-radius: 12px;
    padding: 4px 4px 8px 4px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 136px;
    border: 1px solid #e1e1e8;
}

.search_result_true {
    padding: 19px 9px;
    border-radius: 8px;
    background: #F1F6FF;
    text-align: center;
}

.search_result_true p {
    color: #2177F4;
}

#tab2 .search_result_true {
    background: #ECF9F8;
}

#tab2 .search_result_true p {
    color: #009A8D;
}

.search_result_false {
    padding: 19px 9px;
    text-align: center;
}

.search_result_false p {
    color: #FD3D51;
    margin-bottom: 4px;
}

.search_result_false span {
    font-size: 14px;
}

.search_result_none {
    padding: 19px 9px;
    text-align: center;
}

.search_result_list {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.search_result_list li {
    padding: 10px 11px;
}

.img_wrap {
    width: 340px;
    margin: 0 auto 36px;
}

.content_wrap img{
    width: 100%;
    height: auto;
}

.table_wrap{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.table_wrap{
    border: 1px solid var(--semantic-border-border);
    border-radius: 20px;
    overflow: hidden;
}

.table_subtx{
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: var(--semantic-text-subtler);
    padding-bottom: 12px;
}

.table th, .table td{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid var(--semantic-border-border);
    border-right: 1px solid var(--semantic-border-border);
    padding: 8px 12px;
}

.table th{
    padding: 10px 12px;
    border-bottom: none;
}

.table th:last-child, .table td:last-child{
    border-right: 0;
}

.table td.last-row{
    border-bottom: 0;
}

.table .dot {
    display: inline-block;
    width: 17px;
    height: 17px;
    transform: translateY(2px);
    border-radius: 50%;
}

.table .dot.grider {
     background-color: var(--semantic-text-primary);
}

.table .dot.grider_plus {
     background-color: #00B7A8;
}

.banner{
    display: flex;
    gap: 7px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 119px;
    border-radius: 20px;
    background-color: #F7F7F7;
    background-position: right center;
    background-size: cover;
    background-image: url("/public/assets/renewal/images/region_banner.png");
    padding: 30px 40px;
}

.banner_tit{
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--semantic-text-primary);
}

.banner_txt{
    font-size: 16px;
    line-height: 24px;
    color: var(--semantic-text-subtle);
}

/*=================== //section style 끝 ===================*/


/*=================== media query 시작 ===================*/
/*======= tab size =======*/
@media screen and (max-width: 978px){
    .section{
        padding: 58px 0 78px 0;
    }
    .section .inner {
        gap: 24px;
    }
    .tab_wrap{
        border-radius: 16px;
    }
    .tab{
        font-size: 16px;
        line-height: 24px;
        gap: 4px;
        border-radius: 12px;
        padding: 10px 0;
    }
    .tab1 svg{
        width: 17px;
        height: 16px;
    }
    .tab2 svg{
        width: 24px;
        height: 16px;
    }
    .content_wrap {
        height: auto;
    }
    .search_title {
        font-size: 24px;
        line-height: 32px;
    }
    .search_result {
        top: 132px;
    }
    .img_wrap {
        width: 70%;
        max-width: 340px;
        margin: 0 auto 36px;
    }
}
/*======= //tab size =======*/

/*======= mobile size =======*/
@media screen and (max-width: 600px){
    .visual{
        display: none;
        background-image: url("/public/assets/renewal/images/bg_region_mo.png");
    }

    .section{
        padding: 50px 0;
    }

    .section .inner {
        gap: 20px;
    }

    .sec_content{
        gap: 20px;
    }

    .tab_wrap{
        width: 100%;
    }

    .tab{
        font-size: 14px;
        line-height: 20px;
        gap: 4px;
    }
    .tab1 svg{
        width: 13px;
        height: 12px;
    }
    .tab2 svg{
        width: 18px;
        height: 12px;
    }

    .search_box {
        padding: 21px 13px;
        margin-bottom: 32px;
    }

    .search_title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .search_result {
        width: calc(100% - 26px);
        top: 109px;
    }

    .img_wrap {
        margin: 0 auto 10px;
    }

    .table_subtx{
        font-size: 12px;
        line-height: 18px;
    }

    .table th, .table td{
        font-size: 14px;
        line-height: 18px;
    }

    .table .dot{
        width: 14px;
        height: 14px;
    }

    .banner{
        gap: 4px;
        height: 90px;
        padding: 20px;
        background-position: right -30px center;
    }

    .banner_tit{
        font-size: 14px;
        line-height: 20px;
    }

    .banner_txt{
        font-size: 12px;
        line-height: 16px;
    }
}
/*======= //mobile size =======*/
/*=================== //media query 끝 ===================*/