@charset "utf-8";
/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
.newsLists{
	display: flex;
	flex-wrap: wrap;
	gap: min(calc(16 / var(--vw-min) * 100vw), 16px);
}
.newsList{
	width: 100%;
}
.newsList__link{
	display: block;
	position: relative;
	text-decoration: none;
	color: var(--color-black);
	background-color: var(--color-white);
	display: flex;
}
.newsList__link:before{
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-top: 1px solid var(--color-black);
	border-bottom: 1px solid var(--color-black);
}
.newsList__thumb{
	width: min(calc(214 / var(--vw-min) * 100vw), calc(214px * var(--max-percent)));
	flex-shrink: 0;
	position: relative;
}
.newsList__thumbImg{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.newsList__thumb--bg{
	position: absolute;
	inset: 0;
}
.newsList__thumb--main{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.newsList__thumb--bg img,
.newsList__thumb--main img{
	width: 100%;
	height: 100%;
}
.newsList__thumb--bg img{
	object-fit: cover;
	filter: blur(4px);
}
.newsList__thumb--main img{
	position: absolute;
	inset: 0;
	object-fit: contain;
}
.newsList__text{
	width: 100%;
	padding: min(calc(26 / var(--vw-min) * 100vw), 26px);
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.newsList__date{
	display: block;
	font-family: var(--font-en);
	line-height: 1;
	color: #888;
	margin-bottom: min(calc(12 / var(--vw-min) * 100vw), 12px);
}
@media screen and (max-width:768px){
	.newsLists{
		gap: calc(24 / var(--vw-min) * 100vw);	
	}
	.newsList__link:before{
		border-width: max(calc(2 / var(--vw-min) * 100vw), 1px);
	}
	.newsList__thumb{
		width: calc(270 / var(--vw-min) * 100vw);
	}
	.newsList__text{
		padding: calc(20 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw);
	}
	.newsList__date{
		margin-bottom: calc(18 / var(--vw-min) * 100vw);
	}
}

@media screen and (hover:hover) and (pointer: fine){
	.newsList__link{
		transition: color .3s ease;
	}
	.newsList__link:hover{
		color: var(--color-blue);
	}
	.newsList__text span{
		background: linear-gradient(var(--color-blue), var(--color-blue)) right bottom / 0 2px no-repeat;
		transition: background-size .6s ease;
	}
	.newsList__link:hover .newsList__text span {
		background-size: 100% 2px;
		background-position: left bottom;
	}

	.newsList__thumb--main{
		transition: transform .3s ease;
	}
	.newsList__link:hover .newsList__thumb--main{
		transform: scale(105%);
	}
}