@charset "utf-8";




/*********************
	h2
*********************/
h2{
	width:100%;
	max-width:750px;
	margin:0 auto 20px;
}
@media screen and (max-width: 767px){
	h2{
		
	}
}
/*********************
	.tab_area
*********************/
.tab_area{
	width:100%;
	margin:0 auto;
	display:flex;
}
.tab_area.fixed{
	max-width:1420px;
	position:fixed;
	top:0;
	left:0;
	right:0;
	margin:0 auto;
	padding-top:10px;
	padding-left:270px;
	box-sizing:border-box;
	z-index:3;
	background:url(../images/bg_common_1.jpg);
	background-repeat:repeat;
}
.tab_area li{
	width:31%;
	max-width:240px;
	margin-right:1%;
	width:100%;
	background-color:#dbdbdb;
	border-radius:20px 20px 0 0;
	text-align:center;
	padding:22px 0 20px;
	font-size:1.8rem;
	font-weight:bold;
	color:#999;
	cursor:pointer;
}

.tab_area li.active{
	background-color:#fff;
	background-image:url("../images/bg_common_top.png");
	background-repeat:no-repeat;
	background-size:630px;
	background-position:20% 0;
	color:#333;
	
}



@media screen and (max-width: 767px){
	.tab_area.fixed{
		width:100%;
		padding:10px 0 0;
		top:60px;
		left:0;
	}
	.tab_area li{
		width:calc(92% / 3);
		font-size:1.3rem;
		padding:12px 0 10px;
		margin-right:2%;
	}
	.tab_area li:first-child{
		margin-left:2%;
	}
	.tab_area li.active{
		background-position:40% 0;
	}
	
}



/*********************
	.recommend_area
*********************/
.recommend_area{
	width:100%;
	margin:0 auto 200px;
	position:relative;
}
.recommend_wrap{
	width:100%;
	margin:0 auto;
	padding:40px 20px 20px;
	box-sizing:border-box;
	background:#fff;
	border-radius:0 20px 20px 20px;
}
.recommend_box{
	display:none;
	width:100%;
	margin:0 auto;
}
.recommend_box.active{
	display:flex;
	flex-wrap:wrap;
}

.anchor_box{
	width:100%;
	margin:0 auto 60px;
}
.anchor_box.fixed{
	max-width:1420px;
	position:fixed;
	top:70px;
	left:0;
	right:0;
	margin:0 auto;
	z-index:3;
	padding-left:270px;
	box-sizing:border-box;
}
.anchor_box.fixed .anchor_list{
	width:100%;
	background:#fff;
	padding:40px 20px 20px;
	box-sizing:border-box;
	border-radius:0 20px 0 0;
	border-bottom:1px solid #333;
}
.anchor_box li{
	display:inline-block;
	width:180px;
	margin-right:20px;
}
.anchor_box li span{
	display:block;
	width:100%;
	height:44px;
	line-height:44px;
	background:#333;
	text-align:center;
	font-size:1.8rem;
	font-weight:bold;
	color:#fff;
	border-radius:50vh;
}
.anchor_box li span:hover{
	background:#882111;
	cursor:pointer;
	transition:.3s;
}



.month_box{
	width:100%;
	margin:0px auto 100px;
}
.recommend_month_ttl{
	width:100%;
	margin:0 auto 20px;
	font-weight:bold;
	font-size:1.8rem;
}

.recommend_list{
	width:100%;
	box-sizing:border-box;
	display:flex;
	flex-wrap:wrap;
}

.recommend_list li{
	width:32%;
	margin-right:2%;
	margin-bottom:30px;
	position:relative;
}
.recommend_list li:nth-child(3n){
	margin-right:0;
}

.recommend_list li.none{
	display:none;
}
.btn_moreview{
	width:360px;
	height:56px;
	line-height:56px;
	margin:40px auto 0;
	background:#333;
	border-radius:50vh;
	text-align:center;
	color:#fff;
	font-size:1.8rem;
	font-weight:bold;
	
}
.btn_moreview:hover{
	cursor:pointer;
	background:#882111;
	transition:.3s;
}

.recommend_list li a:hover img{
	opacity:.7;
	trasition:.3s;
}
.recommend_list .img_box{
	width:100%;
	border:4px solid #dec694;
	box-sizing:border-box;
	margin:0 auto;
}

.recommend_list .img_box img{
	width:100%;
	height: auto;
}

.recommend_list .img_btm{
	width:100%;
	min-height:20px;
	margin:0 auto 5px;
	position:relative;
}
.recommend_list .label_movie{
	width:70px;
	height:20px;
	line-height:20px;
	background:#facf4b;
	color:#fff;
	text-align:center;
	font-size:1.2rem;
	position:absolute;
	top:0;
	left:0;
	
}
.recommend_list .credit{
	width:calc(100% - 80px);
	margin-left:80px;
	font-size:.8rem;
	color:#bbb;
	text-align:right;
	line-height:1.4;
	padding-top:5px;
}
.recommend_list .date{
	width:100%;
	margin:0 auto;
	font-size:1.4rem;
}
.recommend_list .ttl{
	width:100%;
	margin:0 auto;
	font-size:1.6rem;
	font-weight:bold;
}
.recommend_list a:hover .ttl{
	color:#882111;
	transition:.3s;
}
.recommend_list a:hover .date{
	color:#882111;
	transition:.3s;
}
.recommend_list .ico_movie{
	display:inline-block;
	width:24px;
	height:18px;
	vertical-align:-2px;
	margin-left:5px;
	background-image:url(../images/youtube.svg);
	background-size:100%, auto;
	overflow:hidden;
	font-size:2.4rem;
	text-indent:100%;
	white-space:nowrap;
}
.recommend_list li .movie_wrap{
	width:100%;
	padding-top:56.25%;
	position:relative;
}
.recommend_list li .movie_wrap iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.mt-100 {
	margin-top: 100px;
}
.mt-120 {
	margin-top: 120px;
}


@media screen and (max-width: 767px){
	.recommend_area{
		margin:0 auto 100px;
	}
	.recommend_wrap{
		border-radius:0;
	}
	.anchor_box{
		margin:0 auto 40px;
		text-align:center;
	}
	.anchor_box.fixed{
		width:100%;
		left:0;
		top:110px;
		padding:0;
	}
	.anchor_box.fixed .anchor_list{
		padding:20px 0;
		border-radius:0;
	}
	.anchor_box li{
		width:120px;
		margin-right:10px;
	}
	.anchor_box li span{
		height:30px;
		line-height:30px;
		font-size:1.4rem;
	}
	
	.month_box{
		width:96%;
		margin:0 auto 80px;
	}
	.recommend_list li{
		width:100%;
		margin:0 auto 30px;
	}
	.recommend_list li:nth-child(3n){
		margin:0 auto 30px;
	}

	.recommend_list .img_btm{
		min-height:16px;
	}
	.recommend_list .label_movie{
		font-size:1.0rem;
		height:16px;
		line-height:16px;
	}
	.recommend_list .date{
		font-size:1.3rem;
	}
	.recommend_list .ttl{
		font-size:1.4rem;
	}
	.btn_moreview{
		width:80%;
		height:48px;
		line-height:48px;
		font-size:1.6rem;
	}
}
