@charset "utf-8";

/*------------------------------
	content
------------------------------*/
.visual{
	background-image: url("/img/visual_news.jpg");
}

#news_list h1 {
	position: relative;
	color: #222;
	background: transparent;
}

#news_list h1:before {
	content: '';
	position: absolute;
	bottom: 0;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #A51F24;
	border-radius: 2px;
}

#news_list ul li {
	list-style: none;
	margin: 0;
	border-bottom: 1px solid #bbb;
}

#news_list ul a{
	position: relative;
	display: block;
	padding: 10px 30px 10px 15px;
	color: #000;
}

#news_list ul a::after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#news_list ul .date {
	color: #666;
}

#news_list ul .new .date::after {
	content: "NEW";
	position: relative;
	top: -2px;
	left: 10px;
	padding: 0 5px;
	font-size: 12px;
	color: #fff;
	background:#a51f24;
}
