@charset "UTF-8";
/* CSS Document */
.title {
    background-image: url("../images/bg-main.jpg");
}
.feature {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}
.feature img {
    width: 360px;
}
.feature-text {
    max-width: 500px;
    margin-right: 40px;
}
.reverse {
    flex-direction: row-reverse;
}
.reverse .feature-text {
 margin-left: 40px;
 margin-right: 0;   
}
.feature-text h2  , .movie h2{
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}
.feature-text h2::after, .movie h2::after {
 content: '';
 display: block;
 width: 36px;
 height: 3px;
 background-color: #000000;
 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-top: 55px;
    margin-left: auto;
    margin-right: auto; 
}
.movie h2 {
    text-align: center;
}
.movie h2::after  {
    margin-left: auto;
    margin-right: auto;
}
.movie iframe {
    display: block;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 456px;
    margin-top: 30px;
}
.movie p {
    font-size: 15px;
    line-height: 28px;
    margintop: 20px;
}

@media (max-width: 800px) {
    .feature {
        display: block;
        width: 500px;
        margin: 45px;
    }
    .feature-text {
        margin-rihgt: 0;
    }
    .reverse .feature-text {
        margin-left: 0;
    }
    .feature img {
        width: 100%;
        height: auto;
        margin-top: 25px;
    }
    movie {
        width: 500px;
        padding: 30px 25px;
    }
}












































