/* ----------------------------------------
// バレー 新着トピックスリンク部分CSS（Sassは使っていないです）
// 使用ページ：
// ・2024年以降のインフォメーション＞トピックス複数ページ
// ----------------------------------------*/
@charset "UTF-8";

.newTopicsListArea{
	margin-bottom: 100px;
	margin-top: 20px;
	padding-top: 50px;
	border-top: 1px solid #e3ebe8;
}

@media (max-width: 767px) {
	.newTopicsListArea{
		margin-bottom: 5vw;
		margin-top: 3vw;
		padding-top: 10vw;
	}
}

.newTopicsList {
	padding: 20px 30px;
	background-color: #c2ded6;
}

@media (max-width: 767px) {
	.newTopicsList {
		padding: 3.9vw 0;
		background-color: transparent;
	}
}

@media (max-width: 767px) {
	.newTopicsList .row li:nth-child(odd) {
		background-color: #c2ded6;
	}
}

.newTopicsList .row [class^='_col'] {
	margin-bottom: 0;
}

.newTopicsList .row [class^='_col'] a {
	display: -webkit-flex;
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
	text-decoration: none;
	position: relative;
}

@media (max-width: 767px) {
	.newTopicsList .row [class^='_col'] a {
		padding: 3.9vw;
	}
}

.newTopicsList .row [class^='_col'] a span.txtNewTopics {
	display: block;
	box-sizing: border-box;
	padding-left: 20px;
	width: 64%;
}

@media (max-width: 767px) {
	.newTopicsList .row [class^='_col'] a span.txtNewTopics {
		line-height: 1.5;
		width: 60%;
		padding-left: 2.5vw;
		font-size: 3.5vw;
	}
}

.newTopicsList .row [class^='_col'] a span.imgNewTopics {
	width: 36%;
}

@media (max-width: 767px) {
	.newTopicsList .row [class^='_col'] a span.imgNewTopics {
		width: 40%;
	}
}

.newTopicsList .row [class^='_col'] a span.imgNewTopics img {
	clip-path: inset(0px round 10px);
}

.newTopicsList .row [class^='_col'] a::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	right: 0;
	bottom: 12px;
	background-image: url(/assets/img/component/icon_anime_arrow_black.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center 0;
}

@media (max-width: 767px) {
	.newTopicsList .row [class^='_col'] a::after {
		right: 3vw;
	}
}

@media (min-width: 768px) {
	.newTopicsList .row [class^='_col'] a:hover::after {
		animation: vtopic-arrow-txt 0.3s steps(9) forwards;
	}
}

@keyframes vtopic-arrow-txt {
	0% {
	  background-position: center 0;
	}
	100% {
	  background-position: center -180px;
	}
}