@charset "utf-8";
@keyframes scroll-newstext {
	from {
		background-position:0 center;
	}
	to {
		background-position:314px center;
	}
}
@keyframes scroll-newstext-s {
	from {
		background-position:0 center;
	}
	to {
		background-position:50.24vw center;
	}
}
.content__title {
	height:160px;
	background:#d84f7c url(../img/news/title.svg) repeat-x 0 center / 314px auto;
	animation: color-gradient 7.5s linear infinite,scroll-newstext 6s linear infinite;
}
@media screen and (max-width:768px){
	.content__title {
		height:25.6vw;
		background:#d84f7c url(../img/news/title.svg) repeat-x 0 center / 50.24vw auto;
		animation: color-gradient 7.5s linear infinite,scroll-newstext-s 6s linear infinite;
	}
}
.news__lists {
	width:100%;
	min-height:408px;
	display: flex;
	flex-wrap: wrap;
	border-bottom:1px solid #000;
	margin-top:-1px;
	background:#FFF;
}
.news__lists li {
	width:25%;
	min-height:408px;
	border-bottom:1px solid #000;
	transform:translateY(1px);
}

.news__lists li>a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height:100%;
	padding:13.3333%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
.news__lists li>a:hover {
	color:#FFF;
}
.news__lists li>a i {
	content:'';
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	animation: nav-out 0.4s ease forwards;
	display: block;
}
.news__lists li>a:hover i {
	animation: nav-in 0.4s ease forwards;
}
.news__lists li>a i:before {
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:#d84f7c;
	animation: color-gradient 7.5s linear infinite;
}
.news__lists--thumb {
	padding-top:100%;
	position: relative;
	margin-bottom:15px;
	background:url(../img/common/noimage.svg) no-repeat center center / cover;
	position: relative;
	z-index:10;
}
.news__lists--thumb img {
	display: block;
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit: cover;
}
.news__lists--title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	z-index:10;
	position: relative;
	transition:all 0.4s ease;
}
.news__lists li a time {
	text-align: right;
	line-height:2;
	padding-top:10px;
	transform: translateY(8px);
	z-index:10;
	position: relative;
	transition:all 0.3s ease;
}
.pink {
	color:#d84f7c;
}
@media screen and (max-width:768px){
	.news__lists {
		width:100%;
		flex-wrap: wrap;
		background:#FFF;
		min-height:0;
	}
	.news__lists li {
		width:50%;
		min-height:0;
		border-right:1px solid rgba(0,0,0,.16) !important;
		border-bottom:1px solid rgba(0,0,0,.16) !important;
	}
	.news__lists li:nth-child(even) {
		border-right:none !important;
	}
	.news__lists--thumb {
		margin-bottom:2.2vw;
	}
	.news__lists--title {
		-webkit-line-clamp:3;
		transition:all 0.4s ease;
		font-size:1.2rem;
	}
	.news__lists li a time {
		font-size:1.2rem;
	}
}