@charset "UTF-8";

#key-visual .pic img{
	object-position: right center;
}
#news-list{
	border-top: 1px solid #ccc;
}
#news-list li{
	border-bottom: 1px solid #ccc;
}
#news-list a{
	display: flex;
	padding: 30px 15px;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
#news-list a:before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #f5f5f5;
	content: "";
	transition: .3s all ease;
	transform: scaleX(0);
	transform-origin: left top;
}
#news-list a:hover:before{
	transform: scaleX(1);
}
.post-ttl{
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 2;
	padding-left: 40px;
	position: relative;
	z-index: 2;
	width: calc(100% - 120px);
}
.date{
	font-weight: 600;
	display: flex;
	font-size: 1.3rem;
	height: 26px;
	width: 120px;
	border: 1px solid #343436;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	transition: .3s all ease;
}
a:hover .date{
	background: #343436;
	color: #fff;
}


@media screen and (max-width: 768px){

	#news-list a{
		padding: 2.4rem 1.2rem;
		flex-direction: column;
		justify-content: flex-start;
	}

	.post-ttl{
		font-size: 1.3rem;
		width: 100%;
		padding: 1.5rem 0 0;
	}
	.date{
		font-size: 1.1rem;
		height: 2rem;
		width: 9rem;
	}

}
