@charset "utf-8";
#special{
	padding-bottom: 160px;
}
.contIn{
	overflow: hidden;
}
.specialLists{
	width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 40px;
}
.specialLists__item{
	width: calc(100% / 4);
	padding: 0 20px 40px;
}
.specialList__link{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}
.specialList__link:before{
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: rgba(0,0,0,.16);
}
.specialList__link:after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	padding-top: 12px;
	width: 40px;
	margin-bottom: -4px;
	background: url(../img/common/arrow_newslink.svg) no-repeat bottom left / contain;
	transition: right .3s ease-in-out;
}
.specialLists__item__title{
	order: 2;
	padding: 24px;
	background-color: #fff;
	height: 100%;
	transition: background-color .3s ease-in-out;
	font-size: 16px;
	line-height: 1.5;
}
.specialLists__item__thumb{
	order: 1;
	width: 100%;
}
.specialLists__item__thumbIn{
	overflow: hidden;
}
.specialLists__item__thumbIn img{
	width: 100%;
	transition: .3s ease-in-out;
}

.specialList__link:hover::after{
	right: -4px;
}
.specialList__link:hover .specialLists__item__title{
	background-color: #6dc6f2;
	color: #fff;
}
.specialList__link:hover .specialLists__item__thumbIn img{
	transform: scale(1.15);
}
.pagingListsWrap{
	width: 1040px;
	margin: 0 auto;
}

@media screen and (max-width: 768px){
	#special{
		padding-bottom: 25.6%;
	}
	.contIn{
		width: 100%;
		padding: 12.8% 0 0;
	}
	.specialLists{
		width: 100%;
		padding: 0 3.2% 5.3334%;
	}
	.specialLists__item{
		width: 50%;
		padding: 0 3.4188% 6.8376%;
	}
	.specialLists__item__title{
		padding: 12px;
		font-size: 1.2rem;
	}
}