@charset "utf-8";

@charset "utf-8";

/* tab menu */
.tab_menu {
    overflow: hidden;
    width: 100%;
}

.tab_menu .tab {
    display: block;
}

.tab_menu .tab li{
    float: left; 
    width: calc(100% / 5); 
    height: 70px;
    line-height: 69px;
    text-align: center; 
    border: 1px solid #fff;
    border-right: 1px solid #fff;
    /* border-right: 0; */
    background: rgba(0,71,157,.1);
    box-sizing: border-box;
    transition: all ease .2s;
}

/* .tab_menu .tab li:last-child {
    border-right: 1px solid #ccc;
} */

.tab_menu .tab li a {
    font-size: 18px; 
    font-weight: 500;
    display: block;
}

.tab_menu .tab li:hover,
.tab_menu .tab li:focus {
    border: 1px solid rgba(0,71,157,1);
    background: #FFF;
}

.tab_menu .tab li:hover a,
.tab_menu .tab li:focus a {
    color: rgba(0,71,157,1);
}

.tab_form {
    position: relative; 
    display: block; 
    width: 100%;
}



/* 실적내역 table */
.project_table {
    width: 100%;
    text-align: center;
    border-top: 3px solid #444;
    box-sizing: border-box;
    margin-top: 60px;
    table-layout: fixed;
}

.project_table th {
    height: 50px;
    border-right: 1px solid #ccc;
    background: #f1f1f1;
    font-weight: 400;
    font-size: 17px;
}

.project_table .first_th th:last-child {
    border-right: 0;
}

.project_table .sum {
    border-bottom: 1px solid #ccc;
}

.construction {
    border-bottom: 1px solid #ccc;
}

.project_table .first_th th:first-child {
    width: 45%;
}

.project_table .first_th th:nth-child(2) {
    width: 30%;
}

.project_table .first_th th:last-child {
    width: 25%;
}

.project_table tr td {
    height: 50px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.project_table tr td:last-child {
    border-right: 0;
}




@media (max-width: 1280px) {

    .tab_menu .tab li {
        height: 60px;
        line-height: 59px;
    }

    .tab_menu .tab li a {
        font-size: 16px;
    }

    .project_table th {
        height: 45px;
        font-size: 16px;
    }

    .project_table tr td {
        height: 43px;
    }

}


@media (max-width: 937px) {

    .tab_menu .tab li {
        height: 50px;
        line-height: 49px;
    }

    .project_table th {
        height: 43px;
    }

    .project_table tr td {
        height: 42px;
    }



}


@media (max-width: 737px) {

    .tab_menu .tab li a {
        font-size: 13px;
    }

}



@media (max-width: 426px) {

    .tab_menu .tab li {
        height: auto;
    }

    .tab_menu .tab li a {
        height: 55px;
        line-height: 1.5;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .project_table {
        margin-top: 30px;
    }

    
    .project_table tr th {
        height: 35px;
        font-size: 13px;
    }

    .project_table tr td {
        height: auto;
        padding: 2px;
        box-sizing: border-box;
        font-size: 13px;

        overflow: hidden;
        text-overflow: ellipsis;
        /* white-space: nowrap; */
    }


}