@charset "utf-8";
/* CSS Document */

/*---------------------------------------------------------
 Movies
---------------------------------------------------------*/
.movies-list__item__tmb {
    position: relative;
    transition: .2s;
    height: 27vh;
    max-height: 180px;
}
.movies-list__item__tmb a.pc {
    display: none;
}
.movies-list__item__tmb a.sp {
    display: block;
    position: relative;
}
.movies-list__item__tmb img {
    max-height: 100%;
}
.movies-list__item__tmb a::before {
    content: '';
    display: block;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(/indonesia/resources/images/movies/thum-over.png) no-repeat center;
    background-size: 100%;
    cursor: pointer;
}
.movies-list__item__tmb a:hover {
    opacity: .7;
}
.movies-list__item__txt {
    margin: 1rem 0 0;
}
.movies-list__item__txt .tags {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 2rem;
}
.movies-list__item__txt .tag a {
    margin: 0 .5rem .5rem 0;
    padding: .1rem 1rem;
    border: solid 1px #D83563;
    text-align: center;
    text-decoration: none;
    font-size: 1.4rem;
}
.movies-list__item__txt .tag a:hover {
    opacity: .7;
}
.movies-list__item__txt .tag.rooga a {
    border-color: #D83563;
    color: #D83563;
}
.movies-list__item__txt .tag.colorbest a {
    border-color: #1855BE;
    color: #1855BE;
}

@media screen and (min-width : 768px) {
    .movies-list__item__tmb a.sp {
        display: none;
    }
    .movies-list__item__tmb a.pc {
        display: block;
    }
    .movies-list__item__tmb {
        height: 180px;
    }
}