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

.navigationSection .navigationBox {
    margin-top: 24px;
    display: flex;
    column-gap: 24px;
    justify-content: space-between;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .navigationSection {
        padding: 0 5% 24px;
    }


    .navigationSection .navigationBox {
        flex-direction: column;
        row-gap: 16px;
    }
}

.bodyworkSection {
    padding: 152px 5% 48px;
    margin-top: -152px;
}

.bodyworkSection .content--subTitleBox {
    margin-top: 32px;
}

.bodyworkSection .scene {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.bodyworkSection .scene .img {
    width: 100%;
}

.bodyworkSection .overviewList {
    margin-top: 24px;
}

.bodyworkSection .overviewItem {
    font-size: 1.6rem;
    margin-top: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .bodyworkSection {
        padding-top: 60px;
        margin-top: -60px;
    }

    .bodyworkSection .scene {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.estimatedPriceSection .content--subTitleBox {
    margin-top: 32px;
}

.estimatedPriceSection .content--warningTextBox {
    margin-top: 16px;
}

.estimatedPriceSection .content--warningText {
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 8px;
}

.estimatedPriceSection .tableBox {
    width: 100%;
    max-width: 1200px;
    margin-top: 24px;
    overflow-x: auto;
}

.estimatedPriceSection .horizontalTable--header {
    width: 60%;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .estimatedPriceSection .horizontalTable--header {
        width: 100%;
    }
}

.maintenanceSection {
    padding: 152px 5% 48px;
    margin-top: -152px;
}

.maintenanceSection .content--subTitleBox {
    margin-top: 24px;
}

.maintenanceSection .content--textBox {
    margin-top: 16px;
}

.maintenanceSection .content--text-large {
    font-size: 1.8rem;
    line-height: 1.5;
}

.maintenanceSection .costOfCarModel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.maintenanceSection .card {
    width: 100%;
}

.maintenanceSection .card--title {
    font-size: 1.8rem;
    text-align: center;
}

.maintenanceSection .card--imgBox {
    margin-top: 16px;
    line-height: 0;
}

.maintenanceSection .card--img {
    width: 100%;
}

.maintenanceSection .horizontalTable--header {
    width: 50%;
    min-width: 160px;
    text-align: center;
}

.maintenanceSection .horizontalTable--text {
    text-align: right;
}

.maintenanceSection .content--warningTitleBox {
    margin-top: 32px;
}

.maintenanceSection .content--text {
    font-size: 1.6rem;
    line-height: 1.5;
}

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

@media screen and (max-width: 599px) {
    /* 1024pxまでの幅の場合に適応される */
    .maintenanceSection {
        padding-top: 60px;
        margin-top: -60px;
    }

    .maintenanceSection .costOfCarModel {
        grid-template-columns: repeat(1, 1fr);
    }

    .maintenanceSection .horizontalTable--body {
        display: table-row-group;
    }

    .maintenanceSection .horizontalTable--bodyRow {
        width: 100%;
        display: table-row;
    }

    .maintenanceSection .horizontalTable--header {
        /* width: 100%; */
        display: table-cell;
        border-right: 1px solid var(--grey);
    }

    .maintenanceSection .horizontalTable--text {
        /* width: 100%; */
        display: table-cell;
    }
}

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

.flowSection .media {
    margin-top: 32px;
    column-gap: 32px;
}

.flowSection .media--imgBox {
    width: 300px;
}

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

.flowSection .media--body {
    padding-top: 16px;
}

.flowSection .media--title {
    font-size: 1.8rem;
    line-height: 1.5;
}

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

.flowSection .media--text {
    font-size: 1.6rem;
    margin-top: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .flowSection .media {
        margin-top: 32px;
        column-gap: 24px;
    }

    .flowSection .media--body {
        padding-top: 8px;
    }

    .flowSection .media--text {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .flowSection .media {
        flex-direction: column;
    }

    .flowSection .media--imgBox {
        width: 100%;
    }

    .flowSection .media--body {
        margin-top: 8px;
        padding: 8px;
    }
}

.coatingSection {
    padding: 152px 5% 48px;
    margin-top: -152px;
}

.coatingSection .content--textBox {
    margin-top: 32px;
}

.coatingSection .content--text-large {
    font-size: 1.8rem;
    line-height: 1.5;
}

.coatingSection .content--imgBox {
    display: grid;
    place-items: center;
    margin-top: 32px;
}

.coatingSection .content--img {
    width: 100%;
}

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

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

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

    .coatingSection {
        padding-top: 60px;
        margin-top: -60px;
    }
}

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

.coatingPriceSection .tableBox {
    width: 100%;
    max-width: 1200px;
    margin-top: 24px;
    overflow-x: auto;
}