@charset "utf-8";

/* =========================================================
   ネット予約ボタン（画像 order_5-2026.png のテキスト版）
   ※既存サイトは px ベース（rem リセット無し）のため px で記述
   ========================================================= */
.reserve-btn {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
	padding: 20px 24px;
	border-radius: 8px;
	background-color: #2670a8;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.2s;
}
.reserve-btn:hover {
	background-color: #1f5f90;
	color: #fff;
	text-decoration: none;
}
.reserve-btn__main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	font-size: 32px;
	line-height: 1.3;
	font-weight: bold;
	letter-spacing: 0.04em;
}
.reserve-btn__arrow {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
}
.reserve-btn__note {
	display: block;
	margin-top: 8px;
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	font-weight: normal;
	letter-spacing: 0.02em;
}
.reserve-btn__em {
	font-size: 1.2em;
	font-weight: bold;
}

@media screen and (max-width: 500px) {
	.reserve-btn {
		padding: 16px 16px;
		border-radius: 6px;
	}
	.reserve-btn__main {
		gap: 8px;
		font-size: 22px;
	}
	.reserve-btn__arrow {
		width: 24px;
		height: 24px;
	}
	.reserve-btn__note {
		font-size: 13px;
		text-align: left;
	}
}
