* {
	box-sizing: border-box;
}

html {
	visibility: hidden;
	animation: loading 0.5s ease-in-out 0.5s forwards;
}

body {
	font-family: "Prompt", "Noto Sans JP", sans-serif;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

picture {
	display: block;
	width: 100%;
	height: auto;
}

a {
	display: inline-block;
	transition-duration: 0.7s;
}

a:hover {
	opacity: 0.7;
}

.archive-news__block {
	padding: 80px 0 60px 0;
}

.archive-news__list {
	-moz-column-gap: 70px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 70px;
	row-gap: 50px;
	width: 100%;
}

.archive-news__link {
	display: block;
	width: 100%;
}

.archive-news__thumbnail {
	display: block;
	aspect-ratio: 27/20;
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}

.archive-news__thumbnail img {
	-o-object-fit: contain;
	-o-object-position: center;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.archive-news__date {
	display: block;
	margin-bottom: 8px;
	color: #212121;
	font-weight: 600;
	font-size: 14px;
}

.archive-news__title {
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #212121;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.6;
}

@media screen and (max-width: 1200px) {

.archive-news__block {
	padding: 5.5555555556vw 0 4.1666666667vw 0;
}

.archive-news__list {
	-moz-column-gap: 4.8611111111vw;
	column-gap: 4.8611111111vw;
	row-gap: 3.4722222222vw;
}

.archive-news__thumbnail {
	margin-bottom: 1.3888888889vw;
}

.archive-news__date {
	margin-bottom: 0.5555555556vw;
	font-size: 0.9722222222vw;
}

.archive-news__title {
	font-size: 1.1111111111vw;
}

}

@media screen and (max-width: 767px) {

.archive-news__block {
	padding: 10.6666666667vw 0 5.3333333333vw 0;
}

.archive-news__list {
	-moz-column-gap: 0;
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0;
	row-gap: 10.6666666667vw;
	margin-bottom: 10.6666666667vw;
}

.archive-news__thumbnail {
	aspect-ratio: 305/230;
	margin-bottom: 5.3333333333vw;
}

.archive-news__date {
	margin-bottom: 2.1333333333vw;
	font-size: 4vw;
}

.archive-news__title {
	font-size: 4.5333333333vw;
}

}

@keyframes loading {

0% {
	visibility: hidden;
}

100% {
	visibility: visible;
}

}

