.hero {
    padding: 48px 56px;
    background-image: url(/img/bg_hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero--box {
    width: 100%;
    max-width: var(--inner-medium);
    display: grid;
    /* row-gap: 80px; */
    place-content: center;
}

/* .hero--title {
    color: var(--red);
    text-shadow: 5px 5px 10px var(--white);
    font-size: 5.6rem;
    font-weight: bold;
    text-align: center;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.hero--flex-col2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
} */

.hero--img {
    width: 100%;
    height: auto;
    line-height: 0;
    overflow-x: hidden;
}

.hero--btnBox {
    /* transform: translateY(-150%); */
    text-align: left;
}

.hero--featureList {
    display: grid;
    row-gap: 24px;
}

.hero--featureItem {
    /* color: var(--black);
    font-size: 1.6rem;
    padding: 24px 16px 16px;
    background-color: var(--yellow);
    border-bottom: solid 2px var(--yellow-shadow);
    border-radius: 5px;
    position: relative; */
}

.hero--featureItem::before {
    /* position: absolute;
    top: 0;
    left: 0;
    color: var(--navy);
    font-size: 2rem;
    font-weight: bold;
    transform: translate(16px, -40%); */

    /* counter */
    /* bodyにcounter-resetの設定あり */
    /* counter-increment: featureItem;
    content: "本気"counter(featureItem); */
}

@media screen and (max-width: 1024px) {
    .hero {
        padding: 32px;
    }
}

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


.threeReasonsSection {
    padding: 32px 16px;
}

.threeReasonsSection .content--title {
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary-bland-color);
}

.threeReasonsSection .reasonList {
    margin-top: 16px;
}

.threeReasonsSection .reasonItem--num {
    font-size: 4rem;
    color: var(--primary-bland-color);
}

.threeReasonsSection .reasonItem {
    font-size: 2.4rem;
}

.threeReasonsSection .reasonList .media {
    margin-top: 16px;
    column-gap: 24px;
}

.threeReasonsSection .reasonList .media--imgBox {
    width: 350px;
}

.threeReasonsSection .reasonList .media--img {
    width: 100%;
}

.threeReasonsSection .reasonList .media--body {
    flex: 1 0;
}

.threeReasonsSection .reasonList .media--text {
    line-height: 1.5;
    text-align: justify;
}

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

    .threeReasonsSection .reasonList .media--imgBox {
        width: 200px;
    }
}

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

    .threeReasonsSection .content--title {
        font-size: 2rem;
    }

    .threeReasonsSection .reasonItem--num {
        font-size: 2.4rem;
    }

    .threeReasonsSection .reasonItem {
        font-size: 1.8rem;
    }

    .threeReasonsSection .reasonList {
        margin-top: 32px;
    }
    
    .threeReasonsSection .reasonList .media {
        flex-direction: column;
    }

    .threeReasonsSection .reasonList .media--imgBox {
        width: 100%;
    }

    .threeReasonsSection .reasonList .media--body {
        margin-top: 16px;
    }
}

.movieIntroductionScreen {
    width: 100%;
    padding: 32px 16px;
}

.movieIntroductionScreen .content--title {
    width: 100%;
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary-bland-color);
}

.movieIntroductionScreen .movieCatalog {
    width: 100%;
    margin-top: 16px;
    display: grid;
    column-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .movieIntroductionScreen .content--title {
        font-size: 2rem;
    }
}

.movieIntroductionScreen .youtubeSubscribeBox {
    width: 100%;
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

.movieIntroductionScreen .youtubeSubscribeBox--fukidashi {
    color: var(--white);
    font-size: 1.6rem;
    text-align: center;
    background-color: var(--primary-bland-color);
    padding: 16px 8px;
    margin-right: 16px;
    position: relative;
}

.movieIntroductionScreen .youtubeSubscribeBox--fukidashi::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 50%;
    right: 0;
    transform: translate(100%, 50%);
    width: 0;
    height: 0;
    border-color: transparent transparent transparent var(--primary-bland-color);
    border-width: 8px 0 8px 16px;
    border-style: solid;
}

.movieIntroductionScreen .inductionYouTubeScreen {
    width: 100%;
    padding: 32px 0;
    display: grid;
    place-items: center;
}

.movieIntroductionScreen .inductionYouTubeScreen .arrowBtn {
    margin-top: 16px;
    background-color: var(--primary-bland-color);
    border-bottom-color: var(--primary-bland-color-dark);
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .movieIntroductionScreen .youtubeSubscribeBox { 
        flex-direction: column;
        align-items: center;
    }
    .movieIntroductionScreen .youtubeSubscribeBox--fukidashi {
        margin-bottom: 16px;
    }

    .movieIntroductionScreen .youtubeSubscribeBox--fukidashi::after {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        border-color: var(--primary-bland-color) transparent transparent transparent;
        border-width: 16px 12px 0 12px;
    }
}

.repairScreen {
    width: 100%;
    padding: 32px 16px;
}

.repairScreen .content--title {
    width: 100%;
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary-bland-color);
}

.repairScreen .recordList {
    width: 100%;
    margin-top: 24px;
}

.repairScreen .media {
    width: 100%;
    justify-content: flex-start;
    column-gap: 24px;
}

.repairScreen .media--imgBox {
    width: 400px;
}

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

.repairScreen .media--body {
    width: 100%;
    padding-top: 8px;
}

.repairScreen .media--title {
    font-size: 2rem
}

.repairScreen .media--text-large {
    font-size: 1.8rem;
    margin-top: 12px;
}

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

.repairScreen .inductionRepairScreen {
    width: 100%;
    margin-top: 16px;
    display: grid;
    place-items: center;
}

.repairScreen .inductionRepairScreen .arrowBtn {
    margin-top: 16px;
    background-color: var(--primary-bland-color);
    border-bottom-color: var(--primary-bland-color-dark);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .repairScreen .media--title {
        font-size: 1.8rem
    }

    .repairScreen .media--imgBox {
        width: 350px;
    }

}

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

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

}

.substituteCarSection {
    width: 100%;
    padding: 32px 16px;
}

.substituteCarSection .swiperBox {
    width: 100%;
    max-width: 860px;
    margin-top: 24px;
}

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

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .substituteCarSection .customerVoiceCatalog {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .substituteCarSection .swiperBox {
        width: 100%;
        max-width: 488px;
    }
}

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

    .substituteCarSection .swiperBox {
        width: 100%;
        max-width: 320px;
    }
}
