@charset "UTF-8";

/* common */
main {
    margin: 50rem 0 0;
}

/* MV */
.main-visual {
    width: 100%;
    height: 58rem;
    position: absolute;
    top: 0;
    background: url(../images/mv-sub.png) no-repeat center / cover;
}

.main-visual h2 {
    font-size: max(2.5vw, 4rem);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    gap: 1vw;
}

.main-visual span {
    font-size: max(1.6vw, 3rem);
    font-family: "Book Antiqua", sans-serif;
    font-style: italic;
}

/* car service */
.carservice {
    padding: 5vw 0;
}

.carservice-inner {
    width: 120rem;
    max-width: 90%;
    margin: auto;
}

.carservice-inner h2 {
    font-size: max(2vw, 3rem);
    position: relative;
    padding: 0 0 0 max(3vw, 4rem);
    margin: 0 0 5vw;
}

.carservice-inner h2::before {
    position: absolute;
    content: "";
    width: max(2vw, 3rem);
    height: max(2vw, 3rem);
    background: #82000a;
    top: 2px;
    left: 0;
}

.carservice-inner h2::after {
    position: absolute;
    content: "";
    width: max(30vw, 40rem);
    height: 1px;
    background: #fff;
    right: 0;
    top: 50%;
}

.carservice-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem 0;
    margin: 0 0 8vw;
}

.carservice-list li {
    width: 32%;
}

.carservice-list li img {
    width: 100%;
}

@media screen and (max-width: 968px) {
    /* common */
    main {
        margin: 30rem 0 0;
    }

    /* MV */
    .main-visual {
        width: 100%;
        height: 30rem;
        position: absolute;
        top: 0;
        background: url(../images/mv-sub-sp.png) no-repeat center / cover;
    }

    .main-visual h2 {
        font-size: 3.6rem;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        gap: 1vw;
        white-space: nowrap;
    }

    .main-visual span {
        font-size: 2.4rem;
        font-family: "Book Antiqua", sans-serif;
        font-style: italic;
    }

    /* car service */
    .carservice {
        padding: 5vw 0;
    }

    .carservice-inner {
        width: 120rem;
        max-width: 90%;
        margin: auto;
    }

    .carservice-inner h2 {
        font-size: max(2vw, 3rem);
        position: relative;
        padding: 0 0 2rem max(3vw, 4rem);
        margin: 0 0 5vw;
    }

    .carservice-inner h2::before {
        position: absolute;
        content: "";
        width: max(2vw, 3rem);
        height: max(2vw, 3rem);
        background: #82000a;
        top: 2px;
        left: 0;
    }

    .carservice-inner h2::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background: #fff;
        right: 0;
        top: initial;
        bottom: 0;
    }

    .carservice-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem 0;
        margin: 0 0 8rem;
        flex-direction: column;
    }

    .carservice-list li {
        width: 100%;
    }

    .carservice-list li img {
        width: 100%;
    }
}
