@charset "utf-8";
/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #483f2a;	/*全体の文字色*/
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント指定*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: url(../images/bg_header.png) left top;
	background-attachment: fixed;
	background-size: 20% auto;
	-webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
	margin: 0px;
	padding: 0px;
}
ul {
	list-style-type: none;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
}
table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}
iframe {
	width: 100%;
	border: none;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #483f2a;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;
}
a:hover {
	color: #8f7e58;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a.link {
	color: #663300;	/*リンクテキストの色*/
	text-decoration: none;
	font-weight: bold;
}
a.link:hover {
	color: #CC6633;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a.linkred {
	color: #f00;	/*リンクテキストの色*/
	text-decoration: none;
	font-weight: bold;
}
a.linkred:hover {
	color: #CC6633;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*写真装飾
---------------------------------------------------------------------------*/
img.hv:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);	/* Ie用 */
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
img.br {
	border-radius: 3px;
}
img.touka {
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
}
img.grow {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
img.grow:hover {
	-webkit-transform: scale(1.03, 1.03);
	-moz-transform: scale(1.03, 1.03);
	-ms-transform: scale(1.03, 1.03);
	-o-transform: scale(1.03, 1.03);
	transform: scale(1.03, 1.03);
}
.blinking {
	-webkit-animation: blink 0.6s ease-in-out infinite alternate;
	-moz-animation: blink 0.6s ease-in-out infinite alternate;
	animation: blink 0.6s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
@-moz-keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
@keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	border-top: 5px solid #d6ccb6;	/*上部の線の幅、線種、色*/
	background: rgba(14,72,234,0.85); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(14,72,234,0.8) 0%, rgba(35,28,109,0.8) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(14,72,234,0.8) 0%, rgba(35,28,109,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(14,72,234,0.8) 0%, rgba(35,28,109,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e48ea', endColorstr='#231c6d', GradientType=0 ); /* IE6-9 */
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 980px;	/*幅。「#menubar ul」と「#contents」と数字を揃える。*/
	height: 100px;	/*高さ*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 10px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 20px;	/*header #innerに対して上から20pxの場所に配置*/
}
/*ロゴ画像*/
header #logo img {
	width: 380px;
	height: auto;
}
/*電話番号パーツ*/
header #tel {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;	/*フォント種類*/
	position: absolute;
	right: 12px;	/*header #innerに対して右から10pxの場所に配置*/
	top: 50px;	/*header #innerに対して上から50pxの場所に配置*/
	background: url(../images/tel.png) no-repeat left center/25px;	/*電話アイコンの読み込み*/
	padding-left: 30px;
	font-size: 24px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
	color: #fff;
	font-weight: bold;
}
/*電話番号パーツの受付時間部分*/
header #tel span {
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を通常にする設定*/
}
/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	position: absolute;
	right: 10px;	/*header #innerに対して右から10pxの場所に配置*/
	top: 0px;	/*header #innerに対して上から0pxの場所に配置*/
	font-size: 18px;	/*文字サイズ*/
}
#contact a {
	text-decoration: none;
	display: inline-block;
	background: #ffb017;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#ffb017), to(#ff8a17));	/*グラデーション*/
	background: -webkit-linear-gradient(#ffb017, #ff8a17);	/*同上*/
	background: linear-gradient(#ffb017, #ff8a17);			/*同上*/
	color: #FFF;	/*文字色*/
	padding: 4px 20px 8px;	/*上、左右、下へのボックス内の余白*/
	border-radius: 0px 0px 8px 8px;	/*角丸のサイズ。左上、右上、右下、左下。*/
	box-shadow: 0px 4px 8px rgba(0,0,0,0.2);	/*右へ、下へ、ぼかし幅の順の影の設定。rgba以降は色の設定。「0,0,0」はrgbでの色で、黒。「0.2」が透明度で20%の意味。*/
	text-shadow: #a65b1e 0px -1px;	/*色、右へ、下へ、テキストの影の設定。下にマイナス設定をしているので上に影が入る事になる。*/
}
/*マウスオン時*/
#contact a:hover {
	padding: 8px 20px 12px;	/*上、左右、下へのボックス内の余白*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
#menubar {
	position: absolute;
	left: 0px;		/*「#menu-mainimg」に対して左から0pxの場所に配置。*/
	bottom: 0px;	/*「#menu-mainimg」に対して下から0pxの場所に配置。*/
	width: 100%;
}
#menubar ul {
	width: 980px;	/*幅。「header #inner」と「#contents」と数字を揃える。*/
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	border-left: 1px solid #fff;	/*左の線の幅、線種、色*/
	border-top: 1px solid #fff;		/*左の線の幅、線種、色*/
	border-right: 1px solid #fff;	/*左の線の幅、線種、色*/
	width: 22%;	/*メニュー幅*/
	margin-left: 2%;	/*メニュー同士の余白*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.6;	/*行間*/
	border-radius: 5px 5px 0 0;
}
#menubar li a {
	display: block;
	text-decoration: none;
	background: #ffb017;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#ffb017), to(#ff8a17));	/*グラデーション*/
	background: -webkit-linear-gradient(#ffb017, #ff8a17);	/*同上*/
	background: linear-gradient(#ffb017, #ff8a17);			/*同上*/
	padding: 8px 0px 8px 10px;	/*上、右、下、左への余白*/
	color: #FFF;
	border-radius: 5px 5px 0 0;
}
#menubar li a::first-letter {
	border-left: 3px solid #FFF;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
	padding-bottom: 18px;
}
/*英語表記*/
#menubar li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	padding-left: 15px;	/*アクセントラインと文字の間にとる余白*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
}
/*マウスオン時、現在表示中のメニュー設定*/
#menubar a:hover, #menubar li.current a {
	background: rgba(255,176,23,0.7);	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 980px;	/*幅。「header #inner」と「#menubar ul」と数字を揃える。*/
	margin: 0 auto;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*幅*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: rgba(255,255,255,0.8);	/*背景色（古いブラウザ用）*/
	padding: 7px 15px;	/*上下、左右への余白*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ*/
	border-left: solid 1px #d6ccb7;		/*左側への線の線種、幅、色*/
	border-top: solid 1px #d6ccb7;		/*上側への線の線種、幅、色*/
	border-right: solid 1px #d6ccb7;	/*右側への線の線種、幅、色*/
	border-bottom: solid 5px #8f7e58;	/*下側への線の線種、幅、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: rgba(255,255,255,0.8);	/*背景色（古いブラウザ用）*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #e4e4e4;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #8f7e58;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p, #main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}
/*セパレートタイプ
---------------------------------------------------------------------------*/
/*ボックスの設定*/
section.sepa {
	box-sizing: border-box;
	margin-bottom: 10px;	/*ボックス間のスペース*/
	position: relative;
	padding: 0 10px;	/*ボックス内の余白*/
	float: left;
	width: 100%;
}
section.sepa .left {
	padding-top: 10px;
	width: 27%;
	height: auto;
	float: left;
	text-align: center;
}
section.sepa .right {
	margin-top: 10px;
	width: 70%;
	height: auto;
	float: right;
	padding: 0;
}
/*ボックス内の段落タグ設定*/
section.sepa p {
	width: auto;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*ボックス内のh4タグ設定*/
section.sepa h4 {
	font-size: 100%;
	background: rgba(153,102,51,0.3);
	color: #fff;		/*文字色*/
	margin-bottom: 0.5em;
	letter-spacing: 1px;
	margin-top: 0px;
	padding: 3px 10px;
	border-radius: 2px;
	background-size: cover;
	border-left: 3px solid #FFF;
	border-bottom: 1px solid #FFF;
	/* box-shadow */
	box-shadow: 2px 2px 2px 0px #000000;
	-moz-box-shadow: 2px 2px 2px 0px #000000;
	-webkit-box-shadow: 2px 2px 2px 0px #000000;
}
section.sepa figure img {
	box-sizing: border-box;
	margin-bottom: 10px;
	width: 100%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border-radius: 3px;
	z-index: 1000;
}
section.sepa figure.link img {
	box-sizing: border-box;
	padding: 0px;
	background: none;
	margin-bottom: 10px;
	width: 100%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
}
section.map {
	box-sizing: border-box;
	margin: 10px 0 20px 0;
	padding: 5px;
	border-radius: 4px;
	background: #FFF;
	text-align: left;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
	color: #483f2a;
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右に回り込み*/
	width: 250px;	/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: rgba(255,255,255,0.8);	/*背景色（古いブラウザ用）*/
	padding: 7px 15px;	/*上下、左右への余白*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ*/
	border-left: solid 1px #d6ccb7;		/*左側への線の線種、幅、色*/
	border-top: solid 1px #d6ccb7;		/*上側への線の線種、幅、色*/
	border-right: solid 1px #d6ccb7;	/*右側への線の線種、幅、色*/
	border-bottom: solid 5px #8f7e58;	/*下側への線の線種、幅、色*/
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #d6ccb7;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #none;	/*背景色*/
	border-bottom: solid 1px #d6ccb7;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 10px;	/*メニュー内の余白。上下、左右への設定。*/
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #faf8f2;	/*背景色*/
	border: solid 1px #d6ccb7;	/*線の線種、幅、色*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #333;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 940px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 2%;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	padding: 10px 0;
	clear: both;
	text-align: center;
	background: #111;	/*背景色*/
	line-height: 1.5!important;
}
#copyright a {
	text-decoration: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 15px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}
/*各種DL設定
---------------------------------------------------------------------------*/
dl.type1 {
	margin: 0 0 20px 50px;
	padding: 0 10px;
	font-size: 120%;
}
dl.type1 dt {
	float: left;
	width: 150px;
	padding: 3px 0;
	text-align: right;
}
dl.type1 dd {
	padding: 3px 0px 3px 170px;
	color: coral;
}
dl.type2 {
	margin: 0 0 20px 0px;
	padding: 0 10px;
	font-size: 100%;
}
dl.type2 dt {
	float: left;
	width: 100px;
	padding: 3px 0;
	text-align: right;
}
dl.type2 dd {
	padding: 3px 0px 3px 120px;
}
/*質問*/
dl.qu {
	box-sizing: border-box;
	float: left;
	width: 100%;
	padding: 15px 15px 0 15px;
	font-size: 110%;
}
dl.qu dt {
	float: left;
	width: 25px;
	padding: 3px 0;
}
dl.qu dt img {
	width: 25px;
	height: auto;
}
dl.qu dd {
	padding: 3px 0 3px 50px;
	color: #0066CC;
	font-size: 110%;
}
/*回答*/
dl.an {
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	font-size: 100%;
	border-bottom: 1px solid #ccc;
}
dl.an dt {
	float: left;
	width: 25px;
	padding: 3px 0;
}
dl.an dt img {
	width: 25px;
	height: auto;
}
dl.an dd {
	padding: 3px 0 3px 50px;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*予約・お問い合わせ*/
dl.contact {
	margin: 10px 20px 20px 20px;
	width: auto;
}
dl.contact dt {
	float: left;
	width: 160px;
	padding: 5px 0 5px 10px;
	text-align: left;
	font-weight: normal;
	letter-spacing: 1px;
}
dl.contact dd {
	width: auto;
	padding: 5px 0 10px 180px;
	border-bottom: 1px solid #CCC;
	text-align: left;
}
/*リンク集*/
dl.link {
	margin: 10px 10px 20px 10px;
}
dl.link dt {
	float: left;
	width: 180px;
	padding: 5px 0px;
	text-align: right;
}
dl.link dd {
	padding: 5px 0px 5px 200px;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*テーブルフォーム　送信枠
---------------------------------------------------------------------------*/
ul.action {
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
	width: 220px;
	height: 40px;
	list-style-type: none;
	text-align: center;
}
ul.action li {
	margin: 0 10px 0 0;
	padding: 0;
	width: 105px;
	height: 40px;
	float: left;
	text-align: center;
}
ul.action li.nom {
	margin: 0;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 85%;
	font-weight: bold;
}
#page-top a {
	background: #006699;
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
#page-top a:hover {
	text-decoration: none;
	background: #006699;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 12px;
	line-height: 12px;
	border-radius: 2px;
	margin-right: 5px;
	margin-left: 7px;
	padding: 3px 5px;
	/* box-shadow */
	box-shadow: 1px 1px 1px 0px #000;
	-moz-box-shadow: 1px 1px 1px 0px #000;
	-webkit-box-shadow: 1px 1px 1px 0px #000;
}
/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15, .mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #a2000d;
}
.pr {
	font-size: 10px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.l {
	text-align: left;
}
.touka {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
body::before {
	background: url('../images/bg_header.png') left top;
	background-size: 30% auto;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: auto;
}
/*メインメニュー
---------------------------------------------------------------------------*/
#menubar ul {
	width: auto;
	padding-bottom: 11px;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	width: 50%;
	margin: 0;
	border-bottom: 1px solid #dcdcdc;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 0px;
}
#menubar li a {
	border-radius: 0px;
}
#menubar li:nth-child(odd) {
	border-right: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}
/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}
/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}
/*お問い合わせ*/
dl.contact {
	margin: 10px 10px 20px 10px;
}
dl.contact dt {
	float: none;
	width: auto;
	padding: 10px 0 0 0;
	text-align: left;
	font-size: 100%;
}
dl.contact dd {
	width: auto;
	padding: 0;
	border-bottom: none;
	text-align: left;
}
textarea {
	width: 100% !important;
}
}

/*画面幅650px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:650px) {
/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 50%;
}
/*電話番号パーツ*/
header #tel {
	background: none;
	line-height: 1.2;
	text-align: right;
}
/*電話番号パーツの受付時間部分*/
header #tel span {
	display: block;
}
/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	font-size: 14px;
}
#contact span {
	display: none;
}
/*ボックスの設定*/
section.sepa {
	box-sizing: border-box;
	margin-bottom: 10px;	/*ボックス間のスペース*/
	position: relative;
	padding: 0px;	/*ボックス内の余白*/
	float: left;
}
section.sepa .left {
	padding-top: 10px;
	width: auto;
	height: auto;
	float: none;
	text-align: center;
}
section.sepa .right {
	margin-top: 10px;
	width: auto;
	height: auto;
	float: none;
	padding: 0;
}
section.sepa h4 {
	font-size: 100%;
	font-weight: normal;
	text-align: center;
}
dl.type1 {
	margin: 10px 10px 20px 10px;
}
dl.type1 dt {
	float: none;
	width: auto;
	padding: 0;
	text-align: center;
}
dl.type1 dd {
	padding: 0 0 10px 0;
	text-align: center;
}
dl.type2 {
	margin: 10px 10px 20px 10px;
}
dl.type2 dt {
	float: none;
	width: auto;
	padding: 0;
	text-align: center;
}
dl.type2 dd {
	padding: 0 0 10px 0;
	text-align: center;
}
/*予約・お問い合わせ*/
dl.contact {
	margin: 0;
	width: auto;
}
dl.contact dt {
	float: none;
	width: auto;
	padding: 5px 0px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
}
dl.contact dd {
	width: auto;
	padding: 5px 0px;
	border-bottom: 1px solid #eee;
	text-align: left;
}
/*リンク集*/
dl.link {
	margin: 10px 10px 20px 10px;
}
dl.link dt {
	float: none;
	width: auto;
	margin: 5px 0;
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
}
dl.link dd {
	padding: 5px 0px;
	text-align: justify;
	text-justify: inter-ideograph;
}
}

/*画面幅480px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 80%;
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	height: 160px;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 10px;
	top: 10px;
}
/*電話番号パーツ*/
header #tel {
	clear: both;
	background: none;
	line-height: 1.2;
	text-align: center;
	left: 10px;	/*header #innerに対して右から10pxの場所に配置*/
	top: 70px;	/*header #innerに対して上から50pxの場所に配置*/
	padding-left: 0;
}
/*「ご予約・お問い合わせはこちらから」ボタン
---------------------------------------------------------------------------*/
#contact {
	position: absolute;
	left: 10px;
	top: 100px;
}
#contact a {
	display: block;
	text-align: center;
	border-radius: 8px;
}
/*メインメニュー
---------------------------------------------------------------------------*/
#menubar-s {
	border-radius: 8px;
	border: 1px solid #d6ccb7;
	margin: 10px 10px 20px;
	background: #fff;
}
#menubar-s li {
	border-top: 1px solid #d6ccb7;
	background: url(../images/arrow1.png) no-repeat 95% center/19px;
}
#menubar-s li:first-child {
	border-top: none;
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 8px;
}
/*英語表記*/
#menubar-s li span {
	display: none;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 0px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-top: none;
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;	/*背景色*/
	z-index: 200;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 2px;	/*角丸のサイズ*/
	margin-bottom: 7px;	/*バー同士の余白*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}
/*「お部屋のご紹介」と「ご宿泊プラン」の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p, #main section.list2 p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img, #main section.list2 figure img {
	float: none;
	width: 100% !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4, #main section.list2 h4 {
	margin-left: 0;
}
/*「ご宿泊プラン」の各ブロック内のテーブル
---------------------------------------------------------------------------*/
#main section.list table, #main section.list2 table {
	margin-left: 0;
	width: 100%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#faf8f2));	/*グラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #faf8f2);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #faf8f2);			/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#faf8f2));	/*グラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#fff, #faf8f2);	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #faf8f2);
}
/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
/*その他
---------------------------------------------------------------------------*/
.ws, .wl {
	width: 90%;
}
}
