@charset "utf-8";

.newsList{
	max-width: 920px;
	margin: 0 auto;
}
.newsList li{
	border-bottom: dotted 2px #bec2c1;
}
.newsList li a{
	display: flex;
	font-weight: 500;
	color: #1a1a1a;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
	padding-right: 30px;
	position: relative;
	width: 100%;
}
.newsList li a::after{
	display: block;
	content: "\f0a9";
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	font-size: 2rem;
	color: #036837;
}
.newsList li a:hover{
	color: #00997b;
}
.newsList li a:hover::after{
	color: #00997b;
}

.newsList li .date{
	flex-shrink: 0;
	margin-right: 38px;
}

.newsList li .label{
	background: #f2f5f4;
	color: #036837;
	font-size: 1.4rem;
	min-width: 120px;
	line-height: 40px;
	border-radius: 20px;
	margin-right: 38px;
	text-align: center;
}
.newsList li a:hover .label{
	background: #00997b;
	color: #fff;
}

.newsList li a .ttl{
	text-align: left;
	font-weight: 500;
}

/* リンク無しの時 */
.newsList li a.notlink:hover{
	cursor: unset;
	color: inherit;
}
.newsList li a.notlink:hover .label{
	background: #f2f5f4;
	color: #036837;
}
.newsList li a.notlink::after{
	content: none;
}


.btn.js-more{
	display: block;
	appearance: none;
	margin: 40px auto 0;
}
.btn.js-more::after{
	content: "\f0ab";
}

@media screen and (max-width: 1024px){
	.newsList li .date,
	.newsList li .label{
		margin-right: 18px;
	}
}
@media screen and (max-width: 767px){
	#sec_news > .contents{
		border-radius: 20px;
		padding: 50px 20px 85px;
	}
	#sec_news .hd01{
		margin-bottom: 30px;
	}
	.newsList li a{
		flex-wrap: wrap;
		padding: 20px 0;
		padding-right: 25px;
	}
	.newsList li a::after{
		font-size: 1.5rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.newsList li .date{
		margin-right: 20px;
	}
	.newsList li a .ttl{
		margin-top: 10px;
		width: 100%;
	}
	.newsList li .label{
		font-size: 1.2rem;
		min-width: 84px;
		line-height: 30px;
		margin-right: 0;
	}
}