@charset "utf-8";

.title {
    height: 310px;
    background-image: url(../images/ABOUT_US/bg-main.png);
    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 {
    margin-right: 500px;
    margin-top: 50px;
}

.title p {
    margin-right: 500px;
    margin-top: 10px;
}

.about_us {
    display: flex;
    justify-content: space-between;
    width: 930px;
    max-width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.about_us img {
    width: 360px;
    border-radius: 2%;
}

.about_us-text {
    max-width: 500px;
    margin-right: 40px;
    align-items: center;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .about_us-text {
    margin-left: 40px;
    margin-right: 0;
}

.about_us-text h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}

.about_us-text p {
    font-size: 15px;
    line-height: 30px;
    margin-top: 10px;
}

.movie {
    width: 930px;
    max-width: 90%;
    background-color: #f8f8f8;
    padding: 50px 60px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.movie h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.movie iframe {
    display: block;
    width: 100%;
    height: 450px;
    margin-top: 10px;
}

.movie h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}

@media (max-width: 800px) {
    .about_us {
        display: block;
        width: 500px;
        margin-top: 20px;
    }

    .about_us-text {
        margin-right: 0px;
    }

    .reverse .about_us-text {
        margin-left: 0;
    }

    .about_us img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .title h1 {
        margin-right: 200px;
    }

    .title p {
        margin-right: 200px;
        margin-bottom: 200px;
    }

}