.page__hero {
    background-image: url('../img/background/bg-pc-01.png');
}

.page__news {
    background-image: url('../img/background/bg-pc-02.png');
    overflow: visible;
}

.hero {
    padding: 200px 0 140px;
    position: relative;
}

.hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hero__left-container {
    width: 50%;
}

.hero__title {
    height: 180px;
}

.hero__subtitle {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: #3F3E4C;
    margin-left: 8%;
}

.hero__right-container {
    width: 50%;
}

.hero__right-container img {
    width: auto;
    height: 340px;
    object-fit: contain;
}

.hero__bg-title {
    position: absolute;
    left: 0;
    bottom: 145px;
    transform: translate(15%, 0);
    width: 70%;
}

@media (max-width: 1099px) {
    .page__hero {
        background-image: url('../img/background/bg-mobile-01.png');
    }

    .page__news {
        background-image: url('../img/background/bg-mobile-02.png');
    }

    .hero {
        padding: 100px 0;
    }

    .hero__container {
        flex-direction: column;
    }

    .hero__left-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero__title {
        height: 150px;
    }

    .hero__subtitle {
        font-size: 32px;
        margin-left: 0;
        transform: translateY(-20%);
    }

    .hero__right-container {
        margin-top: 50px;
        width: 100%;
    }

    .hero__right-container img {
        width: 100%;
        height: auto;
    }

    .hero__bg-title {
        width: 100%;
        transform: unset;
        bottom: 50%;
    }
}

@media (max-width: 768px) {
    .hero__title {
        height: 120px;
    }

    .hero__subtitle {
        font-size: 24px;
    }
}