.common_post_list {
    min-width: 700px;
}

.common_post_list .td.no {
    width: 70px;
}

.common_post_list .td.category {
    width: 200px;
}

.common_post_list .td.user {
    width: 130px;
}

.common_post_list .td.dttm {
    width: 140px;
}

.common_post_list .td.title {
    width: calc(100% - (70px + 200px + 130px + 140px));
}

.common_post_list .tbody .td.title {
    justify-content: flex-start;
}

@media screen and (max-width:1023px) {
    .common_post_list .td.category {
        width: 130px;
    }

    .common_post_list .td.title {
        width: calc(100% - (70px + 130px + 130px + 140px));
    }
}