.visitReserve{
	margin-top: 120px;
}

.visitReserveList {
	display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.visitReserveList li{
	width: 30%;
    margin-right: 3%;
}
.visitReserveName{
	font-size: 12px;
}
.reserve_image .soldout {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.reserve_image .soldout::after {
	content: "";
	position: absolute;
	color: #fff;
	top: -2%;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 120px;
	height: 30px;
	background: url(../img/soldout_list.png) no-repeat;
	background-size: auto;
	background-size: contain;
	background-color: #000;
}
.reserve_image .soldout::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(250,250,250,0.5);
}
@media only screen and (max-width: 1025px) {
	.reserve_image .soldout::after {
		aspect-ratio: 16 / 4;
		width: 55%;
		height: auto;
		top: -3%;
	}
}
@media only screen and (max-width: 750px) {
	.visitReserve{
		margin-top: 15px;
	}
	.visitReserveList li{
		width: 49%;
		margin-right: 1%;
	}
	.visitReserveName{
		padding-left: 9px;
	}
	.reserve_image .soldout::after {
		width: 40%;
	}
}