<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.gallery_info {
	margin-bottom: 20px;
}
.gallery_info a {
	color: #344871;
	text-decoration: underline;
}
.gallery_categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}
.gallery_categories a {
	display: block;
	padding: 5px 15px;
	color: #344871;
	border: 2px solid #344871;
}
.gallery_categories a:hover,
.gallery_categories .gallery_category_active a {
	background: #344871;
	color: #FFF;
}
.gallery_list {
	margin: 0 0 30px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.gallery_list li {
	flex-basis: 33.3%;
}
@media screen and (max-width: 880px){
	.gallery_list li {
		flex-basis: 50%;
	}
}
@media screen and (max-width: 480px){
	.gallery_list li {
		flex-basis: 100%;
	}
}

.gallery_list a:hover {
	opacity: 0.9;
}
.gallery_list figure {
	position: relative;
	display: block;
	height: 0;
	margin: 0;
	padding-top: 100%;
}
.gallery_list img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery_photo {
	width: 100%;
	max-width: 640px;
	margin: 0 auto 20px;
}
.gallery_photo img {
	width: 100%;
}

.gallery_recommend {
	margin-top: 50px;
	margin-bottom: 30px;
}
.gallery_recommend h2 {
	margin-bottom: 1em;
	text-align: center;
	font-size: 2em;
}
.gallery_recommend ul {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.gallery_recommend li {
	flex-basis: 25%;
}
@media screen and (max-width: 880px){
	.gallery_recommend li {
		flex-basis: 50%;
	}
}
.gallery_recommend a:hover {
	opacity: 0.9;
}
.gallery_recommend figure {
	position: relative;
	display: block;
	height: 0;
	margin: 0;
	padding-top: 100%;
}
.gallery_recommend img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}</pre></body></html>