@charset "UTF-8";
/*---------------　展示場*/
.photo {
	position: relative;
	overflow: hidden;
}

.photo .e_box {
	width: 100%;
	margin-bottom: 10px;
}
.photo .e_box a {
	display: block;
	width: 100%;
	padding-top: 30%;
	min-height: 360px;
	position: relative;
	overflow: hidden;
}
.photo .e_box a::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,82,150,0.3);
	position: absolute;
	left: 0;
	top: 0;
}
.photo .e_box a img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
	transition: .3s;
}
.photo .e_box a:hover img {
	transform: scale(1.05);
}
.photo .e_box a .e_name {
	font-size: 3.6rem;
	font-weight: 600;
	letter-spacing: 3px;
	line-height: 1;
	text-shadow: 0 0 10px #000000;
	color: #ffffff;
	width: 90%;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.photo .e_box a {
		padding-top: 35%;
	}
	.photo .e_box a .e_name {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 480px) {
	.photo .e_box a {
		min-height: unset;
		padding-top: 75%;
	}
	.photo .e_box a .e_name {
		font-size: 2rem;
	}
}

.photo .catch {
	color: #1e73be;
	margin-bottom: 1em;
}
.photo .text_click {
	text-align: center;
	margin-bottom: 2em;
}
.photo_item_wrap {
	display: flex;
	flex-wrap: wrap;
}
.photo_item_wrap .photo_item {
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 2%;
}
.photo_item_wrap .photo_item:nth-child(4n) {
	margin-right: 0;
}
.photo_item_wrap .photo_item .photo_item_inner {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.photo_item_wrap .photo_item .photo_item_inner.photo_horizontal {
	aspect-ratio: 4 / 3;
}
.photo_item_wrap .photo_item .photo_item_inner.photo_vertical {
	aspect-ratio: 3 / 4;
}
.photo_item_wrap .photo_item .photo_item_inner img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
}
.photo .btn_link {
	width: 290px;
	margin: 2em auto 0;
}
@media screen and (max-width: 768px) {
	.photo_item_wrap {
		justify-content: space-between;
	}
	.photo_item_wrap .photo_item,
	.photo_item_wrap .photo_item:nth-child(4n) {
		width: 48.5%;
		margin-right: 0;
		margin-bottom: 3%;
	}
}
