.hero-lowerPage {
    /* 基本はcommon.cssだが画像だけは各ページのcss */
    background-image: url(/img/bg-car-showroom.jpeg);
}

.mainMessageSection {
    padding: 40px 5%;
    background-image: url(/img/bg-car-showroom.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: grid;
    place-items: center;
}

.mainMessageSection::after {
    position: absolute;
    content: "";
    background: var(--primary-bg-gradation-transparent);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.mainMessageSection .content--inner-medium {
    position: relative;
    z-index: 1;
}

.mainMessageSection .grid-col5 {
    column-gap: 24px;
}

.mainMessageSection .grid-col5--img {
    width: 100%;
}

.mainMessageSection .content--titleBox {
    margin-top: 40px;
}

.mainMessageSection .content--title {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.5;
}

.mainMessageSection .content--textBox {
    margin-top: 32px;
}

.mainMessageSection .content--text-large {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

.mainMessageSection .content--text {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
}

.mainMessageSection .grid-col4 {
    margin-top: 40px;
    column-gap: 32px;
}

.mainMessageSection .grid-col4--textBox {
    background-color: var(--white);
    padding: 16px 24px;
    display: grid;
    place-items: center;
}

.mainMessageSection .grid-col4--text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-bland-color);
    line-height: 2;
}


@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .mainMessageSection .content--title {
        text-align: left;
    }

    .mainMessageSection .grid-col5 {
        padding-left: 24px;
        padding-right: 24px;
        column-gap: 24px;
    }

    .mainMessageSection .grid-col4--textBox {
        padding: 8px 16px;
    }

    .mainMessageSection .grid-col4--text {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .mainMessageSection .content--titleBox {
        margin-top: 32px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .mainMessageSection .content--title {
        font-size: 2.4rem;
        text-align: justify;
    }

    .mainMessageSection .grid-col5 {
        padding-left: 8px;
        padding-right: 8px;
        column-gap: 8px;
    }

    .mainMessageSection .grid-col4 {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 16px;
    }


}


.highQualitySection {
    padding: 64px 5%;
    background: var(--bg-color-bland-color-transparent);
}

.highQualitySection .content--title {
    font-size: 5.6rem;
    text-align: center;
}

.highQualitySection .content--textBox {
    margin-top: 24px;
}

.highQualitySection .content--text {
    font-size: 2.8rem;
    text-align: center;
}

.highQualitySection .media {
    display: flex;
    margin-top: 64px;
}

.highQualitySection .media--imgBox {
    width: 100%;
    line-height: 0;
}

.highQualitySection .media--img {
    width: 100%;
}

.highQualitySection .media--body {
    width: 100%;
    align-self: flex-start;
    color: var(--black);
    background-color: var(--white);
    padding: 64px 32px 48px;
    margin-top: -24px;
    margin-right: -64px;
    z-index: 1;
    display: grid;
    justify-content: center;
    row-gap: 24px;
}

.highQualitySection .media--title {
    font-size: 2.8rem;
    text-align: left;
    position: relative;
}

.highQualitySection .media-reverse .media--body {
    margin-left: -64px;
    margin-right: 0;
}

.highQualitySection .media--textBox {
    /* margin-top: 48px; */
}

.highQualitySection .media--text {
    line-height: 2;
    text-align: left;
}

.highQualitySection .media--btnBox {
    width: 100%;
}

.highQualitySection .media--btn {
    width: 100%;
    color: var(--primary-bland-color);
    border: 2px solid var(--primary-bland-color);
}

.highQualitySection .media--btn::after {
    background-image: url(/img/icon_arrow_right_orange.png);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    

    .highQualitySection .media--title::after {
        font-size: 4rem;
    }

    .highQualitySection .media--body {
        margin-top: 0;
        margin-right: -32px;
        padding: 32px;
    }

    .highQualitySection .media--imgBox {
        margin-top: -24px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .highQualitySection {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .highQualitySection .content--title {
        font-size: 3.2rem;
    }

    .highQualitySection .content--text {
        font-size: 1.6em;
    }

    .highQualitySection .media--title {
        font-size: 2.4rem;
    }

    .highQualitySection .media--title-en {
        font-size: 3.6rem;
    }

    .highQualitySection .media {
        flex-direction: column-reverse;
    }

    .highQualitySection .media-reverse .media--body {
        margin-left: 0;
    }
}

.costdownSection {
    padding: 64px 5%;
    background: var(--white);
}

.costdownSection .media {
    display: flex;
    column-gap: 32px;
}

.costdownSection .media--imgBox {
    width: 100%;
    line-height: 0;
}

.costdownSection .media--img {
    width: 100%;
}

.costdownSection .media--body {
    width: 100%;
}

.costdownSection .media--title {
    font-size: 2.8rem;
    text-align: left;
    position: relative;
}

.costdownSection .media--textBox {
    margin-top: 24px;
}

.costdownSection .media--text {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .costdownSection .media--text {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .costdownSection .media {
        flex-direction: column;
    }
    
}

.manufactureSection {
    padding: 64px 5%;
    background-image: url(/img/bg-car-showroom.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: grid;
    place-items: center;
}

.manufactureSection::after {
    position: absolute;
    content: "";
    background: var(--background-color-transparentblack);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.manufactureSection .content--box {
    padding: 24px 48px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.manufactureSection .content--title {
    color: var(--primary-bland-color);
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: center;
}

.manufactureSection .content--textBox {
    margin-top: 24px;
}

.manufactureSection .content--text {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .manufactureSection {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .manufactureSection .content--box {
        padding: 24px;
    }

    .manufactureSection .content--title {
        font-size: 2.4rem;
    }

    .manufactureSection .content--text {
        font-size: 1.6rem;
    }
}

.strongPointSection {
    padding: 64px 5%;
    background: var(--white);
}

.strongPointSection .content--title {
    color: var(--primary-bland-color);
    font-size: 5.6rem;
    text-align: center;
}

.strongPointSection .content--textBox {
    margin-top: 24px;
}

.strongPointSection .content--text {
    color: var(--primary-bland-color);
    font-size: 2.8rem;
    text-align: center;
}

.strongPointSection .media {
    display: flex;
    margin-top: 64px;
}

.strongPointSection .media--imgBox {
    width: 100%;
    line-height: 0;
}

.strongPointSection .media--img {
    width: 100%;
}

.strongPointSection .media--body {
    width: 100%;
    align-self: flex-start;
    color: var(--white);
    background: var(--primary-bg-gradation);
    padding: 64px 32px 48px;
    margin-top: -24px;
    margin-right: -64px;
    z-index: 1;
    display: grid;
    justify-content: center;
    row-gap: 24px;
}

.strongPointSection .media--title {
    font-size: 2.8rem;
    text-align: left;
    position: relative;
}

.strongPointSection .media-reverse .media--body {
    margin-left: -64px;
    margin-right: 0;
}

.strongPointSection .media--textBox {
    /* margin-top: 48px; */
}

.strongPointSection .media--text {
    line-height: 2;
    text-align: left;
}

.strongPointSection .media--btnBox {
    width: 100%;
}

.strongPointSection .media--btn {
    width: 100%;
    color: var(--primary-bland-color);
    border: 2px solid var(--primary-bland-color);
}

.strongPointSection .media--btn::after {
    background-image: url(/img/icon_arrow_right_orange.png);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    

    .strongPointSection .media--title::after {
        font-size: 4rem;
    }

    .strongPointSection .media--body {
        margin-top: 0;
        margin-right: -32px;
        padding: 32px;
    }

    .strongPointSection .media--imgBox {
        margin-top: -24px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .strongPointSection {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .strongPointSection .content--title {
        font-size: 3.2rem;
    }

    .strongPointSection .content--text {
        font-size: 1.6em;
    }

    .strongPointSection .media--title {
        font-size: 2.4rem;
    }

    .strongPointSection .media--title-en {
        font-size: 3.6rem;
    }

    .strongPointSection .media {
        flex-direction: column-reverse;
    }

    .strongPointSection .media-reverse .media--body {
        margin-left: 0;
    }
}

.importCarRepairSection {
    padding: 64px 5%;
    background: var(--white);
}

.importCarRepairSection .content--title {
    width: 100%;
    color: var(--black);
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    padding: 20px 5%;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
}

.importCarRepairSection .mediaBox {
    margin-top: 60px;
}

.importCarRepairSection .media {
    margin-top: 40px;
    column-gap: 40px;
}

.importCarRepairSection .media--imgBox {
    width: 100%;
    line-height: 0;
}

.importCarRepairSection .media--img {
    width: 100%;
}

.importCarRepairSection .media--body {
    width: 100%;
    align-self: flex-start;
}

.importCarRepairSection .media--text {
    font-size: 1.8rem;
    line-height: 1.5;
}

.importCarRepairSection .finishMessage {
    width: 100%;
    margin-top: 40px;
    padding: 40px 5%;
    background-image: url(https://placehold.jp/500x300.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.importCarRepairSection .finishMessage--text {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .importCarRepairSection .content--title {
        font-size: 3.2rem;
    }

    .importCarRepairSection .media {
        column-gap: 24px;
    }
    
    .importCarRepairSection .media--text {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .importCarRepairSection {
        padding-top: 0;
        padding-bottom: 0;
    }

    .importCarRepairSection .mediaBox {
        margin-top: 40px;
    }

    .importCarRepairSection .content--title {
        font-size: 2.4rem;
    }
    
    .importCarRepairSection .media {
        flex-direction: column;
    }
    
    .importCarRepairSection .media--body {
        margin-top: 16px;
    }

    .importCarRepairSection .finishMessage--text {
        font-size: 1.8rem;
    }
    
}