.news-list-wrapper {
	display: block;
}

.news-box {
	display: none;
	margin: 0 auto;
	padding: 1em 0;
	width: 100%;
	border-bottom: 1px #efefef solid;
	background: #ffffff;
}

.news-box a {
	display: flex;
	width: 100%;
}

@media screen and (min-width: 801px) {
	.news-list-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: top;
		margin: 0 auto;
		padding: 3em 0 0;
		width: 100%;

		gap: 0 2%;
	}

	.news-list-wrapper:after {
		display: block;
		content: "";
		width: 49%;
		height: 0;
	}

	.news-box {
		width: 49%;
	}
}

.news-photo {
	overflow: hidden;
	min-width: 140px;
	width: min(28%, 300px);
	height: auto;
	border-radius: .5em;
}

.news-photo img {
	position: relative;
	border-radius: .5em;
	transition: .5s;

	aspect-ratio: 1 / 1;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.news-box:hover .news-photo img {
	animation: zoom-photo 1s;
}

.news-info {
	position: relative;
	padding-left: 1em;
	width: 72%;
	font-size: 16px;
	line-height: 1;
}

.flex {
	display: flex;
	margin-bottom: .25em;
}

.list-news-update {
	position: relative;
	padding: .25em 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #545454;
	vertical-align: middle;

	user-select: none;
}

.list-news-category {
	position: relative;
	margin-left: auto;
	padding: .25em 0;
	width: 5em;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #ffffff;
	text-align: center;
	vertical-align: middle;

	user-select: none;
}

.list-news-title {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 8px;
	font-size: clamp(14px, .696rem + .57vw, 18px);
	line-height: 1.3;
	font-weight: 500;
	color: #434343;
	text-align: left;

	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	user-select: none;
}

.jump .news-info:after {
	display: block;
	position: absolute;
	bottom: -.15em;
	right: 1em;
	content: "";
	width: .9em;
	height: .9em;
	background: url("/import/images/jump.svg");
	background-size: .9em;
	background-repeat: no-repeat;
}

.hide {
	display: none;
}

.selected {
	display: block;
}

@media screen and (min-width: 801px) {
	.news-info {
		padding: 0 1em 1em;
		width: 70%;
	}
}
