@charset "UTF-8";


/* ========================================
24時間WEB予約 ライトボックス
======================================== */

.reservation-modal {
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s ease, visibility .3s ease;
}

.reservation-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.reservation-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .55);
}

.reservation-modal__box {
	z-index: 1;
	position: relative;
	background: #fff;
	box-sizing: border-box;
}

.reservation-modal__close {
	position: absolute;
	margin: 0;
	padding: 0;
	background: #A27439;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}

.reservation-modal__close span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background: #fff;
	transform-origin: center;
}

.reservation-modal__close span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.reservation-modal__close span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.reservation-modal__inner h2 {
	font-weight: bold;
	text-align: center;
	color: #A27439;
}

.reservation-modal__text p {
	position: relative;
	color: #777;
}

.reservation-modal__text p::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: #AD792F;
	transform: rotate(45deg);
}

.reservation-modal__tel-pc,
.reservation-modal__tel-smp {
	font-weight: bold;
	color: #A27439;
}

.reservation-modal__btns {
	display: flex;
}

.reservation-modal__btns a {
	display: block;
	background: #A27439;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	transition: .3s;
}

body.reservation-modal-open {
	overflow: hidden;
}


/*PC*/
@media only screen and (min-width: 769px) {

	.reservation-modal__box {
		width: 720px;
		min-height: 360px;
		padding: 72px 80px 68px;
	}

	.reservation-modal__close {
		top: 4px;
		right: 4px;
		width: 50px;
		height: 50px;
	}

	.reservation-modal__close span {
		width: 18px;
		height: 3px;
	}

	.reservation-modal__inner h2 {
		margin-bottom: 38px;
		font-size: 30px;
		letter-spacing: 2px;
		line-height: 1.5;
	}

	.reservation-modal__text {
		width: 100%;
		margin-bottom: 27px;
	}

	.reservation-modal__text p {
		padding-left: 24px;
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 1.7;
		letter-spacing: .5px;
	}

	.reservation-modal__text p:last-child {
		margin-bottom: 0;
	}

	.reservation-modal__text p::before {
		top: 9px;
		left: 3px;
	}

	/* PCでは電話番号はただの文字 */
	.reservation-modal__tel-pc {
		display: inline;
	}

	.reservation-modal__tel-smp {
		display: none;
	}

	.reservation-modal__btns {
		justify-content: space-between;
		gap: 18px;
	}

	.reservation-modal__btns a {
		display: block;
		width: calc((100% - 18px) / 2);
		height: 42px;
		background: #A27439;
		border: none;
		border-radius: 30px;
		font-size: 18px;
		line-height: 42px;
		letter-spacing: 1px;
		text-align: center;
		color: #fff;
		transition: opacity .3s ease;
	}

	/* 初めての方へボタンと同じように薄く */
	.reservation-modal__btns a:hover {
		opacity: .7;
	}
	
	/* ×ボタンもボタン全体を薄く */
	.reservation-modal__close {
		transition: opacity .3s ease;
	}

	.reservation-modal__close:hover {
		opacity: .7;
	}

}


/*SMP*/
@media only screen and (max-width: 768px) {

	.reservation-modal {
		padding: 20px 15px;
		box-sizing: border-box;
	}

	.reservation-modal__box {
		width: 100%;
		max-width: 690px;
		padding: 55px 20px 35px 30px;
	}

	.reservation-modal__close {
		top: 4px;
		right: 4px;
		width: 44px;
		height: 44px;
	}

	.reservation-modal__close span {
		width: 18px;
		height: 3px;
	}

	.reservation-modal__inner h2 {
		margin-bottom: 34px;
		font-size: 20px;
		letter-spacing: 1.5px;
		line-height: 1.5;
	}

	.reservation-modal__text {
		margin-bottom: 32px;
	}

	.reservation-modal__text p {
		padding-left: 20px;
		margin-bottom: 24px;
		font-size: 14px;
		line-height: 1.85;
		letter-spacing: .3px;
	}

	.reservation-modal__text p:last-child {
		margin-bottom: 0;
	}

	.reservation-modal__text p::before {
		top: 10px;
		left: 3px;
		width: 7px;
		height: 7px;
	}

	.reservation-modal__btns {
		justify-content: space-between;
		gap: 10px;
	}

	.reservation-modal__btns a {
		width: calc((100% - 10px) / 2);
		height: 52px;
		border-radius: 30px;
		font-size: 18px;
		line-height: 52px;
		letter-spacing: 1px;
	}
	
	.reservation-modal__tel-pc {
		display: none;
	}

	.reservation-modal__tel-smp {
		display: inline;
		font-weight: bold;
		color: #A27439;
	}

}