@charset "utf-8";

/* ===================================================================
CSS information
 file name  :  detail.css
 style info :  /rooms/detail.html
=================================================================== */
#rooms_detail{
}

/*** top_area ***/
#top_area{
	width:1000px;
	margin:35px auto 20px;
}

#top_area h2{
	font-size:40px;
	color:#005487;
	margin:0 0 20px;
}
#top_area h2 span{
	display:inline-block;
	vertical-align:middle;
}

#top_area h2 em{
	display:inline-block;
	font-size:24px;
	border-left:1px solid #005487;
	padding:0 0 0 15px;
	margin:0 0 0 15px;
	line-height:1.3;
	vertical-align:middle;
}

/*** text_area ***/
#text_area{
	width:1000px;
	margin:0 auto 30px;
	overflow:hidden;
}

#text_area p.text{
	float:left;
	width:730px;
	font-size:14px;
	margin:0 0 15px;
}

#text_area div.to_plan{
	float:right;
	width:230px;
	margin:0 0 15px;
}

#text_area div.to_plan a{
	display:block;
	background:rgba(189,43,59,0.8);
	color:#FFF;
	font-size:16px;
	text-align:center;
	padding:10px 0;
	border-radius:3px;
	position:relative;
}

#text_area div.to_plan a:after{
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #FFF transparent transparent transparent;
    border-image: none;
    border-style: solid;
    border-width: 5px;
    content: "";
    position: absolute;
    left: 48%;
    bottom: 0;
}

#text_area div.content_box{
	clear:both;
	border: 2px solid #005487;
	padding: 10px 20px;
	margin:0 0 20px;
}

#text_area div.content_box h3{
	font-size:16px;
	margin:0 0 10px;
}
#text_area div.content_box h3 span{
	color: rgb(158, 101, 19);
	border-bottom: 1px solid rgb(222, 205, 173);
}

#text_area div.content_box p{
	font-size:14px;
}

#text_area div.content_box p a{
	text-decoration:underline;
}

#text_area div.content_box ul{
	font-size:14px;
	padding:0 0 0 20px;
}

#text_area div.content_box ul li{
	list-style:disc outside none;
}
#text_area div.content_box ul li a{
	text-decoration:underline;
}

#text_area div.info_box{
	clear:both;
}

#text_area div.info_box table{
	width:100%;
	border-top:1px solid #d6d2c4;
	border-right:1px solid #d6d2c4;
}

#text_area div.info_box table th{
	background:#e6e3db;
	font-size:14px;
	border-bottom:1px solid #d6d2c4;
	border-left:1px solid #d6d2c4;
	padding:5px 10px;
	width:60px;
	line-height:2;
	white-space:nowrap;
}

#text_area div.info_box table td{
	font-size:14px;
	border-bottom:1px solid #d6d2c4;
	border-left:1px solid #d6d2c4;
	padding:5px;
}

/*** option_area ***/
#option_area{
	width:1000px;
	margin:0 auto 30px;
}

#option_area h2{
	font-size:18px;
	color:#FFF;
	padding:5px;
	margin:0 0 20px;
	background:linear-gradient(90deg, #005487 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
}

#option_area .option_list{
	overflow:hidden;
}

#option_area .option_box{
	float:left;
	width:310px;
	height:300px;
	margin:0 35px 0 0;
}

#option_area .last{
	margin-right:0;
}

#option_area .option_box h3{
	font-size:16px;
	font-weight:bold;
	margin:0 0 5px;
}

#option_area .option_box p{
	font-size:14px;
	line-height:1.3;
}

/*** amenity_area ***/
#amenity_area{
	width:1000px;
	margin:0 auto 30px;
}

#amenity_area .title_box{
	text-align:center;
	margin:0 0 30px;
}

#amenity_area h2{
	display:inline-block;
	text-align:center;
	border:2px solid #005487;
	border-radius:5px;
}

#amenity_area h2 span{
	display:block;
	position:relative;
	font-size:18px;
	font-weight:bold;
	color:#005487;
	border:1px solid rgba(0,84,135,0.4);
	margin:1px;
	border-radius:5px;
	padding:10px 30px;
	cursor:pointer;
}

#amenity_area h2 span:after{
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #005487 transparent transparent transparent;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    position: absolute;
    right: 14px;
    top: 48%;
}
#amenity_area h2 span.open:after{
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent transparent #005487 transparent;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    position: absolute;
    right: 14px;
    top: 30%;
}

#amenity_area #amenity_list{
	display:none;
}

#amenity_area #amenity_list table{
	width:100%;
	border-top:1px solid #d6d2c4;
}

#amenity_area #amenity_list th{
	width:160px;
	padding:0 0 0 15px;
	background:#eeece7;
	font-size:14px;
	vertical-align:middle;
	text-align:left;
	border-bottom:1px solid #d6d2c4;
}

#amenity_area #amenity_list td{
	border-bottom:1px solid #d6d2c4;
	padding:10px 5px;
}


#amenity_area #amenity_list ul{
	margin:0 0 0 20px;
}

#amenity_area #amenity_list ul li{
	list-style-type: disc;
	float:left;
	width:260px;
	font-size:12px;
	color:#005487;
	margin:0 10px 5px 0;
}

#amenity_area #amenity_list ul li span{
	color:#333;
}

#amenity_area #amenity_list ul li.note{
	clear: both;
	float: none;
	width: 100%;
	list-style-type: none;
	text-indent: -10px;
}

/*** plan_area ***/
#plan_area{
	width:1000px;
	margin:0 auto;
	position:relative;
}

#plan_area #plan_area_a{
	position:absolute;
	left:0;
	top:-50px;
}

#plan_area h2{
	font-size:18px;
	color:#FFF;
	padding:5px;
	margin:0 0 20px;
	background:linear-gradient(90deg, #005487 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, #005487 0%, rgba(255,255,255,0) 100%);
}

