@charset "UTF-8";

.c-img--l2 img {
    max-width: 700px;
    max-height: 700px;
}

.article-grid-img {
    display: grid;
    grid-template-columns: repeat(4, 190px);
    justify-items: center;
    justify-content: center;
}

.article-grid-img figure {
    margin: 0;
}

.article-grid-img__img {
    display: grid;
    justify-items: center;
    align-items: center;
}

.article-space {
    white-space: nowrap;
}
.c-img--s2 img {
    max-width: 170px;
    max-height: 150px;
}

@media screen and (max-width : 767px) {
    .c-img--l2 img {
        max-width: 100%;
    }

    .c-img--s2 img {
        max-width: 100%;
        width: 150px;
    }

    .article-grid-img {
        grid-template-columns: repeat(2, 1fr);
    }
}

