#news-section{
	background: rgba(53,53,53,1);
}
#news-section .article-container{
	padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#news-section .article-container:nth-child(even){
	background: rgba(74,74,74,1);
}
#news-section .article-container a{
	display: block;
	width: 900px;
	margin: 0 auto;
	color: #fff;
	transition: 0.2s linear;
}
#news-section .article-container a:hover{
	opacity: 0.7;
}
#news-section .article-container article{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}
#news-section .article-container article .eyecatch-image{
	width: 28%;
}
#news-section .article-container article .eyecatch-image figure{
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 70%;
	overflow: hidden;
}
#news-section .article-container article .eyecatch-image figure img{
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#news-section .article-container article .entry{
	width: 68.5%;
}
#news-section .article-container article .entry .cats{
	display: inline-block;
	width: 110px;
	margin-bottom: 10px;
	padding: 2px 0;
	text-align: center;
	background: #D02570;
}
#news-section .article-container article .entry .date{
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
#news-section .article-container article .entry h2{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}
@media screen and ( max-width: 480px ) {
	#news-section .article-container{
		padding: 3% 0;
	}
	#news-section .article-container a{
		width: 100%;
	}
	#news-section .article-container article{
		padding: 0 2.2%;	
	}
	#news-section .article-container article .eyecatch-image{
		width: 30%;
	}
	#news-section .article-container article .entry{
		width: 66%;
	}
	#news-section .article-container article .entry .cats{
		width: 40%;
		margin-bottom: 2%;
		font-size: 10px;
	}
	#news-section .article-container article .entry .date{
		margin-bottom: 2%;
		font-size: 12px;
	}
	#news-section .article-container article .entry h2{
		font-size: 15px;
	}
}