.newsList ul{
	list-style: none;
}
.newsList li a{
	position: relative;
	line-height: 1.6;
	padding: 5px 18px 5px 0;
	border-bottom: 1px solid #DCDCDC;
	display: block;
	margin-top: 0.5em;
}
.newsList li a span{
	display: block;
}


.newsList li a:before {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	position: absolute;
	content: "";
	background-image: url(/images/arrow-g.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 8px;
	margin: auto;
	transition: all 0.3s ease;
}
.newsList li a:hover .date > p:before {
	left: 5px;
}

@media (min-width: 1000px) {
	.newsList li a {
		display: flex;
		column-gap: 15px;
		padding: 20px 0 20px 25px;
		margin-top: 0;
	}
	.newsList li a:before {
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: auto;
		position: absolute;
		content: "";
		background-image: url(/images/arrow-g.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		width: 12px;
		height: 8px;
		transition: all 0.3s ease;
	}
	
}
