@charset "utf-8";

/* 내용관리 */
#ctt {}
.ctt_admin {text-align:right}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}



.apply_chk_wrap{
    max-width:1000px;
    margin:0 auto 60px;
}

.apply_chk_intro{
    margin-bottom:25px;
    padding:28px 32px;
    border-radius:14px;
    background:#f7f9fc;
    border:1px solid #dfe6f1;
}

.apply_chk_intro h3{
    margin:0 0 10px;
    font-size:26px;
    color:#145699;
}

.apply_chk_intro p{
    margin:0;
    font-size:16px;
    color:#444;
    line-height:1.7;
}

.apply_chk_form{
    padding:28px 32px;
    border:1px solid #ddd;
    border-radius:14px;
    background:#fff;
}

.apply_chk_form ul{
    display:flex;
    gap:20px;
    margin:0;
    padding:0;
    list-style:none;
}

.apply_chk_form li{
    flex:1;
}

.apply_chk_form label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#222;
}

.apply_chk_form input{
    width:100%;
    height:48px;
    padding:0 14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
}

.apply_chk_form button{
    width:100%;
    height:52px;
    margin-top:22px;
    border:0;
    border-radius:8px;
    background:#145699;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}

.apply_chk_result{
    margin-top:40px;
}

.apply_chk_result h4{
    margin:0 0 12px;
    font-size:22px;
    color:#222;
}

.result_count{
    margin-bottom:18px;
    color:#555;
}

.apply_result_item{
    margin-bottom:24px;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.result_head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    background:#145699;
    color:#fff;
}

.result_head strong{
    font-size:18px;
}

.result_head span{
    font-size:14px;
}

.apply_result_item table{
    width:100%;
    border-collapse:collapse;
}

.apply_result_item th,
.apply_result_item td{
    padding:14px 16px;
    border-bottom:1px solid #eee;
    text-align:left;
    font-size:15px;
}

.apply_result_item th{
    width:160px;
    background:#f8fafc;
    color:#222;
    font-weight:700;
}

.apply_result_item td{
    color:#444;
}

.result_btns{
    padding:16px 20px;
    text-align:right;
}

.result_btns a{
    display:inline-block;
    padding:9px 18px;
    border-radius:6px;
    background:#333;
    color:#fff;
    text-decoration:none;
}

.no_result{
    padding:36px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fafafa;
    color:#777;
    text-align:center;
    line-height:1.7;
}

@media(max-width:768px){
    .apply_chk_form ul{
        display:block;
    }

    .apply_chk_form li + li{
        margin-top:16px;
    }

    .apply_chk_intro,
    .apply_chk_form{
        padding:22px 18px;
    }

    .apply_result_item th,
    .apply_result_item td{
        display:block;
        width:100%;
        box-sizing:border-box;
    }

    .apply_result_item th{
        border-bottom:0;
        padding-bottom:5px;
    }

    .apply_result_item td{
        padding-top:5px;
    }

    .result_head{
        display:block;
    }

    .result_head span{
        display:block;
        margin-top:6px;
    }
}