.background {
    position: fixed;

    top: 0;
    bottom: 40px;
    left: 190px;
    right: 0;

    background-repeat: repeat;
    background-image: url(../asset/images/bg.png);
    background-size: cover;
    background-position: center center;
}

#Movie_intro {
    min-height: calc(100dvh - 40px);

}

#Movie_intro .container {
    padding-top: 40px;
    padding-bottom: 80px;
}

@media(max-width:997px) {
    .background {
        top: 60px;
        bottom: 30px;
        left: 0;
        right: 0;
    }
}

/*********** title ************/

#Movie_intro .content.title {
    position: relative;
    width: 100%;
    padding: 9px;
    border: 5px solid black;
    border-bottom-width: 10px;
    background-color: var(--white);
}

#Movie_intro .content.title::before,
#Movie_intro .content.title::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
}

#Movie_intro .content.title::before {
    background-image: url(../../assets/images/warpLeft.png);
    background-position: left;
}

#Movie_intro .content.title::after {
    background-image: url(../../assets/images/warpRight.png);
    background-position: right;
}

#Movie_intro h2 {
    font-size: 48px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

#Movie_intro h2::after {
    display: inline-block;
    content: attr(data);
    font-size: 12px;
    color: var(--black);
    margin: auto 6px;
}

#Movie_intro .wrapper.description {
    margin-top: 32px;
}

#Movie_intro .wrapper.description h1 {
    font-size: 32px;
    text-align: left;
    color: var(--black);
    position: relative;
}

@media(max-width:997px) {
    #Movie_intro h2 {
        line-height: 48px;
        flex-direction: column;
    }

    #Movie_intro h2::after {
        line-height: normal;
    }
}

@media (max-width:576px) {
    #Movie_intro h2 {
        line-height: 32px;
        font-size: 32px;
    }
}

/*********** movie_list ************/

#Movie_intro .content.movie_list {
    position: relative;

    margin-top: 48px;
}

#Movie_intro .inner_content.movie_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
    align-items: baseline;
    justify-content: space-between;
    text-align: center;
}

@media(max-width:997px) {
    #Movie_intro .inner_content.movie_list {
        grid-template-columns: repeat(1, 1fr);
        align-items: end;
    }
}

/********** movie_item **********/

#Movie_intro li.movie_item {
    background-image: url(../asset/images/dot_gradation_rad_fromLT_K.png);
    background-position: left top;
    background-size: 30%;
}

#Movie_intro li.movie_item .thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    padding: 3%;
}

#Movie_intro li.movie_item .thumbnail img {
    width: 100%;
    height: auto;
    border: 1px solid var(--black);
}

#Movie_intro li.movie_item .thumbnail::after {
    content: "";
    position: absolute;
    display: block;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    background-image: url(../asset/images/ico_movie.svg);
    background-position: center center;
    background-size: 10%;
}

#Movie_intro li.movie_item:hover .thumbnail::after {
    background-size: 15%;
}

#Movie_intro li.movie_item .discription {
    margin: auto;
    width: 85%;
}

#Movie_intro li.movie_item .item_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    font-weight: 500;

    margin: auto;
    margin-top: -1rem;
    width: 85%;
    height: 2rem;

    background: conic-gradient(from -45deg, #0059a9, #003767, #0059a9, #003767, #0059a9);
    background-size: 16px 16px;
    background-position: center;
}

#Movie_intro li.movie_item:hover .item_title {
    color: var(--yellow);
}

#Movie_intro li.movie_item .explanation {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

#Movie_intro li.movie_item .date {
    text-align: right;
    font-size: 12px;
    color: var(--black);
}

@media(max-width:997px) {

    #Movie_intro li.movie_item {
        background-size: 10%;
    }

    #Movie_intro li.movie_item .thumbnail {
        width: 80%;
        margin: auto;
    }

    #Movie_intro li.movie_item a {
        display: flex;
    }

    #Movie_intro li.movie_item .explanation {
        text-align: left;
        font-weight: 700;
        color: var(--black);
        font-size: 20px;
    }

    #Movie_intro li.movie_item .date {
        text-align: right;
        font-size: 16px;
        color: var(--black);
    }
}

@media(max-width:576px) {
    #Movie_intro li.movie_item a {
        display: block;
    }

    #Movie_intro li.movie_item .thumbnail {
        width: 100%;
    }
}