.board-section .board-wrap{
    width: 1200px;
    margin: 0 auto;
}

.board-section .board-wrap .board-cont{
    width: 720px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 200px;
}

.board-section .board-wrap .board-cont .title{
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 40px;
}

.board-table{
    border: 0;
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #D1D6DB;
}

.board-table.pc, .board-table .pc{
    display: block;
}

.board-table.m, .board-table .m{
    display: none;
}

.board-table td{
    font-size: 2.4rem;
    line-height: 1.5em;
    border-bottom: 1px solid #D1D6DB;
    padding: 20px 0;
    word-break: keep-all;
    word-wrap: break-word;
}

.board-table td.subject{
    width: 610px;
}

.board-btn-cont{
    text-align: center;
    margin-top: 50px;
}

.paging{
    margin-top: 50px;
}

.paging ul{
    display: flex;
    justify-content: center;
}

.paging ul li{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.paging ul li:last-child{
    margin-right: 0;
}

.paging ul li a{
    color: #D1D6DB;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paging ul li a.active{
    color: #ffffff;
    background-color: #f95700;
}

.paging ul li a i{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/******************************************/

@media screen and (max-width: 1200px) {
    .board-section .board-wrap{
        max-width: 430px;
        width: 100%;
    }

    .board-section .board-wrap .board-cont{
        max-width: 360px;
        margin: 0 auto;
        margin-top: 60px;
        margin-bottom: 60px;
        box-sizing: border-box;
        padding: 0 8%;
        width: 100%;
    }

    .board-table.pc, .board-table .pc{
        display: none;
    }

    .board-table.m, .board-table .m{
        display: block;
        max-width: 340px;
    }

    .board-table .board-item{
        padding-top: 20px;
        font-size: 2rem;
        border-bottom: 1px solid #D1D6DB;
    }

    .board-table .board-item span{
        display: block;
        padding-bottom: 20px;
    }

    .board-table .board-item .contents{
        border-top: 1px solid #ddd;
        line-height: 1.4;
        font-size: 1.9rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .board-table .board-item a{
        display: block;
        line-height: 1.3;
        word-break: break-all;
    }

    .board-table .subject{
        font-size: 2.4rem;
        display: block;
        margin-bottom: 10px;
    }

    .board-table span a{
        font-size: 2rem;
    }

    .paging{
        max-width: 340px;
    }

    .board-btn-cont{
        max-width: 340px;
    }
}