@charset "utf-8";

.topContents {
	max-width: 1146px;
	margin: 0 auto;
}
.main_bnr {
	display: flex;
	justify-content: center;
	margin: 5% auto;
	width: 100%;
}
.movie_bnr {
	margin-right: 3%;
}
.top_movie_2 {
	width: 500px;
}
.top_movie {
	width: 100vw;
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%);
}
.main_text {
	font-size: 16px;
}
.main_text h2 {
	text-align: left;
	margin-top: 0;
}

@media only screen and (max-width: 940px){
	.main_bnr {
		display: inline-block;
		width: 100%;
		font-size: 16px;
		margin: 10% auto;
	}
	.movie_bnr {
		width: 100%;
		margin: 0 auto;
	}
	.top_movie_2 {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	.main_text {
		margin: 2% auto;
		font-size: 13px;
		width: 80%;
	}
}
@media only screen and (min-width: 940px) and (max-width: 1024px) {
	.main_bnr {
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 5% auto;
		padding: 3%;
	}

}

.title {
	text-align: center;
	font-size: 30px;
	margin: 8% 0 5% 0;
}

/* item-look */
.item_wrap {
	margin-bottom: 5%;
}
.item_wrap .item-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.item_wrap .item-list .items {
	box-sizing: border-box;
	margin-bottom: 50px;
	padding: 0 30px;
	height: 300px;
}
.item_wrap .item-list .items .item_movie {
	width: 100%;
	height: 100%;
}
.item_wrap .item-list .items a {
	display: block;
	width: 35%;
	border: solid 1px #000;
	padding: 4% 0;
	text-align: center;
	line-height: 1;
	letter-spacing: 1px;
	font-size: 12px;
	margin: 0 auto;
}

@media only screen and (max-width: 940px){
	#item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-content: center;
		align-items: center;
	}
	#item .items {
		padding: 5px;
	}
}
@media only screen and (max-width: 940px){
	#look {
		display: flex;
		flex-direction: column;
	}
	#look .items {
		margin: 0 auto;
		height: 600px;
		padding: 2%;
		width: 100%;
	}
}


.under_wrap {
	max-width: 1200px;
	margin: 0 auto;
}
.under_wrap .under_movie {
	width: 100%;
	display: block;
	margin: 100px auto;
	padding: 0 30px;
}
.under_wrap .text_wrap {
	margin-bottom: 100px;
}
.under_wrap .text_wrap .under_text {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}


@media only screen and (max-width: 940px){
	.under_wrap .under_movie {
		width: 100%;
		padding: 0 2%;
	}
}

/* マウスオーバー処理 */
.item_wrap .item-list .items img {
	border: none;
}
.item_wrap .item-list .items {
	position: relative;
	margin: 0 auto;
	display: block;
	cursor: pointer;
	position:relative;
	margin-bottom: 20%;
}
.item_wrap .item-list .items img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.item_wrap #item .items img {
	max-width: 240px;
	width: 100%;
}
.item_wrap #look .items img {
	max-width: 224px;
	height: 100%;
}
.item_wrap #item .hover_movie {
	visibility:hidden;
}
.item_wrap #item .items img:hover {
	visibility:hidden;
}
.item_wrap #item .items:hover .hover_movie{
	visibility:visible;
	position: relative;
	z-index: 1;
}
.item_wrap #item .played .hover_movie {
	visibility:visible;
	position: relative;
	z-index: 1;
}

.item_wrap #look .items .look_img_2 {
	visibility:hidden;
}
.item_wrap #look .items:hover .look_img_1 img {
	visibility:hidden;
}
.item_wrap #look .items:hover .look_img_2 img {
	visibility:visible;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
}
@media only screen and (min-width: 940px) and (max-width: 1024px) {
	.item_wrap #item .items img {
		width: 80%;
		height: auto;
	}
}
@media only screen and (max-width: 940px) {
	.item_wrap #item .items img {
		width: 100%;
		height: auto;
		padding: 2%;
	}
	.item_wrap #look .items img {
		max-width: 453px;
		width: 96%;
		height: auto;
		padding: 2%;
	}
	
}

/* ポップアップ */
.popup {
	width: 100vw;
	height: 100%;
	position: fixed;
	top: 0;
	left:0;
	z-index:9996!important;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.bg {
	background-color: #1119;
	width: 100%;
	height: 100%;
	position:fixed;
	z-index:9997!important;
}
.popup_img {
	height:auto;
	position: absolute;
	z-index:9998!important;
	display: flex;
	width: 80vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.popup_img img {
	width: 80vw;
}
.modal-close {
	color: #FFF;
	position: relative;
	font-size: 2vw;
	left: 91%;
	top: 6%;
	z-index:9998!important;
}
.pc_only {
	display: block;
}
.sp_only {
	display: none;
}

@media only screen and (min-width: 1400px){
	.popup_img {
		width: 70vw;
	}
}
@media only screen and (max-width: 1200px){
	.modal-close {
		top: 11%;
	}
}
@media only screen and (max-width: 1100px){
	.modal-close {
		top: 13%;
	}
}
@media only screen and (max-width: 1000px){
	.modal-close {
		top: 17%;
	}
}

@media only screen and (max-width: 940px){
	.items.popup_action {
		display: none;
	}
	.popup_img {
		display: none;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	ul.slides.slides_img {
		max-width: 453px;
		width: 96%;
		height: auto;
		padding: 1.5%;
		position: relative;
		left: 50%;
		transform: translate(-50%);
	}
	a.flex-active {
		background-color: #969696!important;
	}
}

/* スライダー */
.slider {
	display: none;
}

/* slick-initializedクラスが付与されたら */
.slider.slick-initialized {
	display: block; 
}