@charset "utf-8";




/* news */
.news{}
.news__item{}
.news__item:not(:first-child){
	border-top: 1px dotted #000;
}
.news--alternate .news__item:nth-child(2n+1){
	background-color: #f7f7fa;
}
.news__inner{
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	
	display: -webkit-box;
	-webkit-box-pack: justify;
	display: flex;
	display: -ms-flex;
	display: -moz-flex;
	display: -webkit-flex;
	/*
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	*/
	align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}
.news__col{
	font-size: .875rem;
	line-height: 1rem;
}
.news__col:not(:last-child){
	margin-right: 1.5rem;
}
.news__icon{
	width: 64px;
	padding: 0;
}
.news__icon_img{}
.news__date{
	width: 100px;
}
.news__body{
	min-width: 50%;
	
	flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
}

.news__col .ic_new {
	font-size: .675rem;
	font-weight: 700;
	color: #fff;
	background: #fa9dbd;
	border-radius: 3px;
	padding:2px 18px 3px 18px;
	text-align: center;
	margin:0 7px 5px 0;
	white-space: nowrap;
}

.news__body a {text-decoration: underline;}

@media print, screen and (min-width: 768px){}
@media only screen and (max-width: 767px){
	.news__icon{
		width: 44px;
		padding: 0 10px;
		transform: translateY(-5px);
	}
	.news__date{
		width: 44px;
		padding: 0 10px;
	}
	.news__col .ic_new {
		
	}
	.news__date{
		padding: 0px 10px 0;
	}
	.news__body{
		min-width: 75%;
	}
}


