@charset "utf-8";
/* CSS Document */

.container h1 {
	background-image: url(../images/title_facilities.png);
}
.container .content p {
	margin-bottom: 0;
}
.roomBtn {
	display: table;
	margin: 0 auto;
	bottom: 30px;
}
.roomBtn a {
	display: inline-block;
	text-decoration: none;
	margin: 0 15px;
	padding: 8px 0;
	font-size: 1.33rem;
	font-weight: 300;
	text-align: center;
	width: 120px;
	box-sizing: border-box;
	transition: all 0.4s;
}
a.bookingBtn {
	color: #cc8a55;
	border: 1px solid #cc8a55;
}
a.bookingBtn:hover {
	color: #fff;
	background: #cc8a55;
	transition: all 0.4s;
}
a.noticeBtn {
	color: #999;
	border: 1px solid #999;
}
a.noticeBtn:hover {
	color: #fff;
	background: #999;
	transition: all 0.4s;
}

@media screen and (max-width: 414px) {
	.roomBtn {
		display: block;
	}
	.roomBtn a {
		width: 100%;
		margin: 5px 0;
	}
}