.overviewSection {
    padding: 0 5% 48px;
}

.overviewSection .content--textBox {
    margin-top: 8px;
}

.overviewSection .content--text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 16px;
}

.overviewSection .horizontalTable {
    margin-top: 16px;
}

.overviewSection .pictures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.overviewSection .pictures .picture {
    width: 100%;
}

.overviewSection .history {
    margin-top: 24px;
}

.overviewSection .history .horizontalTableBox {
    margin-top: 24px;
}

.overviewSection .history .attemptPictures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.overviewSection .history .attemptPictures .picture {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .overviewSection .content--text {
        font-size: 1.6rem;
    }

    .overviewSection .horizontalTable {
        margin-top: 16px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .overviewSection .pictures {
        grid-template-columns: repeat(2, 1fr);
    }

    .overviewSection .history .attemptPictures {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
}

.calendarSection {
    padding: 0 5% 48px;
}

.calendarSection .content--titleBox {
    width: 100%;
}

.calendarSection .calendarPictureBox {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.calendarSection .calendarPicture {
    width: 100%;
    max-width: 960px;
}