@charset "UTF-8";

.article-stage {
    display: grid;
    grid-template-rows: 140px 140px;
    grid-template-columns: 1fr 200px;
}

.article-stage-img {
    display: grid;
    place-content: center;
}

.c-img--s1 img {
    max-width: 87px;
    max-height: 130px;
}

.c-img--s2 img {
    max-width: 105px;
    max-height: 130px;
}



@media screen and (max-width : 767px) {
    .article-stage {
    grid-template-rows: 140px 140px 140px 140px;
    grid-template-columns: 1fr;}
    
    .c-img--s1 img {
    width: 100%;
    }
    .c-img--s2 img {
    width: 100%;
    }
}

