@charset "utf-8";
.movieLists {
display: flex;
flex-wrap: wrap;
width: calc(100% - 80px);
margin: 0 auto;
}
.movieLists__item {
width: calc((100% - 20px) / 2);
margin-bottom: 40px;
}
.movieLists__item:not(:nth-child(2n + 1)){
margin-left: 20px;
}
.movieLists__movieWrap {
width: 100%;
padding-top: 56.25%;
position: relative;
}
.movieLists__movieWrap iframe,
.movieLists__movieWrap video {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.movieLists__caption {
color: #5eb8b5;
font-size: 16px;
font-weight: 700;
margin-top: 20px;
}
@media screen and (max-width:768px) {
.movieLists {
width: 100%;
}
.movieLists__item {
width: 100%;
}
.movieLists__item:last-child {
margin-bottom: 0;
}
.movieLists__item:not(:nth-child(2n + 1)){
margin-left: 0;
}
.movieLists__caption {
font-size: 14px;
font-size: 1.4rem;
padding: 0 40px;
text-align: center;
}
}