@charset "utf-8";
/*--------------------------------
アーカイブページ
--------------------------------*/
h1.en {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    line-height: 0.8;
	font-size: calc(2rem + 5vw);
	line-height: 1.5;
}

body.ev-archives{
	background-color: #07234b;
}

body.ev-archives .page-header{
	background-color: transparent;
}

body.ev-archives .page-header .page-header-inner{
	margin: 0 auto;
}

#ev-archives{
	padding-top: 1em;
}

.archive_cont {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	grid-column-gap: 0.875em;
	grid-row-gap: 0.875em;
	margin-bottom: 2em;
}

.archive_card{
	aspect-ratio: 5/3;
	overflow: hidden;
	position: relative;
}

.archive_item{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive_item:hover{
	transform: scale(1.1);
	transition: .5s all;
}

.archive_card:hover::before{
	content: "";
	background-color: rgba(0,0,0,0.4);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: .3s all;
}

.archive_card:hover::after{
	content: "\f00e";
	font-family: "Font Awesome 7 Free";
	font-weight: 600;
	font-size: 2em;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	transition: .3s all;
}

@media (min-width: 992px){
	.archive_cont {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
		gap:1.3em;
	}
}