@charset "UTF-8";

/* --------------- GALLARY ---------------*/
.gal_flex {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 15px 2px;
	margin-top: 2rem;
}

.gal_flex_item {
	width: 49%
}

.gal_flex_item a {
	text-decoration: none;
}

.gal_flex_item img:hover {
	filter: blur(2px);
	transition: 0.5s;
}

.thumb_ratio img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	overflow: hidden;
}

.gal-caption {
	color: #333;
	text-align: center;
	height: 3rem;
}

/***** 画面サイズ768px以上の指定 *****/
@media screen and (min-width:768px) {

	/* --------------- GALLARY ---------------*/
	.gal_flex_item {
		width: 32%
	}
}

/***** 画面サイズ960px以上の指定 *****/
@media screen and (min-width:960px) {

	/* --------------- GALLARY ---------------*/
	.gal_flex_item {
		width: 24%
	}
}