@charset "utf-8";

/*==========================================================
 タイトル
==========================================================*/

.title {
    height: 310px;
    background-image: url(../../images/header_img/rs-yuri_kiss.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 #cb30cb;
}

.title h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: bold;
}

.title p {
    font-size: 17px;
    margin-top: 14px;
}


/*==========================================================
 共通カード
==========================================================*/

.feature-card,
.movie,
.center-table {

    width: 930px;
    max-width: 90%;

    margin: 60px auto;

    padding: 40px;

    background: #333;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}


/*==========================================================
 feature
==========================================================*/

.feature {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.reverse {

    flex-direction: row-reverse;
}

.feature-text {

    flex: 1;
}

.feature img {

    width: 360px;

    border-radius: 8px;

    display: block;
}

.feature h2 {

    color: #fff;

    font-size: 22px;

    font-weight: bold;
}

.feature h2::after {

    content: "";

    display: block;

    width: 100px;

    height: 3px;

    margin-top: 18px;

    background: #ff77ff;

    border-radius: 2px;
}

.feature p {

    margin-top: 25px;

    color: #ccc;

    font-size: 15px;

    line-height: 28px;
}


/*==========================================================
 movie
==========================================================*/

.movie {

    text-align: center;
}

.movie h2 {

    color: #fff;

    font-size: 22px;

    font-weight: bold;
}

.movie h2::after {

    content: "";

    display: block;

    width: 150px;

    height: 3px;

    margin: 15px auto 0;

    background: #ff77ff;

    border-radius: 2px;
}

.movie iframe {

    width: 100%;

    height: 456px;

    margin-top: 25px;

    border-radius: 8px;

    display: block;
}

.movie p {

    margin-top: 20px;

    color: #ccc;

    line-height: 1.7;
}


/*==========================================================
 center-table
==========================================================*/

.center-table {

    text-align: center;
}

.center-table h2 {

    color: #fff;

    font-size: 22px;

    font-weight: bold;
}

.center-table h2::after {

    content: "";

    display: block;

    width: 150px;

    height: 3px;

    margin: 15px auto 0;

    background: #ff77ff;

    border-radius: 2px;
}

.center-table p {

    margin-top: 20px;

    color: #ccc;

    line-height: 1.8;
}

.center-table iframe {

    width: 100%;

    height: 456px;

    margin-top: 25px;

    border-radius: 8px;
}


/*==========================================================
 ボタン
==========================================================*/

.link-button-area {

    text-align: center;

    margin-top: 40px;
}

.link-button {

    display: inline-block;

    min-width: 250px;

    line-height: 48px;

    border-radius: 24px;

    background: #ff77ff;

    color: #fff;

    font-size: 14px;

    font-family: 'Noto Sans JP', sans-serif;

    transition: .25s;
}

.link-button:hover {

    background: #dd69dd;
}


/*==========================================================
 footer
==========================================================*/

.footer {

    margin-top: 20px;
}


/*==========================================================
 スマホ
==========================================================*/

@media (max-width:800px) {

    .feature-card,
    .movie,
    .center-table {

        width: 500px;

        max-width: 90%;

        padding: 30px 20px;
    }

    .feature {

        display: block;
    }

    .feature img {

        width: 100%;

        margin-top: 30px;
    }

    .feature-text {

        width: 100%;
    }

    .movie iframe,
    .center-table iframe {

        height: 240px;
    }

}