/* ----------------------------------------

コスチューム

---------------------------------------- */

.costumelist {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.costumelist li {
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(176, 228, 243, 1));
	padding: 10px;
	width: 19.5%;
	box-sizing: border-box;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 10px;
	margin: 0 2px 15px 2px;
}
.costumelist li h4 {
	background-image: linear-gradient(141deg, rgba(1, 208, 179, 1), rgba(66, 130, 227, 1));
	color:#fff;
	padding: 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	margin-top: 10px;
}
.costumelist img {
	width: 100%;
	height: auto;
}


@media screen and (max-width: 1200px) {
.costumelist {
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
}
.costumelist li {
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(176, 228, 243, 1));
	padding: 10px;
	width: 48.5%;
	box-sizing: border-box;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 10px;
	margin: 0 0 10px 0;
}
.costumelist li h4 {
	background-image: linear-gradient(141deg, rgba(1, 208, 179, 1), rgba(66, 130, 227, 1));
	color:#fff;
	padding: 5px;
	box-sizing: border-box;
	font-size: 1rem;
	margin-top: 10px;
	width: 100%;
}
.costumelist img {
	width: 100%;
	height: auto;
}
}