.offer_list li{
    position: relative;
}
.offer_list .list_top {
    display: flex;
    height: 50px;
    align-items: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    background: #f8f8f8;
    position: relative;
    margin-bottom: 10px;
}
.offer_list .list_top p {
    text-align: center;
    font-weight: 500;
    color: #666;
    box-sizing: border-box;
    position: relative;
}
.offer_list .list_top p::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
}
.offer_list .list_top p:last-of-type:after {
    display: none;
}
.offer_list .list_top .info {
    width: 20%;
}
.offer_list .list_top .tit {
    width: 60%;
}
.offer_list .list_top .hunting_info {
    width: 20%;
}
.offer_list .list {
    margin-bottom: 7px;
}
.offer_list .list a {
    display: flex;
    padding: 20px 0;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #ddd;
}
.offer_list .list a div {
    position: relative;
    box-sizing: border-box;
}
.offer_list .list a div::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -30px;
}
.offer_list .list a div:last-of-type:after {
    display: none;
}
.offer_list .list a .applicant {
    width: 20%;
    font-size: 1.25em;
    font-weight: 500;
    text-align: center;
}
.offer_list .list a .resume {
    width: 60%;
    padding-left: 40px;
}
.offer_list .list a .resume dt {
    display: flex;
    margin-bottom: 10px;
}
.offer_list .list a .resume dt p {
    font-size: 1.25em;
    font-weight: 500;
    margin-right: 20px;
}
.offer_list .list a .resume dt .state {
    display: block;
    width: 63px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 11px;
    color: #fff;
    margin-right: 5px;
    font-size: .713em;
    font-weight: 500;
}
.offer_list .list a .resume dt .loca {
    background: #ff8400;
}
.offer_list .list a .resume dt .qualification {
    background: #30d553;
}
.offer_list .list a .resume dt .car {
    background: #24b4ff;
}
.offer_list .list a .resume dd span{
    display: inline-block;
    margin-right: 20px;
    font-size: .875em;
    font-weight: 300;
    color: #666;
    position: relative;
}
.offer_list .list a .resume dd span::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background: #ddd;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -5px;
}
.offer_list .list a .resume dd span:last-of-type::after {
    display: none;
}
.offer_list .list a .resume dd .job {
    color: #503bff;
    font-weight: 500;
}
.offer_list .list a .applicant_info {
    width: 20%;
    padding: 0 30px 0 20px;
}
.offer_list .list a .applicant_info dl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.offer_list .list a .applicant_info dl:last-of-type {
    margin-bottom: 0;
}
.offer_list .list a .applicant_info dt {
    font-size: .713em;
    font-weight: 700;
    color: #5b696f;
}
.offer_list .list a .applicant_info dd {
    text-align: right;
    font-size: .713em;
    color: #5b696f;
}
/***********************************
페이징
*************************************/
.paging {
    width: 455px;
    margin: 0 auto;
    display: flex;
    margin-top: 60px;
}
.paging li {
    width: 30px;
    margin-right: 4px;
}
.paging li a {
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #2e3347;
    font-family: 'Lato', sans-serif;
    background: #eef3fd;
    border-radius: 4px;
}
.paging li a.on {
    color: #fff;
    background: #2e3347;
}
.paging li a.page {
    background: none;
    overflow: hidden;
    text-indent: -999999999999999999%;
}
.paging li a.pp_page {
    background: url(../img/pp_page.png) no-repeat center;
}
.paging li a.p_page {
    background: url(../img/p_page.png) no-repeat center;
}
.paging li a.n_page {
    background: url(../img/n_page.png) no-repeat center;
}
.paging li a.nn_page {
    background: url(../img/nn_page.png) no-repeat center;
}