@charset "utf-8";

/*-----------------------------------
img
-----------------------------------*/
#img {
    height: 100%;
    aspect-ratio: 500 / 615;
    display: flex;
    align-items: center;
}
#img img {
    height: 75%;
}
@media screen and (max-width:768px){
    #img {
        aspect-ratio: 340 / 535;
        justify-content: center;
        align-items: center;
    }
    #img img {
        width: 98%;
        height: auto;
    }
}

/*-----------------------------------
movie
-----------------------------------*/
#movie_list {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 150px;
}
.movie {
    height: 100%;
    display: flex;
    gap: 0 50px;
}
.movie li {
    height: 100%;
    aspect-ratio: 320 / 535;
}
.movie li .movie_cont {
    display: flex;
    justify-content: space-between;
}
.movie li .movie_cont .ttl {
    font-size: 2.7dvh;
    line-height: 1.4em;
    font-weight: bold;
    writing-mode: vertical-rl;
    white-space: pre;
    margin-top: 6%;
}
.movie li .movie_cont .movie_wrap {
    width: 83%;
    height: 88%;
    margin-top: 6%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
	padding-top: 149.25%;
}
.movie li .movie_cont .movie_wrap iframe {
    position: absolute;
    top: 0;
    left: -110%;
    width: 320%;
    height: 100%;
}
.movie li .movie_cont .movie_wrap .thumb {
    width: 100%;
    height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.movie li .movie_cont .movie_wrap .thumb::after {
    content: "";
    width: 24%;
    height: 24%;
    background: url("file:///assets/img/movie/play_btn.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: opacity .3s;
}
.movie li .movie_cont .movie_wrap .thumb:hover::after {
    opacity: 0.7;
}
.movie li .movie_cont .movie_wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.movie li .hashtag {
    display: flex;
    justify-content: flex-end;
    margin-top: 1%;
}
.movie li .hashtag p {
    font-size: 1.8dvh;
}
.movie li .hashtag p:not(:first-child) {
    margin-left: 1em;
}
.movie li .movie_cont .coming_soon {
    width: 84%;
    height: 88%;
    margin-top: 6%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.movie li .movie_cont .coming_soon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:768px){
    #movie_list {
        margin-right: 2dvh;
    }
    .movie {
        gap: 0;
        align-items: center;
    }
    .movie li {
        aspect-ratio: 320 / 460;
    }
    .movie li .movie_cont {
        width: 90%;
        height: 97%;
        margin: 0 auto;
    }
    .movie li .movie_cont .ttl {
        font-size: 2.5dvh;
        margin-top: 0;
    }
    .movie li .movie_cont .movie_wrap {
        width: 86%;
        margin-top: 0;
        padding-top: calc(89dvh - 120px);
    }
    .movie li .hashtag {
        width: 90%;
        margin: 1% auto 0;
    }
}

