@charset "utf-8";
/* CSS Document */
html,body{
    width: 100%;
	height: 100%;
}

body {
	font-family: "Noto Sans JP";
	line-height:200%;
	font-size:14px;
	margin:0;
	position: relative;
	min-width: 1280px;
	}

pre {
	font-size: 1.25em;
	}

a{
	color:#333333;
    text-decoration: none;
	}

a:hover{
	color:#2e3f2a;
	text-decoration:underline;
	}

img {
	border:0;
	margin:0;
	padding:0;
	vertical-align:middle;
	}
a img{
    -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
      opacity: 1;
}
a img:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.70;
    opacity: 0.70;
}

p {
	margin:0;
	padding:0;
	}

ul {
	list-style-type: none;
	}

form {
	margin:0;
	padding:0;
	}

table {
	border-collapse:collapse;
	}

input{	vertical-align:middle;	}

button{ vertical-align:middle;	}

.pagetop {
	margin:0;
	padding:20px 0 0;
	text-align:right;
	clear:both;
	}

.fbox {
	overflow:hidden;
	}

#titleImg {
    height: 350px;
    overflow: hidden;
    position: relative;
}

#titleImg img {
    left: 50%;
    margin-left: -700px;
    position: absolute;
}

.al-center{
	text-align:center;
	padding:50px 0;}

/*----- パララックス -----*/
.cd-fixed-bg {     
min-height: 180px;
background-attachment: fixed;     
background-repeat: no-repeat;     
background-position: left bottom;
margin-top: 3020px;
background-size: cover;
}

.clear { clear: both; }

.mrgT5 { margin-top: 5px; }
.mrgT10 { margin-top: 10px; }
.mrgT15 { margin-top: 15px; }
.mrgT20 { margin-top: 20px; }
.mrgT25 { margin-top: 25px; }
.mrgT30 { margin-top: 30px; }
.mrgT40 { margin-top: 40px; }
.mrgT50 { margin-top: 50px; }
.mrgT60 { margin-top: 60px; }
.mrgT70 { margin-top: 70px; }
.mrgB5 { margin-bottom: 5px;}
.mrgB10 { margin-bottom: 10px; }
.mrgB15 { margin-bottom: 15px; }
.mrgB20 { margin-bottom: 20px; }
.mrgB25 { margin-bottom: 25px; }
.mrgB30 { margin-bottom: 30px; }
.mrgB40 { margin-bottom: 40px; }
.mrgB50 { margin-bottom: 50px; }
.mrgB60 { margin-bottom: 60px; }
.mrgB70 { margin-bottom: 70px; }

.floatL { float: left; }
.floatR { float: right; }
.fontBold { font-weight: bold; }
.alignC { text-align:center; }
.alignR { text-align:right; }
.alignL { text-align:left; }

.f12{
	font-size: 12px;
}
.f14{
	font-size: 14px;
}
.f16{
	font-size: 16px;
}
.f18{
	font-size: 18px;
}
.f20{
	font-size: 20px;
}
.f24{
	font-size: 24px;
}
.f28{
	font-size: 28px;
}
.f32{
	font-size: 32px;
}
.brown{
    color: #622300;
}
.red{
    color: #a72604;
}
.mincho {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.lead{
    line-height: 2.0;
}

/* clearfix */
.clearfix:after { content: "."; display: block; clear: both; height: 0; visibility: hidden; }
.clearfix { min-height: 1px; }
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}



#container{
    overflow: hidden;
}


/*------------------------------------------------------

	colWrap

------------------------------------------------------*/
.colWrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.colWrap .col2-1 {
	width: -webkit-calc( 50% - 24px );
	width: calc( 50% - 24px );
}
.colWrap .col3-1 {
	width: -webkit-calc( 100% / 3 - 10px );
    width: calc( 100% / 3 - 10px );
}
.colWrap .col3-2 {
	width: -webkit-calc( (100% / 3)*2 - 20px );
	width: calc( (100% / 3)*2 - 20px );
}
.colWrap .col4-1 {
    width: 25%;
}
.colWrap img {
    width: auto;
    max-width: 100%;
}


/*全体*/
section{
    width: 100%;
	overflow: hidden;
}
section .inner{
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

/*共通パーツ*/
header{
	background-image:url(../img/common/bg_header.png);
	background-position:bottom left;
	background-repeat:repeat-x;
    height: 80px;
    position: fixed;
    z-index: 999;
    width: 100%;
	min-width: 1280px;
    display: flex;
    align-items: center;
	padding:0;
}
header h1{
    display: inline-flex;
    justify-content: flex-start;
    padding: 0 0 0 40px;
	margin-top:-12px;
}

header h1 img{
	width:80%;}


header nav{
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    padding-right: 10px;
	margin-top:-12px;
}
header nav ul li a{
    text-decoration: none;
    color: #630;
    position: relative;
}
header nav ul li a:hover{
    color:#630;
    text-decoration: none;
}
header nav ul li a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background:#630;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
a:hover::after {
  transform: scale(1, 1);
}
header nav ul li.current{
    border-bottom: 1px solid #630;
}
header nav ul li{
    float: left;
	letter-spacing:1px;
	font-weight:bold;
	margin-top:5px;
    margin-right: 20px;
    font-size: 16px;
}

footer{
    width: 100%;
	background-image:url(../img/common/bg_footer.png);
	background-repeat:repeat-x;
    position: relative;
    height: 390px;
	margin-top:-20px;
}
#top footer{
	height: 510px;
	background-size: cover;
}
footer .foot_inner{
    padding: 25px 0 0;
    color: #fff;
}
footer .toTop{
	text-align: center;
}
footer .info{
    color: #fff;
    text-align: center;
    margin-top: 30px;
}
footer .info .f_logo{
    padding-left: 70px;
    margin-bottom: 20px;
}

footer .menu:after{
    content: ' ';
    clear: both;
    display: block;
}
footer .menu{
    display: table;
    margin: 20px auto 0;
}
footer .menu ul li{
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
}
footer .menu ul li:last-child{
    margin-right: 0;
}
footer .menu ul li a{
    color: #fff;
    text-decoration: none;
}
footer address{
    color: #fff;
    font-style: normal;
    position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
}
footer .f_bn{
    position: absolute;
    bottom:80px;
    right: 0;
}
footer .f_bn li{
    float: left;
    margin: 0 15px;
}

#mainImg {
	width: 100%;
	height: 1000px;
	position: relative;
	overflow: hidden;
	margin: 0;
}
#mainImg video {
	min-width: 100%;
	min-height: calc(100vh - 120px);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
	z-index: 1;
}

/*社内タブレットに合わせる為*/
@media screen and (max-width: 1280px) {
	#mainImg {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding-bottom: 54%;
	}
#mainImg video {
	height: auto;
	width: 100%;
	min-height: auto;
	position: absolute;
	z-index: 1;
}
}
#mainImg .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
}
#mainImg .scroll {
	position: absolute;
	bottom: 1%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
}


/*TOP*/
#top section h2{
    text-align: center;
    margin-bottom: 50px;
}
#top section h2.t_facebook{
    margin-top:50px;
}
#top .sec001 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
}
#top .sec001 ul li{
    width: 33.333%;
    position: relative;
}
#top .sec001 ul li .txt_box{
    position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
    text-align: center;
    color: #fff;
    width: 100%;
}
#top .sec001 ul li figure{
    overflow: hidden;
}
#top .sec001 ul li figure img{
    width: 100%;
    height: auto;
    display: block;
	transition-duration: 0.3s;
}
#top .sec001 ul li figure img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.7s;	/*変化に掛かる時間*/
}
#top .sec002{
    background: url(../img/top/bg_sec001.jpg) no-repeat center bottom;
    background-size:contain;
    padding-bottom: 400px;
}
#top .sec004{
    background: url(../img/top/bg_sec003.jpg) no-repeat;
    background-size: cover;
}
#top .sec004 ul li{
    padding-bottom: 10px;
    border-bottom: 1px dotted #090909;
    margin-bottom: 20px;
}
#top .sec004 .inner{
    width: 700px;
}
.qr{
	display: table;
	padding-bottom: 15px;
}
.qr img{
clear: both;
} 
.qr a{
	float:right;
	color:#FFFFFF;
	padding-left: 10px;
	padding-top: 20px;
	border-bottom: none;
	text-decoration: none;
	line-height: 1.7em;
}
.qr a:hover{
	opacity:0.6;
	text-decoration: underline;
}
/*** SP_QR
*********************************************************************/
.sp_qr{
	font-size: 14px;
	text-align: center;
	margin-top: 15px;
}
.sp_qr img{
	border: solid 1px #000;
}
.sp_qr p{
	text-align: center;
	line-height: 15px;
	margin-top: 5px;
}
.sp_qr a{
	color: #fff;
}

.facebook{
	text-align: center;
	width:700px;
}
.blog{
	margin-top: 20px;
}
.blog a{
	display:table;
}
.blog a:hover{
	opacity:0.6;
}
.blog img{
	box-shadow: 2px 2px 4px -2px gray;
}
/*下階層共通*/
#local #mainImg{
    height: 400px;
    position: relative;
}
#local h2{
    background-size: cover;
    height: 470px;
    position: relative;
}
#local h2 p{
    position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
}
#local section h3{
    text-align: center;
    margin-bottom: 50px;
}
#local section table{
    width: 100%;
}
#local section table tr th{
    font-weight: bold;
    padding: 15px;
    background: #e7e7e7;
    border: 1px solid #adadad;
    width: 25%;
    vertical-align: middle;
}
#local section table tr td{
    padding: 15px;
    border: 1px solid #adadad;
    background: #fff;
}

/*天然温泉*/
.spa_h2{
    background:url(../img/spa/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}

.cuisine_h2{
    background:url(../img/cuisine/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}


.facil_h2{
    background:url(../img/facil/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}


.reserv_h2{
    background:url(../img/reserv/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}


.access_h2{
    background:url(../img/access/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}


.spa_h2{
    background:url(../img/spa/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}



#local .spa .sec002{
    background: url(../img/spa/bg_sec002.jpg) no-repeat;
    background-size: cover;
}
.simply-scroll-container {
    position: relative;
}
.simply-scroll-clip {
    position: relative;
    overflow: hidden;
}
.simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.simply-scroll-list li img {
    display: block;
}
#scroller{
   margin-left: calc(((100vw - 100%) / 2) * -1);
margin-right: calc(((100vw - 100%) / 2) * -1);
}
#scroller02{
   margin-left: calc(((100vw - 100%) / 2) * -1);
margin-right: calc(((100vw - 100%) / 2) * -1);
}
.simply-scroll-container {
    position: relative;
}

.simply-scroll-clip {
    position: relative;
    overflow: hidden;
}

.simply-scroll-list {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.simply-scroll-list li {
    float: left;
    width: 226px;
    height: 226px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}
.simply-scroll-list li img{
    width: 300px;
    height: 200px;
   object-fit: cover;
    font-family: 'object-fit: cover;'
}
.spa_sec004{
}

.spa_sec005{
    background: url(../img/spa/bg_sec002.jpg) no-repeat;
    background-size: cover;
}

.spa_sec0055{
    background: url(../img/facil/bg_sec002.jpg) no-repeat;
    background-size: cover;
}

.cuisine_sec0055{
    background: url(../img/cuisine/bg_sec002.jpg) no-repeat;
    background-size: cover;
}

.cuisine_sec004{
	background: url(../img/cuisine/bg_sec003.jpg) no-repeat;
    background-size: cover;
}

.spa_sec00555{
    background: url(../img/facil/bg_sec003.jpg) no-repeat;
    background-size: cover;
}

.access_sec005{
    background:url(../img/top/bg_contents2-2.png);
	background-repeat:repeat;
    background-size: cover;
}

.spa_sec003{
    background: url(../img/spa/bg_sec003.jpg) no-repeat;
    background-size: cover;
}

.wrap1000{
	width:1000px;
	margin:0 auto;}

.page_subtitle{
	text-align:center;
	padding-bottom:20px;}

.spa_mov{
	width:1000px;
	margin:30px auto;}


/*料理*/


.cuisine_h2{
    background:url(../img/cuisine/bg_h2_spa.jpg) no-repeat;
    background-size: cover;
	background-color:#000;
}


#local .cuisine .wrap{
    position: relative;
}
#local .cuisine .sec001 .box{
    background: #fff;
    padding: 30px;
    position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
    text-align: center;
    width: 41%;
}
#local .cuisine .sec001 figure{
    text-align: right;
}
#local .cuisine .photolist{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:center;
}
#local .cuisine .photolist li{
   width: calc(20% - 6px);
    margin-bottom: 6px;
    margin-right:6px ;
    overflow: hidden;
}
#local .cuisine .photolist li img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}
#local .cuisine .sec002 .box{
    background: #fff;
    padding: 30px;
    position: absolute;
  top: 50%;
    right: 0;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
    text-align: center;
    width: 40%;
}
#local .cuisine .sec002 figure{
    text-align: left;
}
#local .cuisine .sec003 .box{
    background: #fff;
    padding: 30px;
    position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
    text-align: center;
    width: 40%;
}
#local .cuisine .sec003 figure{
    text-align: right;
}
#local .cuisine .sec004 .box{
    background: #fff;
    padding: 30px;
    position: absolute;
  top: 50%;
    right: 0;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
    text-align: center;
    width: 40%;
}
#local .cuisine .sec004 figure{
    text-align: left;
}

/*館内・客室*/
#local .room h2{
    background: url(../img/room/bg_h2.jpg) no-repeat;
    background-size: cover;
}
#local .room .photolist{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:center;
}
#local .room .photolist li{
   width: calc(20% - 6px);
    margin-bottom: 6px;
    margin-right:6px ;
    overflow: hidden;
}
#local .room .photolist li img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}
#local .room .sec002{
    background: url(../img/room/bg_sec002.jpg) no-repeat;
    background-size: cover;
}
#local .room .sec002 figure img{
    width: 50%;
}
#local .room .sec003 figure img{
    width: 50%;
}
#local .room .sec004{
    background: url(../img/room/bg_sec004.jpg) no-repeat;
    background-size: cover;
}

/*周辺観光*/
#local .tourism h2{
    background: url(../img/tourism/bg_h2.jpg) no-repeat;
    background-size: cover;
}
#local .tourism section h3{
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
    padding:10px 0 10px 50px;
    background: url(../img/tourism/ico_h3.png) no-repeat left center;
    font-size: 18px;
}
#local .tourism section .banner ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:center;
}
#local .tourism section .banner ul li{
    margin: 0 15px;
}

/*アクセス*/
#local .access h2{
    background: url(../img/access/bg_h2.jpg) no-repeat;
    background-size: cover;
}
#local .access h3{
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px dotted #2e3f2a;
    padding-bottom: 10px;
}
#local .access .sec002 dl dt{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/*料金・予約*/
#local .reserve h2{
    background: url(../img/reserve/bg_h2.jpg) no-repeat;
    background-size: cover;
}
#local .reserve section h3{
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
    padding:10px 0 10px 50px;
    background: url(../img/tourism/ico_h3.png) no-repeat left center;
    font-size: 18px;
}

.fee_txt{
	background-color:#FFB84F;
	font-size: 1.1em;
	letter-spacing: 0.08em;
	display: table;
	margin:0 auto 20px;
	padding: 3px 20px 5px;
	border-radius: 30px;
}



/********************************************/

.top_plan_l{
	width:210px;
	float:left;}

.top_plan_l img{
	width:100%;}

.top_plan_r{
	width:320px;
	float:right;
	padding:15px 0 0 0;}

.top_plan_r02{
	width:370px;
	float:right;
	padding:15px 0 0 0;}



.top_plan_r3{
	width:300px;
	float:right;
	padding:15px 0 0 0;}




.top_plan_l2{
	width: 280px;
	float: left;
	background-image: url(../img/top/bg_serchplan.png);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 350px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.top_plan_r2{
	width:260px;
	float:right;
	padding:30px 0 0 0;}

.top_bg_facebook{
	background-image:url(../img/top/bg_contents2-2.png);
	background-position:top;
	background-repeat:repeat;}

.footer_linkbtn{
	text-align:right;}

.footer_linkbtn img{
	margin:0 15px;}

.top_l{
	width:520px;
	float:left;}

.top_r{
	width:550px;
	float:right;
	padding:10px 0 0 0;}


.wrap_fb{
	width:1100px;
	margin:0 auto;
	padding:30px 0;}

.plan_p1{
	background-image:url(../img/common/bg_footer.png);
	background-repeat:repeat-x;
	background-position:center;
	color:#FFF;
	font-size:16px;
	padding:5px;
	margin:0 0 10px 0;}

.plan_p2{
	margin:-10px 0 0 0;
	font-size:14px;
	line-height:25px;}
	

/************/

.access_l{
	width:480px;
	float:left;}

.access_r{
	width:480px;
	float:right;}

.access_title{
	padding:40px 0 5px 0;
	border-bottom:1px dotted #999;
	margin-bottom:10px;}
	
.access_p1{
	font-size:15px;
	letter-spacing:1px;
	line-height:23px;
	padding:0 0 15px 15px;}

.access_p1 span{
	font-size:16px;
	font-weight:bold;
	color:#960;}


.sight_p1{
	background-image:url(../img/access/bg_title.png);
	background-position:left;
	background-repeat:no-repeat;
	font-size:24px;
	font-weight:bold;
	letter-spacing:2px;
	color:#630;
	padding:10px 0 10px 30px;
	margin-top:40px;}

.sight_p2{
	width:640px;
	float:left;
	font-size:15px;
	line-height:28px;}

.sight_img{
	width:325px;
	float:right;}

.sight_img img{
	width:100%;}

/*************************/

.reserv_p1{
	font-size:16px;
	letter-spacing:1px;
	color:#333;
	padding:10px 0 30px 0;}


.reserv_p2{
	font-size:16px;
	letter-spacing:1px;
	line-height:32px;
	color:#333;}
	

.reserv_p1aka{
	font-size:16px;
	letter-spacing:1px;
	color:#900;
	padding:10px 0 30px 0;}

.dish_slide {
	width: 900px;
	margin: 0 auto;
}

.bxslider {}

.bx-pager,
.bx-pager_c {
	width: 100%;
	padding: 0;
	text-align: center;
}

.bx-pager img {
	width: 20%;
	margin: 8px 4px;
}

.bx-pager_c img {
	width: 13%;
	margin: 8px 2px;
}

.room_l{
	width:320px;
	float:left;
	padding:0 0 0 50px;}

.room_r{
	width:600px;
	float:right;}

.bxslider{}

.bx-pager{ width:100%; padding:0; text-align:center;}
.bx-pager img{width:12%; margin:5px;}

.bx-pager2{ width:100%; padding:0; text-align:center;}
.bx-pager2 img{
	width:15%;
	margin-top: 5px;
	margin-right: 1px;
	margin-bottom: 2px;
	margin-left: 1px;}
	
.bx-wrapper .bx-caption{
	font-family:"Sawarabi Mincho";
	text-align:center;
	color:#E1D29D;
	font-size:20px;
	font-weight:bold;
	letter-spacing:2px;
	margin:15px 0 20px 0;}

.bx-wrapper .bx-caption small{
	font-family:"Sawarabi Mincho";
	color:#FFF;
	font-size:14px;
	font-weight:normal;
	letter-spacing:normal;}


.dish_slide2{
	width:790px;
	margin:0 auto;}

.cuisine_p1{
	font-size:16px;
	letter-spacing:1px;
	text-align:center;
	padding:0 0 50px 0;
	line-height:32px;}

.cuisinebox{
	background-image:url(../img/cuisine/bg1.png);
	background-repeat:no-repeat;
	background-position:bottom center;}

.sake_l{
	width:320px;
	float:left;}

.sake_r{
	width:680px;
	float:right;
	text-align:center;}



/*******************/

.room_box{
	background-image:url(../img/facil/bg1.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size: cover;
	padding:50px 50px;
	width:420px;
	height:300px;
	margin:0 auto;}

.room_box_p1{
	font-size:16px;
	letter-spacing:2px;
	color:#333;}

.room_box_p2{
	font-size:16px;
	letter-spacing:2px;
	color:#900;
	padding:10px 0 0 0;}

.room_txt{
	width: 920px;
	margin: 0 auto 70px!important;
	border-bottom:2px dotted hsla(36,100%,50%,0.40);
	height:120px;
}
.room_txt p{
	padding-left: 20px;
	display:table;
	width:600px;
}
.room_t{
	margin: 0 auto 10px!important;
	font-weight: bold;
	font-size: 2.1em;
	background-color:hsla(36,100%,50%,0.50);
	padding: 20px 10px;
	border-radius: 8px;
	width: 200px;
	height:70px;
	float: left;
	line-height: 1.2em;
	color: #472301;
}
.room_t span{
	font-size: 0.5em;
	background-color: #FFFFFF;
	border-radius: 8px;
	padding: 3px 10px;
}
.r-center{
	width: 920px;
	text-align: center;
	padding: 10px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	margin: 5px auto 0;
}
.wayou_r img{
	height:205px;
}
.room_ex{
	background-color:hsla(36,100%,50%,0.40);
	display: table;
	padding: 5px 10px;
	border-radius: 5px;
}
.room_ex span{
	font-weight:bold;
	font-size: 1.1em;
}




.plan_form{
	width: 220px;
	padding-top: 90px;
	margin-right: auto;
	margin-left: auto;
}
.plan_form p{
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.plan_form img{
	vertical-align: middle;
	margin-right:10px;
}
.plan_form .check_in{
	width: 220px;
}
.plan_form .guests{
	width:220px;
}
.plan_form .type{
	width: 220px;
}
.plan_form .price{
	width: 220px;
}
.plan_form .search_btn{
	text-align: center;
	margin: 5px 0 0 0;
}
.plan_form hr{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	clear: both;
	float: none;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}
.ui-datepicker {
    font-size: 70%;/*カレンダーサイズ　適時調整してください*/
}
