@charset "UTF-8";

.box {
	background-color: #fff;
	padding: 80px 0;
}
.box .inner {
	padding: 0;
}

/* boiler */
.moviePage_title {
	padding: 30px 0;
	background-color: #deeced;
}
.moviePage_title .inner {
	width: 1200px;
	min-height: 373px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	background: url(../../common/images/contents_movie/bg_main-pc.jpg) no-repeat left center;
}
.moviePage_title .left {
	width: 570px;
	padding-top: 60px;
}
.moviePage_title .left .movieComing {
	margin: 60px 0 0;
}
.moviePage_title .left .movieComing span {
	font-weight: bold;
}
.moviePage_title .right {
	width: 510px;
	margin-left: 40px;
}
.moviePage_title h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 30px;
}
.moviePage_title h2 span {
	font-size: 18px;
	font-weight: 700;
}
.moviePage_title p {
	font-size: 18px;
}
.moviePage_cs {
	padding: 20px 0;
	font-size: 18px;
	background-color: #f8f8f8;
}
.moviePage_cs b {
	font-weight: bold;
}
.movie_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -30px;
	margin-left: -30px;
}
.movie_list_item {
	width: calc((100% - 90px) / 3);
	margin-left: 30px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	background-color: #f8f8f8;
}
.movie_list_item_thumb {
	width: 380px;
	height: 214px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #dcdcdc;
	font-size: 20px;
	text-align: center;
}
a.movie_list_item_thumb {
	display: block;
	position: relative;
}
a.movie_list_item_thumb::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../../common/images/contents_movie/movie_icon-off.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 59px 42px;
}
a.movie_list_item_thumb:hover::after {
	background-image: url(../../common/images/contents_movie/movie_icon-on.svg);
}
.movie_list_item_inner {
	padding: 25px 30px;
}
.movie_list_item_title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}
.movie_list_item_btn {
	display: block;
	position: relative;
	margin: auto 30px 0;
	padding: 11px 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background-color: #006ab0;
}
.movie_list_item_btn:hover {
	color: #fff;
	opacity: .7;
}
.movie_list_item_btn::after {
	content: ">";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.movie_wrap {
	display: none;
}
.movie_btn a {
	width: 800px;
	display: block;
    text-align: center;
	margin: 0 auto;
    padding: 10px 15px;
    border: 1px solid #006ab0;
    color: #006ab0;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    background-color: #fff;
}
.movie_btn a:hover {
	color: #fff;
	background-color: #006ab0;
}
@media screen and (max-width: 736px) {
	.box {
		padding: 30px 0;
	}
	.box .inner {
		padding: 0 15px;
	}
	.moviePage_title {
		padding: 0;
	}
	.moviePage_title .inner {
		width: 100%;
		min-height: auto;
		display: block;
		padding: 30px;
		background: url(../../common/images/contents_movie/bg_main-sp.jpg) no-repeat center;
		background-size: 100% 100%;
	}
	.moviePage_title .left {
		width: 100%;
		padding-top: 0;
		color: #fff;
	}
	.moviePage_title .left .movieComing {
		margin-top: 10px;
		margin-bottom: 0;
	}
	.moviePage_title .right {
		width: 100%;
		margin: 15px 0 0;
	}
	.moviePage_title h2 {
		font-size: 17px;
		margin-bottom: 10px;
	}
	.moviePage_title h2 span {
		display: block;
		font-size: 15px;
	}
	.moviePage_title p {
		font-size: 14px;
	}
	#movie.box .inner {
		padding: 0 15px;
	}
	.moviePage_cs {
		padding: 15px;
		font-size: 16px;
	}
	.movie_list {
		display: block;
		margin-left: 0;
		margin-bottom: -20px;
	}
	.movie_list_item {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.movie_list_item_inner {
		padding: 15px 20px;
	}
	.movie_list_item_thumb {
		width: 100%;
		height: calc((100vw - 30px) * 0.5625);
		text-align: center;
	}
	.movie_list_item_title {
		margin-bottom: 10px;
	}
	.movie_list_item_btn {
		margin: 0 20px;
	}
	.movie_btn a {
		width: 100%;
	}
	.movie_btn br {
		display: none;
	}
}