@charset "UTF-8";
body.p-news {
	min-width: 0;
}
.news {
	font-size: 18px;
	font-weight: bold;
}
.news_list {
	list-style: none;
}
.news_list > li {}
.news_list > li:first-child {}
.news_list > li:last-child {}
.news_list > li:nth-child(2n+1) {}
.news_list > li:nth-child(n+3) {}
.news_list > li > a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.news_list > li > a::before {
	content: "";
}
.news_list > li > a::after {
	content: "";
}
.news_item {
	display: flex;
	border-bottom: 1px solid #cccccc;
	padding: 6px 0;
	align-items: center;
	line-height: 1.4;
}
.news_item::before {
	content: "";
	display: block;
	width: 1px;
	height: 54px;
	margin-right: -1px;
}
.news_date {
	display: flex;
	width: 152px;
	color: #333;
}
[data-type="new"] .news_date::after {
	content: "NEW";
	font-family: 'Poppins', sans-serif;
	width: 50px;
	height: 26px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ea5457;
	font-weight: bold;
	color: #ea5457;
	margin-left: auto;
	box-sizing: border-box;
	font-size: 14px;
}
.news_text {
	width: calc(100% - 162px);
	margin-left: auto;
}
@media (hover: hover) {
	.news_list > li > a:hover {
		color: #0cae73;
	}
}
@media screen and (max-width:745px) {
	.news {
		font-size: 16px;
	}
}
@media screen and (max-width:539px) {
	.news {}
	.news_list {
    padding-right: 20px;
}
	.news_list > li {}
	.news_list > li:first-child {}
	.news_list > li:last-child {}
	.news_list > li:nth-child(2n+1) {}
	.news_list > li:nth-child(n+3) {}
	.news_list > li > a {}
	.news_list > li > a::before {}
	.news_list > li > a::after {}
	.news_item {
		display: block;
		padding: 11px 0;
	}
	.news_item::before {
		display: none;
	}
	.news_date {
		width: auto;
		align-items: center;
	}
	[data-type="new"] .news_date::after {
		margin-left: 7px;
		width: 40px;
		height: 20px;
		font-size: 12px;
	}
	.news_text {
		width: auto;
		margin: 3px 0 0;
	}
}
