@charset "utf-8";

.title {
    height: 310px;
    background-image: url(../images/concept/sp-image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
    font-family: "Cinzel", serif;
    font-size: 35px;
    font-weight: lighter;
    letter-spacing: 3px;

}

.title p {
    font-size: 14px;
    margin-top: 15px;
    letter-spacing: 5px;

}

.feature {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin: 75px auto 0;
    align-items: flex-start;
}

.feature img {
    width: 360px;
}

.feature-text {
    max-width: 500px;
    margin-right: 40px;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse img {
    width: vw;
    height: 250px;
    object-fit: cover;
}

.reverse .feature-text {
    margin-left: 40px;
    margin-right: 0;
}

.feature-text h2 {
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
}

.feature-text h2::after {
    content: '';
    display: block;
    width: 500px;
    height: 1px;
    background-color: #000;
    margin-top: 20px;
}

.feature-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 25px;
}

.movie {
    width: 930px;
    max-width: 90%;
    background-color: #f8f8f8;
    padding: 50px 60px;
    margin: 55px auto 0;
}

.movie h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.movie h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin: 20px auto 0;
}

.movie iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 30px;
}

.movie p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 20px;
}

.footer {
    margin-top: 100px;
}

@media(max-width:800px) {
    .feature {
        /* ↓縦並びにする（もともとflexで横並びになってた） */
        display: block;
        width: 500px;
        margin-top: 45px;
    }

    /* flexをつかってるときはmarginではなくgapで余白を作ると下記の余白の調整は必要なかった */
    .feature-text {
        margin-right: 0;
    }

    .reverse .feature-text {
        margin-left: 0;
    }

    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }

    .movie {
        width: 500px;
        padding: 30px 25px;
    }
}