
/* CSS Document */

/*==================================================

contents
=================================================*/

.top-news {
	width: 90%;
	max-width: 1000px;
	margin: min(12%, 100px) auto;
}
.top-news .button {
	margin: 0 0 0 auto;
}
.top-news .item {
	width: 100%;
	background-color: #fff;
	border-radius: 20px;
	margin: min(5%, 40px) auto;
}
.top-news .item ul {
	width: 85%;
	margin: 0 auto;
	padding: 1em 0;
}
.top-news .item .news-inner {
	width: 85%;
	margin: 0 auto;
	padding: 2.5em 0;
}

.top-news .item ul li {
	border-bottom: 1px solid #b2cad9;
}
.top-news .item ul li:nth-last-of-type(1) {
	border-bottom: none;
}
.top-news .item ul li .date {
	font-size: clamp(1.2rem, 1.6vw, 1.6rem);
	color: #b2cad9;
	font-weight: 500;
	margin-bottom: .5em;
}
.top-news .item ul li p {
	font-size: clamp(1.2rem, 1.8vw, 1.8rem);
	line-height: 160%;
	font-weight: 600;
}
.top-news .item ul li a {
	display: block;
	position: relative;
	color: #005082;
	text-decoration: none;
	padding: 1.8em 15% 1.8em 1em;
}
.top-news .item ul li a::after {
	content: " ";
	display: block;
	position: absolute;
	width: 9%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: #005082;
	background-image: url("../../images/arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12%;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	border-radius: 50%;
	z-index: 1;
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
	.top-news .button {
		margin: 0 auto;
	}
	
	.top-news .item ul li a::after {
		background-size: 18%;
	}
	
}

@media only screen and (min-width:1px) and (max-width: 568px) {
	

}
	
@media only screen and (min-width:1px) and (max-width: 480px) {
	

}

