/* 簡単予約ボタン */
.m-btn-reserve {
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: 100;
}

@media screen and (max-width: 640px) {
	.m-btn-reserve {
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		background-color: #f0f0f0;
		padding: 10px;
	}
}

.m-btn-reserve_link {
	display: block;
	width: 180px;
	height: 89px;
	background-image: url('../images/btn_reserve_now.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
}

.m-btn-reserve_link:hover {
	text-decoration: none;
}

@media screen and (max-width: 640px) {
	.m-btn-reserve_link {
		width: 100%;
		height: 100%;
		background-image: none;
		background-color: #226db6;
		color: #fff;
		font-size: 16px;
		line-height: 1.5;
		letter-spacing: 0.05em;
		padding: 15px;
		text-align: center;
		border-radius: 10px;
	}

	.m-btn-reserve_link::after {
		content: "簡単予約30秒！今すぐ予約する";
	}
}

