@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;
}

/* sales */
.sales{
    padding: 7vw 0;
}

.sales-box{
    display: flex;
    width: 120rem;
    max-width: 90%;
    margin: 0 auto 8vw;
    justify-content: space-between;
}

.sales-l{
    width: 48%;
}

.sales-r{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sales-r p span{
    font-size: max(1.5vw,2rem);
    position: relative;
    margin: 0 0 1vw;
}

.sales-r p span::after{
    position: absolute;
    content: "";
    width: max(1.5vw,2rem);
    height: max(1.5vw,2rem);
    background: #82000a;
    top: max(.3vw,.5rem);
    left: -2.5vw;
}

.sales-r p{
    font-size: max(1.5vw,2rem);
    line-height: 2;
    margin: 0 0 0 2.5vw;
}

.sales-slider 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;
    }

    /* sales */
    .sales{
        padding: 7vw 0;
    }

    .sales-box{
        display: flex;
        width: 120rem;
        max-width: 90%;
        margin: 0 auto 8rem;
        justify-content: space-between;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .sales-l{
        width: 100%;
    }

    .sales-r{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sales-r p span{
        font-size: 2.4rem;
        position: relative;
        margin: 0 0 1vw;
        display: block;
    }

    .sales-r p span::after{
        position: absolute;
        content: "";
        width: 2.4rem;
        height: 2.4rem;
        background: #82000a;
        top: 1.3rem;
        left: -3.5rem;
    }

    .sales-r p{
        font-size: 2.4rem;
        line-height: 2;
        margin: 0 0 0 3.5rem;
    }

    .sales-slider li img{
        width: 100%;
    }
}
