@charset "utf-8";


/**************************************************50
 * news
 **************************************************/
#news{
	color: #212121;
}
#news figure{
	border-bottom: 1px solid #D8E0F0;
	margin-bottom: 30px;
	padding: 0 20px 30px;
}
#news figure:after{
	clear: both;
	content: "";
	display: block;
}
#news figure > a{
	display: block;
	float: right;
	width: 240px;
}
#news figure > a img{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: opacity 0.2s ease-out 0s;
	width: 100%;
}
#news figure > a:first-child:hover img{
	opacity: 0.7;
}
#news figure figcaption{
}
#news figure figcaption h2{
	color: #FF0000;
	font-size: 175%;
	line-height: 1.2;
	margin-top: 20px;
	margin-bottom: 20px;
}
#news figure a + figcaption{
	float: left;
	width: -webkit-calc(100% - 240px - 20px);
	width: calc(100% - 240px - 20px);
}


