@charset "UTF-8";

.article-annotation {
    margin-top: 1rem;
    font-size: 1.4rem;
}
.article-flex {
    display: flex;
}
.article-annotation li span:nth-child(1) {
    margin-right: 5px;
}

.article-img__caption {
    margin-top: 1rem;
    display: table-caption;
    caption-side: bottom;
    font-size: 1.4rem;
    text-align: center;
}

.c-table__scroll {
    width: 100%;
    overflow-x: scroll;
}

.c-table {
    width: 100%;
    min-width: 767px;
    border-collapse: collapse;
}

.c-img--s2 img {
    max-width: 170px;
    max-height: 260px;
    width: 100%;
}

.c-img--s2-1 img {
    max-width: 130px;
    max-height: 190px;
    width: 100%;
}

.c-img--s3 img {
    max-width: 40px;
    max-height: 50px;
}

.article-grid-img {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px,200px) minmax(30px,40px))200px;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

.article-img {
    margin-top: 40px;
}

.article-grid-img__img {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-auto-rows: 230px 40px;
    margin: 0;
}
.article-grid-img__arrow {
    grid-auto-rows: 100px;
}

@media screen and (max-width : 767px) {
    .c-img--s2 img {
        max-width: 100%;
        max-height: 190px;
        width: 185px;
    }

    .c-img--s2-1 img {
        max-width: 100%;
        max-height: 230px;
        width: 130px;
    }

    .c-img--s3 img {
        max-width: 100%;
        transform: rotate(90deg);
        width: 50px;
    }
    .article-grid-img {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,300px 50px);
    }
    .article-grid-img__img {
        grid-template-rows: 220px 30px;
    }
}



