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

.repair .grid-col2 {
    margin-top: 32px;
    column-gap: 60px;
}

.repair .card {
    width: 100%;
    /* padding: 40px; */
}

.repair .card--imgBox {
    width: 100%;
    line-height: 0;
}

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

.repair .card--body {
    width: 90%;
    margin: 0 auto;
    padding: 1.5em;
    background-color: var(--white);
    transform: translateY(-50%);
}

.repair .card--date {
    color: var(--secondary-bland-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.repair .card--text {
    color: var(--font-color-black);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 4px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .repair .grid-col2 {
        column-gap: 40px;
        row-gap: 0px;
    }

}

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

    .repair .card--body {
        transform: translateY(-25%);
    }
}

.makers {
    background-color: var(--background-color-dimgrey);
    padding: 80px 5%;
}

.makers .japaneseMakerList {
    width: 100%;
    margin-top: 60px;
}

.makers .japaneseMakerList--maker {
    display: block;
    margin-top: 48px;
}

.makers .japaneseMakerList--maker .japaneseMakerList--link {
    display: block;
    width: 18.5%;
    min-width: 240px;
    background-color: var(--white);
    padding: 16px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
}

.makers .japaneseMakerList--carList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
}

.makers .japaneseMakerList--car {
    display: inline;
    margin-right: 16px;
}

.makers .japaneseMakerList--carList .japaneseMakerList--link {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: bold;
}

.makers .foreignMakerList {
    margin-top: 80px;
}

.makers .foreignMakerList .grid-col5 {
    margin-top: 40px;
}

.makers .foreignMakerList .btn {
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 12px;
    display: grid;
    place-items: center;
    min-height: 62px;
    /* height: 38px; */
}

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

    .makers .japaneseMakerList--maker .japaneseMakerList--link {
        display: block;
        width: 23.5%;
        min-width: 180px;
        padding: 12px;
        font-size: 2rem;
    }

    .grid-col5 {      
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .makers .foreignMakerList .btn {
        font-size: 1.4rem;
    }
}