@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
/*	background: #c46868;*/	/*背景色*/
	background: #800000;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #ebd477;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}




/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 20px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 997px;
	margin: 0px auto;
	padding-top: 30px;
}
#top #contents {
	padding-top: 0px;
}
/*各ページコンテンツ上部にある背景画像入りの大きな見出し（共通設定）*/
#contents > h2 {
	font-size: 20px;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: 0.4em;	/*文字間隔を広くとる設定*/
	border: 1px solid #666;	/*枠線の幅、線種、色*/
	padding-left: 40px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 10px #FFF inset;
	box-shadow: 0px 0px 10px 5px #FFF inset;
	line-height: 200px;	/*高さ*/
	color: #333;
	text-shadow: 1px 1px #FFF, 0px 0px 5px #FFF;
}
/*about(当館について)*/
#contents h2#title-about {
	background: url(../images/title_about.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_about.jpg) no-repeat right center / auto 100%;
}
/*room(お部屋のご紹介)*/
#contents h2#title-room {
	background: url(../images/title_room.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_room.jpg) no-repeat right center / auto 100%;
}
/*plan(ご宿泊プラン)*/
#contents h2#title-plan {
	background: url(../images/title_plan.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_plan.jpg) no-repeat right center / auto 100%;
}
/*faq(よく頂く質問)*/
#contents h2#title-faq {
	background: url(../images/logo_nishino.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/logo_nishino.jpg) no-repeat right center / auto 120%;
}
/*access(お宿までのアクセス)*/
#contents h2#title-access {
	background: url(../images/title_access.jpg) no-repeat right center;	/*古いブラウザ用*/	
	background: url(../images/title_access.jpg) no-repeat right center / auto 100%;
}
/*recruit(採用情報)*/
#contents h2#title-recruit {
	background: url(../images/title_recruit.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_recruit.jpg) no-repeat right center / auto 100%;
}
/*contact(ご予約・お問い合わせ)*/
#contents h2#title-contact {
	background: url(../images/title_contact.jpg) no-repeat right center;	/*古いブラウザ用*/
	background: url(../images/title_contact.jpg) no-repeat right center / auto 100%;
}

/*メインコンテンツ（右ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border-bottom: 3px solid #ebd477;
	font-weight: normal;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	padding: 15px 15px 5px;	/*上、左右、下への余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background: #b05d5d;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#b05d5d), to(#964f4f));	/*グラデーション*/
	background: -webkit-linear-gradient(#b05d5d, #964f4f);	/*同上*/
	background: linear-gradient(#b05d5d, #964f4f);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #f88484;		/*線の幅、線種、色*/
	font-weight: normal;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 15px 15px;	/*左から、上、左右、下への余白*/
}

/*room.html、plan.html内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: #FFF;		/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#d2d2d2));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #d2d2d2);	/*同上*/
	background: linear-gradient(#FFF, #d2d2d2);			/*同上*/
	position: relative;
	overflow: hidden;
	color: #333;	/*文字色*/
	padding: 20px;	/*ボックス内の余白*/
}
#main section.list a {
	color: #333;	/*文字色*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding: 20px;	/*ボックス内の余白*/
	margin: -20px;
}
#main section.list a:hover {
	background: #fffabb;	/*マウスオン時の背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #c46868;		/*文字色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #c46868;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

/*room.html、plan.htmlで使っているボックス右下のマーク画像設定
---------------------------------------------------------------------------*/
.mark1 {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #b10f0f;	/*背景色*/
	text-align: center;
	display: block;
	width: 200px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(60px,10px);
	-ms-transform: rotate(-45deg) translate(60px,10px);
	transform: rotate(-20deg) translate(60px,10px);
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	padding: 10px 0px;	/*上下、左右への余白*/
	border: 1px solid #666;			/*枠線の幅、線種、色*/
	color: #333;
}
/*subコンテンツの段落タグ設定*/
#sub p {
	padding: 10px 0px 15px;	/*左から、上、左右、下への余白*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub #menubar ul,
#sub ul.submenu {
	border-top: 1px solid #f88484;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #f88484;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #f88484;	/*左側の線の幅、線種、色*/
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub #menubar ul li a,
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #f88484;	/*下側の線の幅、線種、色*/
	background: #964f4f;	/*背景色*/
	line-height: 36px;
	padding: 0px 10px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時と現在表示中メニュー設定*/
#sub #menubar ul li a:hover,
#sub ul.submenu li a:hover,
#sub #menubar ul li.current a,
#sub ul.submenu li.current a {
	background: #FFF;	/*背景色*/
	color: #333;		/*文字色*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto 30px;
	text-align: center;
	font-size: 12px;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ブロックの高さ*/
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #FFF;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	background: #FFF;	/*背景色*/
	color: #333;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #dcdcdc;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	color: #FFF;	/*文字色*/
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));	/*グラデーション*/
	background: -webkit-linear-gradient(#333, #111);	/*同上*/
	background: linear-gradient(#333, #111);			/*同上*/
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #666;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;
	color: #FFF;
}

/*FAQページの設定
---------------------------------------------------------------------------*/
/*FAQブロック全体*/
dl.faq {
	padding: 0px 15px;	/*上下、左右にとる余白*/
}
/*質問ブロック*/
dl.faq dt {
	font-weight: bold;	/*文字を太字にする設定*/
	color: #fff799;		/*文字色*/
}
/*回答ブロック*/
dl.faq dd {
	border-bottom: 1px solid #f88484;	/*下線の幅、線種、色*/
	margin-bottom: 10px;
	padding-bottom: 10px;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #b05d5d;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #ebd477;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header .inner {
	width: auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	width: 50%;
}
/*「ご予約・お問い合わせ」ボタン設定*/
header #toiawase a {
	padding: 10px 20px;
	font-size: 14px;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	margin-top: 170px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
/*	padding-top: 180px;*/
	padding-top: 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub #menubar h2 {
	display: none;
}
/*メニューブロック全体(※menubarのみ)の設定*/
#sub #menubar ul {
	position: absolute;
	left: 0px;
	top: 100px;
}
/*メニュー１個ごと(※menubarのみ)の設定*/
#sub #menubar ul li {
	float: left;
	width: 50%;
}
#sub #menubar ul li a {
	line-height: 40px;
}
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #f88484;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header .inner {
	width: auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	width: 90%;
}
/*「ご予約・お問い合わせ」ボタン設定*/
header #toiawase a {
	display :none;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	margin-top: 170px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
	padding-top: 10px;
}
/*各ページコンテンツ上部にある背景画像入りの大きな見出し（共通設定）*/
#contents > h2 {
	font-size: 16px;
	letter-spacing: 0.2em;
	padding-left: 20px;
	margin-bottom: 10px;
	line-height: 100px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 16px;
	letter-spacing: normal;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub #menubar h2 {
	display: none;
}
/*メニューブロック全体(※menubarのみ)の設定*/
#sub #menubar ul {
	position: absolute;
	left: 0px;
	top: 100px;
}
/*メニュー１個ごと(※menubarのみ)の設定*/
#sub #menubar ul li {
	float: left;
	width: 50%;
}
#sub #menubar ul li a {
	line-height: 40px;
}
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #f88484;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center), url(../images/img_momiji.png) no-repeat right -10px;	/*マイナスアイコンと背景画像*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*同上*/
}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*プラスアイコンと背景画像*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/img_momiji.png) no-repeat right -10px;	/*同上*/
}
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl {
	height: auto;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*room.html、plan.html内の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

}
