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


/*--------------------------------------------------


    MOVIE PAGE
	

---------------------------------------------------*/

.movie-cont{
	width:1200px;
	margin: 0 auto;
	margin-bottom: 150px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.movie-cont > div{
	width:560px;
}

.movie-cont > div:nth-child(n+3){
	margin-top: 50px;
}

.image{
	width: 100%;
	background-color: #000000;
	position: relative;
}

.image img{
	width:100%;
	height: auto;
	opacity: 0.5;
}

.image .icon{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/common/icon_movie.svg") no-repeat center center;
	background-size: 50px auto;
	z-index: 1;
}

.movie-cont > div a:hover{
	text-decoration: none;
}

.movie-cont > div a:hover .image img{
	opacity: 1;
	transition: all .3s;
}





@media screen and (max-width: 1499px) {
.movie-cont{
	width:80%;
}

.movie-cont > div{
	width:47%;
}
}


@media screen and (max-width: 768px) {
.movie-cont{
	width:90%;
	margin:0 auto;
	padding:15px 0;
}
	
.movie-cont > div:nth-child(n+3){
	margin-top: 20px;
}
}
