#banner {
    width: 100%;
    overflow: hidden;
    background: #720913;
}

.banner_wrapper {
    max-height: 1440px;
    height: 100%;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #720913;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_content {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 367px;
    background: linear-gradient(180deg, rgba(114, 9, 19, 0.00) 0%, #720913 100%), linear-gradient(180deg, rgba(114, 9, 19, 0.00) 0%, #720913 100%), linear-gradient(180deg, rgba(114, 9, 19, 0.00) 0%, #720913 100%), linear-gradient(180deg, rgba(114, 9, 19, 0.00) 0%, #720913 100%);
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner_text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 0 16px 50px;
    max-width: 785px;
}

.banner_title {
    color: #FFF;
    text-align: center;
    font-family: 'Shadow';
    font-size: 64px;
    line-height: 94%;
    letter-spacing: -1.6px;
}

.banner_after_title {
    color: #FFF;
    font-size: 24px;
    line-height: 130%;
}

.banner_pc {
    display: block;
}

.banner_mobile {
    display: none;
}

@media (max-width: 1600px) {

    .banner_title {
        font-size: 48px;
        line-height: 100%;
        letter-spacing: -0.48px;
    }

    .banner_text {
        gap: 16px;
    }

    .banner_after_title {
        font-size: 22px;
        line-height: 130%;
    }
}

@media (max-width: 1400px) {

    .banner_wrapper {
        max-height: 863px;
        height: 100vh;
        position: relative;
        width: 100%;
        aspect-ratio: auto;
    }

    .banner_video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 650px) {
    .banner_pc {
        display: none;
    }

    .banner_mobile {
        display: block;
    }

    .banner_title {
        font-size: 40px;
        line-height: 100%;
        letter-spacing: -0.4px;
    }

    .banner_after_title {
        font-size: 18px;
        line-height: 130%;
    }
}