@charset "utf-8";

/* えんどうじ接骨院 */

/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Cinzel|Kosugi+Maru');

#menubar li a,
#menubar-s li a {font-family: 'Kosugi Maru', sans-serif;}

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f0c842 150px, #fff 500px);	/*グラデーション*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #c19135;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	height: 150px;	/*高さ*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	background: #f0c842;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f0c842, #d28630);	/*グラデーション*/
	color: #fff;	/*文字色*/
}
header .inner {
	max-width: 1200px;	/*最大幅。#container,#pagetop,#footermenuと合わせる。*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
#logo img {
	width: 400px;	/*画像幅*/
	position: absolute;
	left: 5px;	/*headerに対して左から20pxの場所に配置*/
	top: 30px;	/*headerに対して上から30pxの場所に配置*/
}
/*ヘッダー右側のtelブロック*/
#tel1 {
	position: absolute;
	right: 20px;	/*headerに対して右から20pxの場所に配置*/
	top: 12px;		/*headerに対して上から12pxの場所に配置*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
#tel1 a {
	color: #fff;
}
/*ヘッダー右側の「ご予約はこちらから」ボタン*/
#form a,#yoyaku a {
	display: block;
	text-decoration: none;
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	position: absolute;
	right: 20px;	/*headerに対して右から20pxの場所に配置*/
	top: 40px;		/*headerに対して上から40pxの場所に配置*/
	color: #333;	/*文字色*/
	padding: 5px 50px 5px 80px;	/*上、右、下、左へのボタン内の余白*/
	font-size: 16px;	/*文字サイズ*/
	background: #e6bd2e url(../images/bg_form.png) no-repeat 40px center;	/*背景色と背景画像（古いブラウザ用）*/
	background: url(../images/bg_form.png) no-repeat 40px center, linear-gradient(#fbd44b, #e6bd2e);	/*背景画像とグラデーション*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*上以外の「ご予約はこちらから」ボタン*/
#yoyaku a {
	display: inline-block;
  position: static;/* position解除 */
}

/*コンテナー（メインメニュー、メイン画像とコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*最大幅。#header .inner,#pagetop,#footermenuと合わせる。*/
	margin: 0 auto;
	position: relative;
	top: -50px;	/*上にずらす距離。この分headerに重なる。*/
	background: #fff;	/*背景色*/
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);			/*同上*/
	border-radius: 5px;
}
#subimg img{border-radius: 5px;}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding: 3%;	/*ボックス内の余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar,
#menubar-s {
	z-index: 10;
	position: absolute;
	left: 0px;	/*メイン画像（mainimg）に対して左から0pxの場所に配置*/
	top: 0px;	/*メイン画像（mainimg）に対して上から0pxの場所に配置*/
	width: 100%;	/*幅。#menubar liでmargin-leftを1%とっているのでそれを引いた数字を設定。*/
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 15.5%;		/*幅*/
	margin-left: 1%;	/*メニュー間のスペース*/
	line-height: 1.3;	/*行間を通常より少し狭くする*/
}
#menubar li a,
#menubar-s li a {
	text-decoration: none;
	display: block;
	position: relative;
	color: #000;	/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-shadow: 0px 1px 1px #fff;	/*テキストの影。右へ、下へ、広げる幅、色。*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で、最後の0.8は透明度80%の事。*/
	padding: 5px 2% 7px 15%;	/*上、右、下、左へのメニュー内の余白*/
	border: 1px solid #fff;		/*枠線の幅、線種、色*/
	-webkit-box-shadow: 0px 10px 10px rgba(0,0,0,0.15);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の0.15は透明度15%の事。*/
	box-shadow: 0px 10px 10px rgba(0,0,0,0.15);			/*同上*/
border-bottom-left-radius: 6px; 
border-bottom-right-radius: 6px; 
-webkit-border-bottom-left-radius: 6px; 
-webkit-border-bottom-right-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-bottomright: 6px;

}
/*「→」マーク*/
#menubar li a::before,
#menubar-s li a::before {
	display: block;
	text-shadow: none;
	text-align: center;
	position: absolute;
	left: 4%;
	top: 8px;
	content: "→";	/*このテキストを表示させる。変更してもOKですが機種依存文字は使わないように。*/
	background: #d28630;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", "Osaka-mono", "monospace";	/*フォント指定*/
	width: 16px;	/*幅*/
	line-height: 16px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
}
/*英語表記の文字*/
#menubar li a span,
#menubar-s li a span {
	display: block;
	color: #d28630;	/*文字色*/
	font-size: 80%;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字に*/
	font-family: 'Cinzel', serif;	/*冒頭で読み込んでいるGoogleFontsの指定*/
	padding-top:5px;
}
/*マウスオン時*/
#menubar li a:hover {
	background: #fff;	/*背景色*/
	padding: 8px 2% 12px 15%;	/*上、右、下、左へのメニュー内の余白を少し広げる設定*/
	/*letter-spacing: 0.1em;	文字間隔を少し広げる設定*/
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	overflow: hidden;
}
/*１カラム時のメインブロック*/
.c1 #main {
	float: none;
	width: 100%;
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	color: #fff;		/*文字色*/
	background: #f28d16;	/*背景色*/
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	font-size: 20px;	/*文字サイズ*/
	border-radius: 3px;	/*角丸のサイズ*/
}
/*h2タグの１文字目*/
#main h2 span:before {
    background-color: #fff; /* 線色 */
    border-radius: 5px; /* 線幅の半分 */
    content: "";
    display: inline-block;
    height: 40px; /* 線の長さ */
    margin-right: 10px; /* 線右の余白 */
    vertical-align: middle;
    width: 10px; /* 線幅 */
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 120%;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 20px;	/*左側に空ける余白*/
}
/*h3タグの１文字目*/
#main h3::first-letter {
	border-left: 6px solid #f28d16;	/*左側の線の幅、線種、色*/
	border-radius: 4px;
	padding-left: 10px;	/*線と文字との余白*/
}


/*段落タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}
#main p + p {
	margin-top: -10px;
}

/*h4タグ*/
#main h4 {
	padding-left: 20px;	/*左側に空ける余白*/
	clear: both;
	font-size: 120%;font-weight:bold;
	border-bottom: solid 1px #ccc;	/*下線の線種、幅、色*/
	margin-bottom: 20px;
}
/*h4タグの１文字目*/
#main h4::before {
	content: "◆";	/*この文字を表示させる。変更してもOKだが機種依存文字は使わないように。*/
	background: #f0c842;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f0c842, #d28630);	/*グラデーション*/
	color: #fff;	/*文字色*/
	border-radius: 2px;	/*角丸のサイズ*/
	padding: 2px 5px;	/*上下、左右へのボックス内の余白*/
	margin-right: 10px;	/*右側にスペースをあける*/
}

#main h4 span{font-weight:normal;font-size:90%;margin-left:15px;color: #f76100;}


/* トップページの「→」マーク -------　-------　-------　-------　-------*/

#yaji {width: 96%;margin:0 0 30px 20px; text-indent: 1em;line-height:2.5;}
#yaji li a{text-decoration:none;color: #d28630;}
#yaji li a::before{
    display: inline-block;
	text-align: center;
    content: '→';
    text-indent: 0;
	background: #d28630;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	width: 20px;	/*幅*/
	line-height: 20px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
	margin-right:10px;	/*文字との距離*/
}

/*インドアビューのところ
---------------------------------------------------------------------------*/

.flex_1box {
    display: flex;              /* フレックスボックスにする */
    background-color: #eee;     /* 背景色指定 */
    padding:  10px;             /* 余白指定 */
}
 
.flex_1item {
    padding: 10px;
    color:  #fff;               /* 文字色 */
    margin:  10px;              /* 外側の余白 */
    border-radius:  5px;        /* 角丸指定 */
}
.flex_1item iframe{height : 350px;}
.flex_1item:nth-child(1) {width : 50%;
    background-color:  #fff; /* 背景色指定 */
}
 
.flex_1item:nth-child(2) {width : 50%;
    background-color:  #fff; /* 背景色指定 */
}

/*サブページのいろいろ(黄色いbox、点線のboxなど)
---------------------------------------------------------------------------*/
strong{color: #222;}

/*<div class="rbox"></div>*/
.rbox {width : 90%;padding: 15px;
	margin: 0 auto 20px auto;
	background-color: #fefce6;
	border: 2px solid #FF843F;border-radius: 5px;}

/*<div class="dotbox"></div>*/
.dotbox {width : 90%;padding: 15px;
	margin: 0 auto 20px auto;
	border: 2px dotted #666;border-radius: 5px;}

.wl_pl {width: 96%;margin-left:20px;}
.wl_pl ul{;margin:0 0 25px}
.wl_pl ul li{
	background:url('../images/icon_tick.png') no-repeat;
	background-position:0 5px;
	padding-left:20px;
	list-style:none;
	margin:5px 2px 2px 5px;}

.wl_pl ul.en li{
	background:url('../images/icon.png') no-repeat;
	background-position:0 5px;
	padding-left:20px;
	list-style:none;
	margin:5px 2px 2px 5px;}

h5{font-size:115%;margin-top:15px;color: #f76100;}


/*マウスhoverでうす黄色
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main .listcover {
	margin:0 20px 15px;	/*ボックス間のスペース*/
	position: relative;
	overflow: hidden;
	padding: 3%;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*ボックスの設定*/
#main .list {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 3%;	/*ボックス内の余白*/
	margin: -3%;	/*上のリンクなしの場合の余白をなくす為の設定*/
}
/*ボックス内のタグ設定*/
#main .list div.h_migi {
	font-size: 120%;font-weight:bold;
	border-bottom: solid 1px #ccc;	/*下線の線種、幅、色*/
	margin-bottom: 10px;
	margin-left: 0;	/*左の写真とのバランスをとって設定*/
}
/*「→」マーク。ボックスにリンクを貼った時だけ出ます。*/
#main .list div.h_migi::before {
	content: "●";	/*この文字を表示させる。変更してもOKだが機種依存文字は使わないように。*/
	background: #f0c842;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f0c842, #d28630);	/*グラデーション*/
	color: #fff;	/*文字色*/
	border-radius: 2px;	/*角丸のサイズ*/
	padding: 2px 5px;	/*上下、左右へのボックス内の余白*/
	margin-right: 10px;	/*右側にスペースをあける*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
#main .list p.p_migi {
	margin-left: 0;	/*右の写真とのバランスをとって設定*/
	margin-right: 34%;	/*右の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list figure img {border-radius: 5px;
	float: left;		/*画像を左へ回り込み*/
	padding: 0.6%;		/*余白*/
	width: 30%;			/*写真の幅*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
#main .list figure img.migi {
	float: right;		/*画像を左へ回り込み*/
}
/*マウスオン時のボックス*/
#main .list:hover {
	background: #fffde7;	/*背景色*/
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;		/*ブロック幅*/
	overflow: hidden;
}
/*１カラム時のサブブロック。非表示にする設定。*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	border-bottom: solid 1px #ccc;	/*下の線の線種、幅、色*/
	color: #fff;	/*文字色*/
	background: #f0c842;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f0c842, #d28630);	/*グラデーション*/
	padding: 15px 10px;	/*上下、左右へのボックス内の余白*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
ul.submenu {
	margin-bottom: 15px;
}
/*メニュー１個ごとの設定*/
ul.submenu li {
	border-bottom: solid 1px #ccc;	/*下の線の線種、幅、色*/
}
ul.submenu li a {
	text-decoration: none;
	display: block;
	background: #fff;	/*背景色*/
	padding: 3px 10px;	/*上下、左右へのメニュー内の余白*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	overflow: hidden;
	padding: 5%;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	border: 5px solid #ddd;	/*枠線の幅、線種、色*/
	background: #ccc url(../images/bg.png);	/*背景色、背景画像の読み込み。*/
}
/*box1内のサブメニューブロック*/
#sub .box1 ul.submenu {
	margin-bottom: 0;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/

/* パソコン・スマホ共通のCSS */
#PageTopBtn {z-index: 10;
position: fixed; /*ボタンの配置場所を固定*/
bottom: 80px; /*下からのボタンの配置場所を指定*/
right: -10px; /*右からのボタンの配置場所を指定はjsで　TopBtn.stop().animate({‘right’ : ’10px’}, 200);の10pxで右からのボタンの表示位置を設定します。*/
}
#PageTopBtn a {
display: block; /*配置の調整*/
text-decoration: none; /*文字の下線を消す*/
color: #00C402; /*文字の色*/
background: #ddd; /*ボタンの背景色*/
text-align: center; /*文字を中央に配置*/
border-radius: 8%; /*ボタンの角を少し丸くする*/
outline: none; /*クリックしたときの黒い枠を消す*/
}
#PageTopBtn a:hover {
text-decoration: none; 
background: #00C402; /*マウスオーバー時の背景色*/
color: #fff; /*文字の色*/
}
#PageTopBtn {
font-size: 20px; /*文字のサイズ*/
}
#PageTopBtn a {
width: 70px; /*ボタンの幅*/
height: 20px; /*ボタンの高さ*/
padding:5px 0 20px; /*文字の配置場所の調整*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer .pr {display: block;font-size: 80%;}
footer {
	position: relative;
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 30px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 90%;		/*文字サイズ*/
	background: #dc8f09;	/*背景色*/
	color: #fff;	/*文字色*/
}
footer a {text-decoration:none;
	font-size: 115%;		/*文字サイズ*/
	color: #fff;	/*リンクの文字色*/
}
footer a:hover {
	color: #FCD25C;	/*マウスオン時のリンクの文字色*/
}
/*footer内のh3タグ*/
footer h3 {font-weight:normal;
	margin-bottom: 8px;
	font-size: 24px;	/*文字サイズ*/
}
/*footer内のh3タグの１文字目*/
footer h3:before {
    background-color: #fff; /* 線色 */
    border-radius: 5px; /* 線幅の半分 */
    content: "";
    display: inline-block;
    height: 37px; /* 線の長さ */
    margin-right: 10px; /* 線右の余白 */
    vertical-align: middle;
    width: 10px; /* 線幅 */
}

/*footer内の段落タグ*/
footer p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*footer内の左側のブロック指定*/
#footer-left {
	width: 43%;	/*幅*/
	float: left;	/*左に回り込み*/
	padding-top: 20px;	/*左に空ける余白*/
	padding-left: 5%;	/*左に空ける余白*/
	padding-bottom: 30px;	/*下に空ける余白*/
}
/*フッターのロゴブロック*/
#footer-logo1 {
	padding-left: 5%;	/*左に空ける余白*/
	 margin-bottom: 10px;
	 border-bottom: 1px dotted #fff;	/*下線の幅、線種、色*/
}
/*フッターのロゴ画像*/
#footer-logo1 img {
	 width: 33%;	/*画像の幅*/
}
/*footer内の右側のブロック指定*/
#footer-right {
	width: 43%;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-top: 20px;	/*左に空ける余白*/
	padding-right: 5%;	/*右に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*アイコン画像１個あたりの設定*/
#icon img {
	width: 40px;	/*アイコンの幅*/
	margin-right: 10px;	/*アイコン同士の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
}
#footermenu li {
	display: inline;
	margin: 10px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #111;	/*背景色*/
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#newinfo iframe{
	margin-bottom: 15px;
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
	height: 600px;	/*高さ*/
	border: 10px;}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}

/*ta1の左側ボックス*/
.ta1 th {
	background: #eee;	/*背景色*/
	text-align: center;	/*センタリング*/
	white-space: nowrap;/* 改行しない */}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*ta2（footerの「診療時間のご案内」で使っているテーブル）
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {letter-spacing:1px;
	width: 100%;
	margin: 0 auto 10px;
	border-bottom: 1px solid #fff;	/*テーブルの下の枠線の幅、線種、色*/
}
/*td,th共通*/
.ta2 td, .ta2 th {
	border-top: 1px solid #fff;	/*td,thの上側の線の幅、線種、色*/
	padding: 5px 10px;	/*ボックス内の余白*/
}
/*th見出し*/
.ta2 th {width : 20%;
	text-align: center;
	background: rgba(0,0,0,0.2);	/*背景色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #c00 !important;font-weight:bold;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;width: 35%;border-radius: 5px;
	padding: 0.6%;		/*余白*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 35%;border-radius: 5px;
	padding: 0.6%;		/*余白*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/}
img.fl3 {float: left;margin-right: 10px;margin-bottom: 10px;width: 31%;border-radius: 5px;
	padding: 0.6%;		/*余白*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/}

.big1 {font-size: 250%;letter-spacing: 1px;}
.mini1 {font-size: 11px;}
.sh{display:none;}
.sh8{display:none;}
.dn{display:none;}
input[type=checkbox] {
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
	margin:0 4px 2px 10px;vertical-align : middle;
}


/*画面幅1300px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1300px){

/*全体の幅を一括設定
---------------------------------------------------------------------------*/
header .inner,#container,#pagetop,#footermenu {
	margin: 0 3%;
}
/*メインメニュー
---------------------------------------------------------------------------*/
#menubar li a {
	font-size: 95%;	/*文字サイズ*/}

/*英語表記の文字*/
#menubar li a span {
	font-size: 20%	/*文字サイズ*/}
}

/*「→」マーク*/
#menubar li a::before {
	top: 8px;
	left: 2%;
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	width: 50%;
	top: 10px;	/*headerに対して上から30pxの場所に配置*/
}
/*ヘッダー右側のtelブロック*/
#tel1 {
	right: 60px;	/*headerに対して右から60pxの場所に配置*/
	letter-spacing: normal;
}
/*ヘッダー右側の「ご予約はこちらから」ボタン*/
#form a {
	right: 60px;	/*headerに対して右から60pxの場所に配置*/
	letter-spacing: normal;
	font-size: 14px;
	padding: 5px 20px 5px 50px;
	background-position: 20px center;	/*背景アイコンの場所を左から20pxの場所に変更*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 49%;		/*幅*/
	margin-left: 1%;	/*メニュー間のスペース*/
	margin-bottom: 1%;
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 11;
	position: absolute;
	top: 25px;	/*上から25pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #f0c842;	/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*フッターのロゴ画像*/
#footer-logo1 img {
	 width: 45%;	/*画像の幅*/
}


/*フッター設定
---------------------------------------------------------------------------*/
/*footer内の左右のブロック指定*/
#footer-left,#footer-right {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体を非表示にする設定*/
#footermenu {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh8{display:block;}

}

/* PCで電話番号リンクを無効に*/
@media (min-width: 530px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}


/*画面幅700px以下の設定530
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header .inner {
	text-align: center;
}
/*ロゴ画像*/
#logo img {
	width: 60%;	/*画像幅*/
	position: static;
	padding: 10px 0 10px;
}
/*ヘッダー右側のtelブロック*/
#tel1 {
	position: static;
	font-size: 95%;
}
/*ヘッダー右側の「ご予約はこちらから」ボタン*/
#form a {
	position: static;
	width: 200px;
	margin: 0 auto;
	letter-spacing: 0.2em;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: 99%;
	margin-bottom: 0;
}
#menubar-s li a {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事。最後の0.9は透明度90%の事。*/
	border: 1px solid #f0c842;	/*枠線の幅、線種、色*/
	border-top: none;	/*上の枠線の設定から上の線だけをなしにする*/
}

/*h2タグ
---------------------------------------------------------------------------*/
#main h2 {
	font-size: 14px;
	padding: 5px 10px;	/*上下、左右へのボックス内の余白*/
}
/*h3タグ*/
#main h3 {
	font-size: 14px;
	padding-left: 10px;
}
/*h2タグとh3タグの１文字目*/
#main h2::first-letter, #main h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
#main p {
	padding: 0 10px 20px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 10px;	/*上から10pxの場所に配置*/
}

/*コンテナー（メインメニュー、メイン画像とコンテンツを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	top: -20px;	/*上にずらす距離。この分headerに重なる。*/
}

/*「サービスのご案内」と「ご宿泊プラン」の一覧用ブロック
---------------------------------------------------------------------------*/

/*ボックスの設定*/
#main .listcover {
	margin:0 5px 15px;	/*ボックス間のスペース*/
}


/*ボックス内のh4タグと段落タグ設定*/
#main .list p, #main .list h4 {
	margin-left: 0;
}
#main .list p.p_migi {
	margin-right: 0;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;
	padding: 0;
	width: 100%;
	border: none;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,linear-gradient(#fff, #eee);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,linear-gradient(#fff, #eee);
}

#newinfo iframe{height: 450px;}	/*高さ*/

/*インドア
---------------------------------------------------------------------------*/

.flex_1box {
    display:block;
    padding:  5px;             /* 余白指定 */
}
 
.flex_1item {
    padding: 5px;
    margin:  5px;              /* 外側の余白 */
}
.flex_1item:nth-child(1) {width : 96%;display:block;}
 
.flex_1item:nth-child(2) {width : 96%;display:block;}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
#PageTopBtn {
bottom: -5px; /*下からのボタンの配置場所を指定*/}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl,img.fl3 {float: none;margin: 0;width: 95%;}
.sh{display:block;}
.pc{display:none;}
.fl-half{float:none;width:100%;margin-left:0;}

}