@charset "UTF-8";

/* news ---------------------------------------*/

.news {}
.news-list {}

.news-list > li:not(:last-child){border-bottom:1px solid #d9d9d9;}
.news-list > li a{display: block;}

.news-list-inner {
	display:flex;
	justify-content:space-between;
	padding: 30px 0;
}

.news-list-date {width: 125px;}

.news-list-date span{
	display: block;
	font-size:16px;
}

.news-list-category {width: 110px;}

.news-list-category span{
	display: block;
	background: #3880D7;
	color: #fff;
	display: block;
	line-height:1.0;
	font-weight:bold;
	font-size:13px;
	padding: 6px;
	text-align:center;
}

.news-list-category span.is-category1{background: #3880D7;}
.news-list-category span.is-category2{background: #4EA94D;}
.news-list-category span.is-category3{background: #E95B3C;}

.news-list-text {
	width: calc(100% - 250px);
	padding-left: 15px;
}

.news-list-text p{
	font-size:16px;
	line-height: 1.6;
}

.news-list > li a:hover .news-list-text p{text-decoration: underline;}

.news-list > li a.is-pdf .news-list-text p::after{
	content:'';
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	background: url('../img/common/icon_pdf.png') 0 0 no-repeat;
	background-size: 100%;
	width:22px;
	height:22px;
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 950px){

	.news-list-inner {
		flex-wrap:wrap;
		justify-content:start;
	}

	.news-list-text {
		width: 100%;
		padding: 15px 0 0 0;
	}


}



@media screen and (max-width: 767px){


	/* news ---------------------------------------*/

	.news {}
	.news-list {padding-top: 40px}

	.news-list-inner {
		flex-wrap:wrap;
		justify-content:start;
		padding: 25px 0;
	}

	.news-list-date {width: 140px;}
	.news-list-date span{font-weight:bold;}

	.news-list-category {width: 96px;}

	.news-list-category span{
		font-weight:normal;
		padding: 6px;
	}

	.news-list-text {
		width: 100%;
		padding: 10px 0 0 0;
	}

	.news-list-text p{
		font-size:15px;
		line-height: 1.6;
	}


	.news-list > li a.is-pdf .news-list-text p::after{
		margin-left: 5px;
		width:16px;
		height:16px;
	}





}