.article-inner {
    padding-right: 20vw;
}

.top-accent {
    height: 100px;
    width: 100%;
    background-color: #7D7D82;
}

.container {
    padding: 0;
}

.article-title {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 28px;
}

.article-tags {
    font-size: 15px;
    margin-bottom: 2em;
}

.images-row {
    margin: 0 -30px;
}

.image-wrap {
    padding: 20px 30px;
}

.image-inner {
    width: 100%;
}

.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-container {
    display: grid;
    margin: 30px 0;
    grid-template-columns: repeat(6, 16.6%);
    /* 6列のグリッド */
    border-left: 1px solid #5A5A61;
    /* 左ボーダー */
}

.grid-cell {
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box;
    border-right: 1px solid #5A5A61;
    /* 縦のボーダー */
    border-bottom: 1px solid #5A5A61;
    /* 横のボーダー */
    align-items: center;
    display: flex;
    justify-content: center;
}

.cell-inner {
    width: 100%;
    word-wrap: break-word;
    padding: 0 10px;
}

/* 最初の6セルの上ボーダーを表示 */
.grid-cell:nth-child(-n+6) {
    border-top: 1px solid #5A5A61;
}

.grid-cell-th {
    background-color: #D8D8DA;
}

.article-text {
    margin: 60px 0;
}

.headMod01-main {
    font-size: 28px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .top-accent {
        height: 70px;
    }

    .article-inner {
        padding-right: 13vw;
    }

    .grid-container {
        grid-template-columns: repeat(4, 25%);
    }

    .grid-cell:nth-child(-n+6) {
        border-top: none;
    }

    /* 最初の4セルの上ボーダーを表示 */
    .grid-cell:nth-child(-n+4) {
        border-top: 1px solid #5A5A61;
    }

}

@media screen and (max-width: 767px) {
    .article-inner {
        padding-right: 30px;
    }

    .top-accent {
        height: 50px;
    }

    .headMod01-main{
        font-size: 20px;
    }

    .grid-container {
        grid-template-columns: repeat(2, 50%);
    }

    .grid-cell:nth-child(-n+6) {
        border-top: none;
    }

    .grid-cell:nth-child(-n+4) {
        border-top: none;
    }

    /* 最初の4セルの上ボーダーを表示 */
    .grid-cell:nth-child(-n+2) {
        border-top: 1px solid #5A5A61;
    }
}