.contents-wrap-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}

.contents-wrap-gallery::after {
	display: block;
	content:"";
	width: 24.3%;
}

.contents-box-gallery {
	/* margin-bottom: 10px; */
	padding: 0;
	width: 15.9%;
}

.contents-box-gallery img {
	/* display: block; */
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.contents-wrap-gallery {
		flex-direction: row;
	}
	.contents-box-gallery {
		width: 48.5%;
	}
	.contents-box-gallery img {
		display: block;
		margin-bottom: -3px;
		/* width: 100%; */
		height: auto;
	}
	.contents-wrap-gallery::after {
		display: block;
		content:"";
		width: 267.3px;
	}
}

.filter {
	margin: 0;
}

@media screen and (max-width: 768px) {
	.filter {
		margin: 0;
	}
}

.filter a {
	display: inline-block;
	/* padding: 5px; */
	/* border: 2px solid #333; */
	position: relative;
	/* margin-right: 20px; */
	margin-bottom: 10px;
	font-size: .8em;
	border-radius: 5px;
}

.boxes {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
	.boxes {
		font-size: 0.7em;
	}
}

.boxes a {
	width: 19%;
	/* border: 1px solid #cccccc; */
	margin: 0 0px 12px;
	/* line-height: 60px; */
	background: #f0f0f0;
}

.all {
	/* background: khaki; */
}

.green {
	background: lightgreen;
}

.blue {
	/* background: lightblue; */
}

.red {
	/* background: lightcoral; */
}

.filter a.active:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 152px;
	height: 44px;
	border-radius: 5px;
	border-style: solid;
	border-width: 46.5px 154px 0 0;
	/* border-color: #fccc18; */
	/* opacity: 0.3; */
	border: 1px solid #221814;
}
@media screen and (max-width: 400px) {
	.filter a.active:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		display: inline-block;
		width: 144px;
		height: 42px;
		border-radius: 5px;
		border-style: solid;
		border-width: 46.5px 154px 0 0;
		/* border-color: #fccc18; */
		/* opacity: 0.3; */
		border: 1px solid #221814;
	}
}
@media screen and (min-width:400px) and (max-width:767px) {
	.filter a.active:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		display: inline-block;
		width: 161px;
		height: 47px;
		border-radius: 5px;
		border-style: solid;
		border-width: 46.5px 154px 0 0;
		/* border-color: #fccc18; */
		/* opacity: 0.3; */
		border: 1px solid #221814;
	}
}
@media screen and (min-width:768px) and (max-width:1023px) {
	.filter a.active:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		display: inline-block;
		width: 152px;
		height: 44px;
		border-radius: 5px;
		border-style: solid;
		border-width: 46.5px 154px 0 0;
		/* border-color: #fccc18; */
		/* opacity: 0.3; */
		border: 1px solid #221814;
	}
}
.is-animated {
	animation: .6s zoom-in;
}

@keyframes zoom-in {
	0% {
		transform: scale(.1);
	}
	100% {
		transform: none;
	}
}