@charset "UTF-8";

/*------------------------------------------------------------
CSSリセット
-------------------------------------------------------------*/

*{ letter-spacing: 0; }

html{ overflow-y: scroll; }

body,div,ol,ul,li,
h1,h2,h3,h4,h5,h6,pre,form,fieldset,
input,p,blockquote{
	margin: 0;
	padding: 0;
}

address,caption,cite,code,dfn,var,h1,h2,h3,h4,h5,h6{
	font-style: normal;
	font-weight: normal;
}

h1,h2,h3,h4,h5,h6,small{
	font-size: 100%;
	font-weight: normal;
}

fieldset,img,abbr{ border: 0; }

caption{ text-align: left; }

q{ quotes: none; }

q:before,q:after{
	content: '';
	content: none;
}

a{ text-decoration: none; }

a:hover,
a:active{ outline: 0; }

img{
	border: 0;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}

b,strong{ font-weight: bold; }

div{ word-wrap: break-word; }

sub,sup{
	position: relative;
	line-height: 0;
	vertical-align: baseline;
	font-size: 75%;
}
sup{ top: -0.5em; }
sub{ bottom: -0.25em; }

pre,code{
	font-size: 1em;
	font-family: sans-serif;
}

pre{
	overflow: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
}

form{ margin: 0; }

button,input,select,textarea,optgroup,option{
	margin: 0;
	font-family: sans-serif;
	font-size: 100%;
	vertical-align: baseline;
}

* html button,
* html input,
* html select,
* html textarea{ vertical-align: middle; } /* IE6 */

*+html button,
*+html input,
*+html select,
*+html textarea{ vertical-align: middle; } /* IE7 */

button,input{ line-height: normal; }

* html button,
* html input{ overflow: visible; } /* IE6 */

*+html button,
*+html input{ overflow: visible; } /* IE7 */

textarea{
	overflow: auto;
	vertical-align: top;
}

input[type="text"],textarea{ padding: 2px; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"]{ -webkit-appearance: button; }

button::-moz-focus-inner,
input::-moz-focus-inner{
	margin: 0;
	padding: 0;
	border: 0;
}

/*--------------------------------------------------------
レイアウト設定
-------------------------------------------------------*/
body{
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 62.5%;
	font-style: normal;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}

* html table{ border-collapse: collapse; } /* IE6 */
*+html table{ border-collapse: collapse; } /* IE7 */

hr{
	clear: both;
	height: 1px;
	margin: 0 0 1.5em;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
	color: #ccc;
	font-size: 1.0em;
	line-height: 1.0em;
}
* html hr{ margin: 0 0 1.2em; } /* IE6 */
*+html hr{ margin: 0 0 1.2em; } /* IE7 */

/*------------------------------------------------------------
フォントカラー
-------------------------------------------------------------*/

.red{ color: #ff0000!important; }/*赤*/
.blue{ color: #0000dd!important; }/*青*/
.green{ color: #008000!important; }/*緑*/

.mark1{
  background: linear-gradient(transparent 0%, #f6ff5f 0%);
}

/*--------------------------------------------------------
main
-------------------------------------------------------*/

body{ background-color:#F7F7F8; }

a{ text-decoration: underline; }

a:link,
a:visited{ color: #00b; }
a:hover,
a:active{ color: #f60; }

/*--------------------------------------------------------
header
-------------------------------------------------------*/

.header {
	border-top: 2px solid #CE0E00;
	border-bottom: 1px solid #999;
	background-color:#fff;
}

.header a{
	color:#fff;
	font-size:2.0em;
	text-decoration: none;
	font-weight: bold;
}

#header-wrap {
	margin: auto;
	padding: 5px 0 5px;
	width: 1100px;
}

/*--------------------------------------------------------
contents
-------------------------------------------------------*/
.wrapper {
	margin: auto;
	width: 1100px;
}

.content {
	float: left;
	border: 0;
	width: 764px;
	background-color:#fff;
	padding: 0 10px 20px;
}

.content p{
	display: inline-block;
	margin: 10px 10px 5px 10px;
	font-size:16px;
	line-height:20px;
	color: #333;
}

.para {
	margin: 10px;
}

.para p{
	font-size:16px;
	line-height:29px;
	color: #333;
}

.lastupdate{
	font-size:12px!important;
	color: #666!important;
	font-weight:700;
	margin: 0px 10px 0px 10px!important;
}

h1{
	font-size: 1.6em;
	line-height: 23px;
	font-weight: bold;
	padding: 10px 10px 5px 10px;
	margin: 20px auto;
	border: 1px solid #ccc;/*線の太さ、線の種類、色*/
	border-left: 8px solid #CE0E00;/*線の太さ、線の種類、色*/	
	box-shadow: 1px 2px 3px #888;/*横の影、下の影、広がり具合、色*/
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#CCCCCC');/*IE5.5以上*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#CCCCCC')";/*IE9から非推奨となり、10にて廃止だが、昔のブラウザでは汎用性がある*/
	background: linear-gradient(top, #ffffff, #CCCCCC);/*liner-gradient今後必要*/
	background: -o-linear-gradient(top, #ffffff, #CCCCCC);/*Opera10以降で必要*/
	background: -ms-linear-gradient(top, #ffffff, #CCCCCC);/*IE10から*/
	background: -moz-linear-gradient(top, #ffffff, #CCCCCC);/*Firefox 3.6・4以降で必要*/
	background: -webkit-linear-gradient(top, #ffffff, #CCCCCC);/*Safari5.1以上で必要*/
	background: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#CCCCCC));/*Safari5以上で必要*/
}



h2{
	font-size: 1.6em;
	line-height: 23px;
	font-weight: bold;
	margin: 10px 10px 5px 10px;
	color: #333;
	clear: both;
}

.list6 h3{
	clear: both;
	font-size: 1.6em;
	font-weight: normal;
	padding: 10px 0 5px 8px;
}

.mid-ad {
	margin: 25px 10px 35px 10px;
}

.foot-ad {
	margin: 15px 15px 0 15px;
}

.ft {
	display: inline-block;
	clear: both;
	margin: 15px 20px 0 30px;
}

.ft ul{
	margin: 20px 0;
	font-size: 1.4em;
}

.toc_title{
	font-size: 1.4em;
}

.swipe{
	padding: 0 10px 0 0;
	text-align: right;	
	font-size: 1.4em;
	font-weight: bold;
}

.listnext{
	padding: 10px 10px 0 10px;
	text-align: right;	
	font-size: 1.5em;
}

.hotel_details {
	display:block;
	margin: 20px 0 5px;
	text-align : center;
}

/*--------------------------------------------------------
breadcrumbs
-------------------------------------------------------*/

#breadcrumbs{
	clear: both;
	margin: 30px 10px 20px 10px;
	font-size: 1.4em;

}

#breadcrumbs li{
	display: inline;
	margin-right: 0.5em;
	line-height: 1.8;
	text-align: right;
	list-style: none;
}

#breadcrumbs li a{
	padding-right: 15px;
	background: url(../images/icon-brc.gif) center right no-repeat;
}

/*--------------------------------------------------------
sidebar
-------------------------------------------------------*/

.sidebar {
	float: right;
	border: 0;
	width: 300px;
	padding-top: 20px;
	padding-bottom: 0;
}

.side-ad {
	margin: 0;
}

.sidemenu  {
	display:inline-block;
	width:300px;
	margin:0px 8px 5px 0px;
	padding:0px;
}

.sidemenu  p {
	margin:0px 0px 2px 0px;
	padding:3px 3px 3px 7px;
	background:url("../images/menu_under2.gif") no-repeat left bottom;
	font-size:14px;
	font-weight: bold;
	min-height:30px;
}

.title{
	clear: both;
	color:#FFFFFF;
	font-size:1.5em;
	font-weight:bolder;
	margin: 5px 0px 5px 0px;
	padding: 0px 0px 0px 10px;
        background: rgb(140,32,32);
        background: linear-gradient(0deg, rgba(140,32,32,1) 0%, rgba(184,57,57,1) 44%, rgba(196,35,35,1) 92%);
        background-position:top;
}

#menu_ht  {
	display:inline-block;
	width:300px;
	margin:0px 8px 5px 0px;
	padding:0px;
}

#menu_ht  p {
	margin:0px 0px 2px 0px;
	padding:3px 3px 3px 7px;
	background:url("../images/menu_under2.gif") no-repeat left bottom;
	font-size:14px;
	font-weight: bold;
	min-height:30px;
}

.foo {
	min-height:30px;
	height: auto !important;
	height: 30px;
}

.icon {
	display:block;
	margin:0px 4px 2px 0px;
	padding:0px 0px 0px 2px;
	float:left;
}

/*--------------------------------------------------------
footer
-------------------------------------------------------*/

.footer {
	padding: 30px 0 10px;
	clear: both;
	color: #808080;
	border: 0;
	width: 100%;

}

#footer-wrap p {
	font-size:1.5em;
	text-align: center;
}

.pc_none{
	display:none;
}

/*--------------------------------------------------------
table
-------------------------------------------------------*/
.lists{
	margin: 0 10px;
}

.lists img{
	float: left;
	margin: 0 5px 0 0;
}

.move_table th,
.move_table td {
	text-align: left;
}

.move_table thead th {
	background: #a6a6a6;
	color: #fff;
	font-weight: normal;
	margin-left:1px;
	padding-left:2px;
}

.move_table tbody th {
	font-size: 1.2em;
	width:100px;
	height: 50px;
	border-bottom: 1px solid #959595;
	font-size: 1.2em;
}

.move_table tbody td {
	padding-left:4px;
	height: 50px;
	border-bottom: 1px solid #959595;
	font-size: 1.2em;
}

.address {
	padding-left:7px;
}

.move_table thead th:nth-child(1) {
	width: 100px;
}

.move_table thead th:nth-child(2) {
	width: 80px;
}

.move_table thead th:nth-child(3) {
	width: 80px;
}

.move_table thead th:nth-child(4) {
	width: 60px;
}

.move_table thead th:nth-child(5) {
	width: 50px;
}

.move_table thead th:nth-child(6) {
	width: 50px;
}

.move_table thead th:nth-child(7) {
	width: 80px;
}

.move_table thead th:nth-child(8) {
	width: 90px;
}

.move_table thead th:nth-child(9) {
	width: 70px;
}

.move_table thead th:nth-child(10) {
	width: 50px;
}




.plantable_all{
	width:98%;
	text-align:left;
	font-size: 1.2em;
}
.plantable_all table{
	margin:10px 0px 25px 10px;
	border-spacing: 1px;
}


.planlist {
	background-color: #CCCCCC;
}
.planlist th, .planlist td {
	padding: 6px;
	background-color:#E0E0E0;
}
.planlist th {
	font-weight: normal;
	font-size: 90% ;
}
.planlist td {
	vertical-align: top;
	background-color: #FFFFFF;
}
.planlist tr {
	background-color: #FFFFFF;
}

/*--------------------------------------------------------
カテゴリ
--------------------------------------------------------*/

#cat h2 {
	clear:both;
	margin: 0 0 1.1em;
	padding: 0.3em 0.7em;
	border: 0;
	border-bottom: 1px solid #ccc;
	background: #fff;
	color: #000;
	font-weight:bold;
	font-size: 1.6em;
}

.cat_info {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.cat_info_main {
	text-align: left;
}

.cat_info_main.amenisa ul {
	margin: 10px 0 100px 10px;
}

.cat_info_main.amenisa ul li {
	float: left;
	display: block;
	width: 160px;
	font-size: 15px;
	padding: 0px 20px 2px 20px;
	position: relative;
}

.cat_info_main.amenisa ul li:before {
	position: absolute;
}

.clearfix
{
display: inline-table;
min-height: 1%;
}

/* Hides from IE-mac */
* html .clearfix
{
height: 1%;
}

.clearfix
{
display: block;
}

/*--------------------------------------------------------
Accordion
--------------------------------------------------------*/

.list6 {
	margin: 0 0 9px;
}

.list6 dl.acordion{
	margin: 0 8px 0 8px;
}

.list6 dt.trigger {
	font-size:16px;
	background: #9bd8ff -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b9e4ff), to(#62b5ea));
	background: #9bd8ff linear-gradient(#b9e4ff, #62b5ea);
	border-radius: 5px;
	text-align: left;
	border: 1px solid #ccc;
	color: #000;
	margin-bottom: 0;
	padding: 8px;
}

.list6 dt.active{
	border-radius: 5px 5px 0 0;
}

.list6 dt.trigger span.open-close {
	background: url(../images/point_plus.png) no-repeat right top;
	float: right;
	width: 20px;
	height: 20px;
	text-indent: -9999em;
}

.list6 dt.active span.open-close {
	background: url(../images/point_none.png) no-repeat right top;
	float: right;
	width: 20px;
	height: 20px;
}   

.list6 dd.acordion_tree{
	padding: 0;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f0f0f0));
	background: #9bd8ff linear-gradient(#fff, #f0f0f0);
	border: 1px solid #ccc;
	border-top: none;
}

/*--------------------------------------------------------
menu list
--------------------------------------------------------*/

.list5 {
	margin: 8px;
}

.list5:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.list5 ul{
	margin: 0;
	border-top: 1px solid #ccc;
	list-style: none;
}

.list5 ul li{
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f0f0f0));
	background: linear-gradient(#fff, #f0f0f0);
	border-top: none;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	height: 40px;
	margin: 0px;
}

.list5 ul li:nth-child(odd) {
	float: left;
	width: 50%;
 }

.list5 ul li a{
	color: #666;
	display: block;
	height: 40px;
	margin: 0px;
	padding: 0 0 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	display: table-cell;
	vertical-align: middle;
}

.list5 ul li a:before {
	content: "";
	position: absolute;
	margin-left: -5px;
	margin-top: 6px;
	border: 5px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 5px solid #666;
}

.list5 ul li a b{
	font-size: 1.4em;
	color: #000;
	display: block;
	font-weight: bold;
	padding: 0 5px;
}

.list5 ul li img{
	float: left;
	height: 45px;
	width: 45px;
	margin-right: 10px;
}

.list4 {
	margin: 0;
}

.list4:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.list4 ul{
	margin: 0;
	border-top: 1px solid #ccc;
	list-style: none;
}

.list4 ul li{
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f0f0f0));
	background: linear-gradient(#fff, #f0f0f0);
	border-top: none;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	height: 40px;
	margin: 0px;
}

.list4 ul li:nth-child(odd) {
	float: left;
	width: 50%;
 }

.list4 ul li a{
	color: #666;
	display: block;
	height: 40px;
	margin: 0px;
	padding: 0 0 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	display: table-cell;
	vertical-align: middle;
}

.list4 ul li a:before {
	content: "";
	position: absolute;
	margin-left: -5px;
	margin-top: 6px;
	border: 5px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 5px solid #666;
}

.list4 ul li a b{
	font-size: 1.3em;
	color: #000;
	display: block;
	font-weight: bold;
	padding: 0 5px;
}

.list4 ul li img{
	float: left;
	height: 45px;
	width: 45px;
	margin-right: 10px;
}

/*--------------------------------------------------------
rec
--------------------------------------------------------*/
.rec-wrap {
	padding: 10px;
}

.rec-wrap p.title {
	font-weight: bold;
	font-size: 1.8em;
}

.rec-wrap p.link {
	margin-top: 3px;
	margin-right: 10px;
	text-align: left;
	font-weight: bold;
	font-size: 1.8em;
}

.rec-wrap p{
	font-size: 1.6em;
}

.rec-wrap img{
	float: left;
	padding-right: 5px;
}

.top-img {
	padding-left: 8px;
}

/*--------------------------------------------------------
hotellist
--------------------------------------------------------*/

.hotellist {
	clear:both;
	margin:0;
}

.hotellist figcaption {
	text-align:left;
	padding: 0;
	margin:10px 0px 5px 0px;
}

figure.htlist {
	float: left;
	padding: 0;
	margin-left: 10px;
}

figcaption.bold{
	font-size: 1.3em;
	font-weight: bold;
	height: 33px;
}

figcaption {
	width:200px;
	font-size: 1.2em;
}

/*--------------------------------------------------------
form
--------------------------------------------------------*/
.sub-column {
	line-height: 1.5;
	display: block;
}

.sub-column form{
    margin-bottom: 1.5em;
}

#cont select {
	font-size: 1.5em;
	padding: 8px 30px 8px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
   border-radius: 0;
	border: 1px solid #999;
	background: #eee;
	background: url(../images/arrow.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#efebe1 100%);
	background: url(../images/arrow.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#efebe1 100%);
	background-size: 20px, 100%;
}

#cont {
	background: url("../images/booking_back_hikaku.jpg") no-repeat;
	padding: 10px 10px 11px 10px;
	border-color: #006699;
	border-width: 1px 1px 1px 1px;
	border-style: dotted;
}

.sub-column table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    border-spacing: 2px;
    border-color: grey;
    width: 100%;
    margin: auto;
    margin-bottom: 0;
    padding: 0;
    border-top: 1px solid #959595;
    border-left: 1px solid #959595;
    table-layout: fixed;
    word-break: break-all;
}

.sub-column table th {
    background: #f5f5f5;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.sub-column table th, .sub-column table td {
    text-align: center;
    padding: 0.5em 0.2em;
    border-right: 1px solid #959595;
    border-bottom: 1px solid #959595;
}

#table-01 td {
	font-size: 1.2em;
}

.checkinout {
	margin:0 0 0 180px;
	padding:0;
	float: left;
}

/*--------------------------------------------------------
pagetop
--------------------------------------------------------*/

#page_top{
width: 40px;
height: 40px;
position: fixed;
right: 10px;
bottom: 10px;
background: #961818;
opacity: 0.6;
}
#page_top a{
position: relative;
display: block;
width: 40px;
height: 40px;
text-decoration: none;
}

#page_top a::after{
content: '▲';
font-size: 14px;
font-weight: bold;
color: #fff;
position: absolute;
top: 10px;
bottom: 0;
right: 0;
left: 0;
margin: auto;
text-align: center;
}

.topchiiki {
	float:left;
	text-align:left;
	width:100%
	padding:0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 15px !important ;
	line-height: 1.5em;
}

#topnavi{
	clear: both;
	width:100%;
	margin: 0px 0px 0px 0px;
	padding: 5px 0px 0px 0px;
	color:#FFFFFF;
	border-top: solid 1px #666666;
	background-color:#FFFFFF;
	background-repeat:repeat;
}

#topnavi .flink{
	text-align:center;
	margin-bottom:20px;
}

#topnavi a:hover {
	color:#c60;
}

#topnavi h4 {
	margin: 0px 0px 0px 20px;
}

#tophotels:after {
	content: ".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
#tophotels {
	display:inline-block;
	clear:both;
}
/* hides from IE-mac \*/
* html #tophotels {
	height:1%;
	clear:both;
}
#tophotels {
	display:block;
	clear:both;
}
/* End hide from IE-mac \*/
#tophotels {
	width:100%;
	clear:both;
	margin:0 auto;
	padding: 10px 0 0 0;
	color: #000;
	text-align:left;
	}


#tophotels .navi_col {
	width:100%;
	margin:0;
	padding: 0 0 0 0;
        }

#tophotels .navi_col .row {
	width:50%;
	margin:0;
	padding: 0 0 10px 0;
	float:left;
	}

ul.top_list {
	padding:0px 0px 0px 0px;
	list-style:none;
	margin-bottom: 20px;
	font-size:12px;
	}

ul.top_list li {
	padding:0px 0px 0px 0px;
	line-height:1.4;
	margin-bottom: 4px;
	}


ul.top_list li.bar_biz {
	padding:0px 0px 0px 6px;
	border-left:#3097CD solid 3px;
	}

ul.top_list li.bar_city {
	padding:0px 0px 0px 6px;
	border-left:#A4A546 solid 3px;
	}

ul.top_list li.bar_resort {
	padding:0px 0px 0px 6px;
	border-left:#DF74EA solid 3px;
	}

ul.top_list li.bar_kodawari {
	padding:0px 0px 0px 6px;
	border-left:#479951 solid 3px;
	}

ul.top_list li.bar_quo {
	padding:0px 0px 0px 6px;
	border-left:#479951 solid 3px;
	}


.top_list_item {
	padding:5px 0px 0px 0px;
	line-height:1.4;
	margin-bottom: 0px;
	float:right;
	font-size:10px;
	}

/*--------------------------------------------------------
ads
--------------------------------------------------------*/

.pc-none{
	display:none;
}

/*--------------------------------------------------------
MF
-------------------------------------------------------*/

@media
only screen and (max-width : 767px){

/*--------------------------------------------------------
MF main
-------------------------------------------------------*/
body{ background-color:#fff; }

.content {
	padding: 0 0 40px 0;
}

.content img {
	max-width: 95%;
	height:auto;
}

.wrapper, .content, .sidebar, #header-wrap {
	float: none;
	margin: 0;
	width: auto;
}

.header p{
	text-align: left;
	margin-left: 7px;
}

#header-wrap img{
	max-width: 100%;
}

h1{
	margin: 10px;
	font-size:1.4em;
	line-height: 17px;
}

.content p{
	display: inline-block;
	margin: 10px 10px 3px 15px;
	line-height:1.4em;
	font-size:1.2em;
}

.lastupdate{
	margin: 5px 10px 0px 15px!important;
}

.side-ad {
	text-align: center;
}

.dl-list-01 b {
	position: absolute;
	top: 94px;/*画像の左上に配置*/
	left: 28px;
	font-size: 8px;
	padding: 3px 5px 4px 4px;/*文字周りの余白*/
}

.none{
	display:none;
}

.pc_none{
	display:block;
}

.ft ul{
	margin: 20px 0 0;
	font-size: 1.4em;
}

.sidebar{
	display: block;
	margin:0px 0px 25px 10px;
}

.sidemenu  {
	float: left;
	width:97%;
}

#menu_ht  {
	float: left;
	width:97%;
}

.footer {
	padding: 0 0 25px;
}

.top-img {
	width: 100%;
}

/*--------------------------------------------------------
MF ads
--------------------------------------------------------*/

.pc-none{
	display:block;
	margin: 15px 10px 0 10px;
}

.foot-ad {
	text-align:center;
	margin: 15px 0 0 0;
}

/*--------------------------------------------------------
MF table
--------------------------------------------------------*/

.move_table {
  display: block;
  position: relative;
  overflow-x: scroll;
  width: 100%;
  border-collapse: collapse;
  font-size: 0;
}

.move_table thead,
.move_table tbody {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.move_table thead th{
	font-size: 0.7rem !important;
}

.move_table th,
.move_table td {
  display: inline-block;
  background: #fff;
  font-size: 0.7rem !important;
}

.move_table tbody th {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;	
}

.move_table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.move_table thead th.blank {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}

.move_table tbody th,td {
	padding-top: 8px;
}

.move_table tbody td:nth-child(2) {
	width: 80px;
}

.move_table tbody td:nth-child(3) {
	width: 80px;
}

.move_table tbody td:nth-child(4) {
	width: 60px;
}

.move_table tbody td:nth-child(5) {
	width: 50px;
}

.move_table tbody td:nth-child(6) {
	width: 50px;
}

.move_table tbody td:nth-child(7) {
	width: 80px;
}

.move_table tbody td:nth-child(8) {
	width: 90px;
}

.move_table tbody td:nth-child(9) {
	width: 70px;
}

.move_table tbody td:nth-child(10) {
	width: 50px;
}

/*--------------------------------------------------------
MF カテゴリ
--------------------------------------------------------*/
.cat_info_main.amenisa ul {
	padding: 10px 0 120px 10px;
}

.cat_info_main.amenisa ul li {
	float: left;
	display: block;
	width: 140px;
	font-size: 18px;
	padding: 10px 10px 12px 20px;
	position: relative;
}

/*--------------------------------------------------------
rec MF
--------------------------------------------------------*/
.rec-wrap p.title {
	font-size: 1.4em;
}

.rec-wrap p.link {
	text-align: right;
}

.rec-wrap p{
	font-size: 1.2em;
}

/*--------------------------------------------------------
hotellist
--------------------------------------------------------*/

.hotellist{
display:flex;
flex-wrap:wrap;
justify-content:center;
align-items:flex-start;
}

figure{
box-sizing: border-box;
border:0px solid #ccc;
padding: 30px;
}

figure{
margin:0 0 20px 0;
width: calc(50% - 30px / 2);
}

figure:nth-child(2n){
margin-right:0;
}

figure:nth-child(3n){
margin-right:30px;
}

figure:nth-child(6){
margin-right:0;
}

figcaption{
width: calc(94%);
margin:0;
font-size: 1.1em;
}

figure.htlist {
margin-right: 1px;
}

/*--------------------------------------------------------
form
--------------------------------------------------------*/

#cont select {
	font-size: 1.3em;
}

.checkinout {
	margin:0;
}

.setumei img{
	max-width: 100%;
}

/*--------------------------------------------------------
table
--------------------------------------------------------*/

.plantable_all{
	width:95%;
	font-size: 1.2em;
}

/*--------------------------------------------------------
home+
--------------------------------------------------------*/

.page-top{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 99;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
}

* html .page-top{ display: none; }

.page-top a{
	display: block;
	padding: 10px;
	border: 0;
	border-top: 1px solid #fff;
	text-decoration: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

.page-top a:link,
.page-top a:visited,
.page-top a:hover,
.page-top a:active{
	background: #333;
	color: #fff;
}

.page-top:not(\*|*){ position: static; }/* Opera9以下 */

}

/*--------------------------------------------------------
MF END
-------------------------------------------------------*/

}