@charset "utf-8";

/*--------------------
	contents
--------------------*/
#news_list {
	margin-bottom: 30px;
	background: #fff;
	list-style: none;
}
#news_list li {
	margin-left: 0;
	height: 50px;
}
#news_list li + li {
	border-top: 1px solid #17469b;
}
#news_list li a {
	display: block;
	padding-left: 2em;
	line-height: 50px;
	text-decoration: none;
	color: #2a5ba8;
	transition: 0.7s;
}
#news_list li a:hover {
	background: #f0f0f0;
}
#news_list li span {
	float: left;
	min-width: 150px;
	padding-right: 20px; /* 外国語用 */
	color: black;
}

#news_list li b {
	margin-left: 10px;
}

@media screen and (max-width: 640px) {
	#news #news_list {
		margin: 0 0 30px 0;
		background: #fff;
		list-style: none;
	}
	#news #news_list li {
		margin: 0 5px;
		height: auto;
	}
	#news #news_list li a {
		display: block;
		padding: 5px;
		line-height: initial;
		text-decoration: none;
		color: #2a5ba8;
	}
	#news_list li a:hover {
		background: #fff;
	}
	#news #news_list li span {
		color: black;
	}
	
	#news #news_list li b {
		margin-left: 10px;
	}	
	
}