@charset "UTF-8";
@media print, screen and (min-width: 769px) {
    .list-list li {
        width: calc(100% / 4);
    }
}
@media screen and (max-width: 768px) {
    .list-list li {
        width: calc(100% / 2);
    }
    .list-list li:last-child, .list-list li:nth-child(3n) {
        border-right: 1px solid #ffffff;
    }
    .list-list li:last-child, .list-list li:nth-child(2n) {
        border-right: none;
    }
}