@charset "utf-8";

header .btn {
	position: fixed;
	right: 10px;
	top: 20px;
	z-index: 1000;
}
.open-modal-btn i {
	margin-right: 0.5rem;
}
.open-modal-btn {
  display: block;
  width: 180px;
  padding: 8px 20px;
	color: #fff;
	letter-spacing: 0.05em;
  cursor: pointer;
  font-size: 20px;
	font-weight: 600;
background: linear-gradient(
  135deg,
  rgba(103, 213, 255, 0.8) 0%,
  rgba(51, 214, 186, 0.6) 100%
);
-webkit-backdrop-filter: blur(10px);
-moz-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
text-shadow: 2px 2px 6px rgba(0, 120, 200, 0.8);
	border: 1px solid #fff;
	transition: all .3s ease;
}
.open-modal-btn:hover {
margin-top: -0.5rem;
transition: all .5s ease;
}
.action .btn_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.action .open-modal-btn {
	width: 60%;
	padding: 14px 32px;
	margin-top: 0;
	transition: all .3s ease;
}
.action .open-modal-btn:hover {
background: linear-gradient(
  135deg,
  rgba(103, 213, 255, 0.3) 0%,
  rgba(51, 214, 186, 0.2) 100%
);
	border: 1px solid #FFF;
	margin-top: 0;


		text-shadow: none;
		transition: all .3s ease;
}
.reserve-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 40px 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.reserve-modal.is-active {
	opacity: 1;
	visibility: visible;
}
.modal-box {
	position: relative;
	width: min(80vw, 1120px);
	background: #fff;
	padding: 70px 70px 80px;
	box-sizing: border-box;
}
.modal-close {
	position: fixed;
	top: 0;
	right: 0;
	width: 72px;
	height: 72px;
	background: #1c171b;
	color: #fff;
	border: none;
	font-size: 48px;
	line-height: 1;
	cursor: pointer;
	z-index: 10000;
}
.modal-title {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 40px;
	color: #000;
}
.clinic-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.clinic-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	background: #b59a63;
	box-shadow:0 5px 20px rgba(0,0,0,.25);
	transition: .3s ease;
}
.clinic-link::after {
	content: "▶";
	padding-left: 2px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(120, 85, 20, 0.9);
	color: #e4ded3;
	border-radius: 50%;
	font-size: 16px;
}
.clinic-link:hover {
	opacity: 0.85;
}
@media (max-width: 768px) {
	header .btn {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		width: 100%;
	}
  header .open-modal-btn {
		box-shadow: none;
	}
	.open-modal-btn {
		width: 100%;
		height: 45px;
		font-size: 17px;
	}
	.modal-box {
		width: 92vw;
		padding: 48px 24px 56px;
	}
	.action .open-modal-btn {
		width: 100%;
		padding: 0;
		height: 50px;
	}
	.modal-title {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 28px;
	}
	.clinic-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.clinic-link {
		height: 60px;
		font-size: 20px;
	}
	.modal-close {
		width: 56px;
		height: 56px;
		font-size: 36px;
	}
}
