@charset "utf-8";

.pageTitle{
	margin-bottom: 47px;
}

@media screen and (max-width: 640px){
	.pageTitle{
		margin-bottom: 4.6%;
	}
}

/* ----- 特集index ----- */
.categorySelect{
	overflow: hidden;
	padding-bottom: 10px;
}

.categoryBtn{
	position: relative;
	float: left;
	width: 174px;
	height: 50px;
	margin-right: 20px;
	margin-bottom: 20px;
	text-align: center;
	line-height: 50px;
	background-image: url(../common/img/bg_dots.png);
	background-repeat: repeat;
}

.categoryBtn:hover{
	cursor: pointer;
}

.categoryBtn::after{
	display: none;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -4px;
	width: 0;
	height: 0;
	border-top: 10px solid #fff;
	border-right: 7px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 7px solid transparent;
	content: "";
}

.selected.categoryBtn::after{
	display: block;
}

.allBtn{background-color: #e03841;}
.inteBtn{background-color: #60939e ;}
.topiBtn{background-color: #537056;}
.movieBtn{background-color: #d5813c;}
.speBtn{background-color: #6c5177;}
.allBtn::after{border-top-color: #e03841;}
.inteBtn::after{border-top-color: #60939e ;}
.topiBtn::after{border-top-color: #537056;}
.movieBtn::after{border-top-color: #d5813c;}
.speBtn::after{border-top-color: #6c5177;}

.selected.allBtn{background-color: #e04e56;}
.selected.inteBtn{background-color: #769ea7;}
.selected.topiBtn{background-color: #697c6b;}
.selected.movieBtn{background-color: #d69158;}
.selected.speBtn{background-color: #6f5d76;}
.selected.allBtn::after{border-top-color: #e04e56;}
.selected.inteBtn::after{border-top-color: #769ea7;}
.selected.topiBtn::after{border-top-color: #697c6b;}
.selected.movieBtn::after{border-top-color: #d69158;}
.selected.speBtn::after{border-top-color: #6f5d76;}

@media screen and (max-width: 640px) {

	.categorySelect{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		padding: 0;
	}
	.categoryBtn{
		float: none;
		width: 80px;
		height: 39px;
		margin-right: 6px;
		font-size: 10px;
		line-height: 39px;
	}
}


/* ----- 新着情報 ----- */
.newsArea {
}

.newsList {
	display: flex;
	flex-wrap: wrap;
}

.newsBox {
	position: relative;
	width: 32.5%;
	margin: 0 .3% 17px;
	padding: 1px;
	box-sizing: border-box;
	background: #319432;
	background: -moz-linear-gradient(-45deg, #319432 0%, #ce1819 100%);
	background: -webkit-linear-gradient(-45deg, #319432 0%, #ce1819 100%);
	background: linear-gradient(135deg, #319432 0%, #ce1819 100%);
}
.newsBox a, .newsBox span {
	display: block;
	height: 100%;
	color: #000;
	text-decoration: none;
	box-sizing: border-box;
	background: url(../top_assets/img/box_bg_l.png) no-repeat center bottom;
	background-size: cover;
}

.newsImg img {
	width: 100%;
}

.newsText {
	padding: 10px 16px;
}
.newsText .day {
	display: inline-block;
	margin-right: 4px;
	font-family: "Oswald", sans-serif;
}
.newsText .newsIcon {
	display: inline-block;
	padding: 3px 6px 1px;
	font-size: 12px;
	color: #fff;
	background-color: #ccc;
	vertical-align: top;
}
.newsText .text {
	padding-top: 4px;
	font-size: 18px;
	line-height: 1.6;
}
.newsBox .new{
	overflow: hidden;
	position: absolute;
	top: 8px;
	left: -5px;
	width: 50px;
	height: 27px;
	background: url(./img/new.png) no-repeat 0 0;
	text-indent: 120%;
	white-space: nowrap;
}

@media screen and (max-width: 1024px) {
	.newsArea {
		float: none;
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.newsList {
		display: block;
	}

	.newsBox:nth-child(odd) {
		margin-right: 0;
	}

	.newsBox {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.newsBox a,
	.newsBox span{
		display: table;
		width: 100%;
		background: url(../top_assets/img/box_bg_s.png) no-repeat center bottom;
		background-size: cover;
	}
	.newsBox .newsImg {
		display: table-cell;
		width: 42.2%;
	}
	.newsBox .newsText {
		display: table-cell;
		padding: 4px 8px;
		vertical-align: top;
	}
	.newsText .day {
		font-size: 14px;
	}
	.newsText .newsIcon {
		font-size: 10px;
	}
	.newsText .text {
		padding-top: 4px;
		font-size: 12px;
	}
	.newsBox:nth-child(n + 3) .newsText .text {
		font-size: 12px;
	}
	.newsBox .new{
		top: 4px;
		left: -2px;
		width: 25px;
		height: 14px;
		background-size: 25px auto;
	}
}


