@charset "UTF-8";
figure.seating {
	text-align: center;
}
.seating img {
	width: 100%;
	height: auto;
}
.modal_display {
	position: relative;
}
.modal_display::after {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0008;
	content: '';
	top: 0;
	left: 0;
	z-index: 120;
}
.modal {
	display: none;
	min-height: 100vh;
	min-height: 100svh;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.modal_area {
	width: calc(100% - var(--x-margin) * 2);
	max-width: 920px;
	position: fixed;
	top: 50vh;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
.modal_close {
	width: 125px;
	height: 50px;
	display: flex;
	align-items: center;
	margin-left:auto;
	color: var(--white);
	position: relative;
	text-align: left;
	font-size: 18px;
	padding: 0;
	background: transparent;
	margin-bottom:10px;
}
.modal_close::after, .modal_close::before {
	position: absolute;
	content: '';
	top: calc(50% - 1px);
	right: 0;
	width: 63px;
	height: 2px;
	background-color: var(--white);
}
.modal_close::before {
	transform: rotate(45deg);
}
.modal_close::after {
	transform: rotate(-45deg);
}
.modal_content {
	background-color: var(--white);
	padding: 40px 45px;
}