html,body {
	width:100vw;
	height:100vh;
	margin:0px;
	padding:0px;
	background:#FFDDDD;

}

.title {
	background:#FF9999;
	height:10%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1%;
}

.contents {
	padding:0px;
}

.center {
	text-align:center;
}

.titleImage {
	max-width:95vw;
	height:min(90%, 95vw * 189 / 1162);
}


table {
	width:100%;
}

.head {
	padding-top:2vh;
	font-size:4.5vw;
	text-align:center;
	font-weight: bold;
	vertical-align: bottom;
	color:#555555;
}

.room {
	padding-top:3vh;
}

.label {
	position: relative;
	padding: 0 3vw;
	background: -webkit-linear-gradient(to right, rgb(255, 130, 130) 30%, transparent);
	background: linear-gradient(to right, rgb(255, 130, 130) 30%, transparent);
}

.name {
	color:#fff;
	font-size:6vw;
}
.name-1 {
	color:#fff;
	font-size:8vw;
	font-weight: bold;
	margin-top:2px;
}
.name-2 {
	color:#fff;
	font-size:8vw;
	margin-top:2px;
}

.outline {
	font-size:5vw;
	margin-top:1vh;
	padding-left:5vw;
	color:#555555;
}

.image {
	padding-top:3vh;
}

.frame {
	display: inline-block;
	position: relative;
	width: 100%;
	text-align: center;
}
.frame:after {
	position: absolute;
	display: block;
	content: "";
	top: -1;
	left: 10%;
	width: 80%;
	height: 101%;
	box-shadow: inset 0 0 15px 15px #FFDDDD;
}

.spaImage {
	width:80%;
}

.state {
	padding-top:3vh;
	font-weight: bold;
}

.vacant {
	font-size:8vw;
	color:#CC0066;
}

.vacant-outline {
	font-size:5vw;
	color:#CC0066;
}

.used {
	font-size:8vw;
	color:#0070C0;
}

.used-outline {
	font-size:5vw;
	color:#0070C0;
}


