h2.title_block-2 {
    background-image: url(/assets/images/corp/movie/img-head.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 3.5em;
    .title {
        background-color: #ddf8f2;
        @media (max-width: 1024px) {
            width: 100%;
            height: 8rem;
            top: -8rem;
            display: flex !important;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
    }
}

.article-area {
    padding-top: 3rem;
    padding-bottom: 10rem;
    background-color: #ddf8f2;

    h3 {
        --square: 7.5rem;
        --size: 1;
        --diff: 2;
        position: relative;
        margin: calc(((var(--square) - 1.5rem) / 2) + 3rem);
        span {
            background-color: #fff;
            text-align: center;
            font-family: "Noto serif JP", serif;
            font-size: 1.5rem;
            padding: calc((var(--square) - 1.5rem) / 2);
            z-index: 3;
            position: relative;
            display: block;
        }
        &:before,
        &:after {
            content: "";
            position: absolute;
            width: calc(var(--square) * var(--size));
            height: calc(var(--square) * var(--size));
            background: url(/assets/images/img-pattern.svg) repeat;
            background-size: contain;
            z-index: 2;
        }
        &:before {
            top: calc(-1 * var(--square) / var(--diff));
            left: calc(-1 * var(--square) / var(--diff));
        }
        &:after {
            bottom: calc(-1 * var(--square) / var(--diff));
            right: calc(-1 * var(--square) / var(--diff));
        }
        @media (max-width: 1024px) {
            --square: 5rem;
            --size: 0.8;
            --diff: 3;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
    }
    .container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

.movie-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    @media (max-width: 1024px) {
        grid-template-columns: 1fr;
    }
    iframe {
        width: 100%;
        height: auto;
        border-radius: var(--youtube-radius);
        aspect-ratio: 16 / 9;
    }
    figure>img{
        border-radius: var(--youtube-radius);
    }

    p {
        color: #999;
    }
    p.title {
        font-weight: bold;
        color: #000;
        margin-bottom: 0.5rem;
    }

    .desc {
        padding: 1rem 5rem;
    }

    i.fa-youtube {
        color: #ff0000;
        margin-right: 0.5rem;
    }
}
