.mainMessageSection {
    padding: 64px 5%;
}

.mainMessageSection .media {
    width: 100%;
    align-items: center;
    margin-top: 32px;
}

.mainMessageSection .media--body {
    flex: 1 0;
    background-color: var(--bg-color-trasparentwhite);
    margin-right: -600px;
    padding: 42px 24px 64px;
    z-index: 1;
}

.mainMessageSection .media--imgBox {
    width: 100%;
    max-width: 1000px;
}

.mainMessageSection .media--img {
    width: 100%;
}

.mainMessageSection .media--title {
    font-size: 3.2rem;
    line-height: 1.5;
}

.mainMessageSection .media--textBox {
    margin-top: 24px;
}

.mainMessageSection .media--text {
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
}

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

    .mainMessageSection {
        padding-top: 0;
        padding-bottom: 32px;
    }

    .mainMessageSection .media--body {
        flex: 1 0;
        margin-right: -400px;
        padding: 24px;
        z-index: 1;
    }

    .mainMessageSection .media--title {
        font-size: 2rem;
    }

    .mainMessageSection .media--textBox {
        margin-top: 16px;
    }

    .mainMessageSection .media--text {
        font-size: 1.6rem;
    }
    
    .mainMessageSection .media--imgBox {
        max-width: 450px;
    }
}

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

    .mainMessageSection {

    }

    .mainMessageSection .content--title {
        font-size: 4.8rem;
    }

    .mainMessageSection .content--textBox {
        margin-top: 24px;
    }

    .mainMessageSection .content--text {
        font-size: 2.4rem;
    }
    
    .mainMessageSection .media {
        margin-top: 0;
        flex-direction: column-reverse;
    }
    
    .mainMessageSection .media--imgBox {
        width: 100%;
    }

    .mainMessageSection .media--body {
        margin-right: 0;
    }

    .mainMessageSection .media--title {
        /* font-size: 2.4rem; */
    }

    .mainMessageSection .media--text {
        line-height: 1.5;
    }

}

.caseSection {
    padding: 0 5% 64px;
    text-align: center;
}

.caseSection .content--title {
    font-size: 4rem;
    padding: 1em;
    width: 100%;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
}

.caseSection .cases {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
}

.caseSection .cases--img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .caseSection {
        padding-bottom: 32px;
    }
}

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

    .caseSection .content--title {
        font-size: 2.8rem;
        padding: 1em;
    }

    .caseSection .cases {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 24px;
    }
}

.modelSection {
    padding: 64px 5%;
}

.modelSection .content--title {
    font-size: 5.6rem;
    text-align: center;
}

.modelSection .content--textBox {
    margin-top: 24px;
}

.modelSection .content--text {
    font-size: 2.8rem;
    text-align: center;
}

.modelSection .grid-col4 {
    margin-top: 48px;
    gap: 24px;
}

.modelSection .squareArrowBtn--body {
    display: grid;
    row-gap: 8px;
}

.modelSection .content--btnBox {
    display: grid;
    place-items: center;
    margin-top: 56px;
}

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

}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .modelSection {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    
    .modelSection .content--title {
        font-size: 4.8rem;
    }
    
    .modelSection .content--text {
        font-size: 2.4rem;
    }
    
    .modelSection .grid-col4 {
        margin-top: 32px;
        grid-template-columns: repeat(1, 1fr);
    }

    .modelSection .content--btnBox {
        margin-top: 32px;
    }

}

.typeSection {
    padding: 64px 5%;
    background-color: var(--bg-color-lightgrey);
}

.typeSection .content--title {
    font-size: 5.6rem;
    text-align: center;
}

.typeSection .content--textBox {
    margin-top: 24px;
}

.typeSection .content--text {
    font-size: 2.8rem;
    text-align: center;
}

.typeSection .grid-col5 {
    margin-top: 48px;
    gap: 24px;
}

.typeSection .squareArrowBtn--body {
    display: grid;
    row-gap: 8px;
}

.typeSection .content--btnBox {
    display: grid;
    place-items: center;
    margin-top: 56px;
}

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

}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .typeSection {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    
    .typeSection .content--title {
        font-size: 4.8rem;
    }
    
    .typeSection .content--text {
        font-size: 2.4rem;
    }
    
    .typeSection .grid-col5 {
        margin-top: 32px;
        grid-template-columns: repeat(1, 1fr);
    }

    .typeSection .content--btnBox {
        margin-top: 32px;
    }

}