@charset "utf-8";

/*Bootstrap.min.cssの修正
(padding-right,left:元15px:Bootstrap未使用のページとずれるため)
---------------------------------------------------------------------------*/
.container-fluid{
	padding-right:0px;
	padding-left:0px;
	margin-right:auto;
	margin-left:auto
}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ、行間、フォント指定*/
	background: #421313;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,li{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
	text-decoration: underline;
}
a:hover {
	color: #ebd477;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #421313 url(../images/IMG_5536_3.jpg) no-repeat center center;	/*背景画像と背景色（※古いブラウザ用）*/
	background: url(../images/IMG_5536_3.jpg) no-repeat center center, -webkit-gradient(linear, left top, left bottom, from(#421313), to(#421313));	/*グラデーション*/
	background: url(../images/IMG_5536_3.jpg) no-repeat center center, -webkit-linear-gradient(#421313 40%, #421313);	/*同上*/
	background: url(../images/IMG_5536_3.jpg) no-repeat center center, linear-gradient(#421313 40%, #421313);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 970px;	/*ブロック幅*/
	height: 100px;	/*ブロックの高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 24px;	/*innerに対して上から24pxの場所に配置*/
}
/*「ご予約・お問い合わせ」ボタン設定*/
header #toiawase a {
	text-decoration: none;
	background: #d38c29;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#d99e4a), to(#d99c3e));	/*グラデーション*/
	background: -webkit-linear-gradient(#f3e3d3, #d99e4a 49%, #d38c29 50%, #d99c3e);	/*同上*/
	background: linear-gradient(#f3e3d3, #d99e4a 49%, #d38c29 50%, #d99c3e);			/*同上*/
	position: absolute;
	top: -5px;		/*innerに対して上から-5pxの場所に配置*/
	right: 20px;	/*innerに対して右から20pxの場所に配置*/
	text-align: center;	/*文字をセンタリング*/
	border: 1px solid #FFF;
	-webkit-box-shadow: 0px 0px 0px 4px #e4b97d, 0px 0px 10px #bc6614 inset;	/*影の設定*/
	box-shadow: 0px 0px 0px 4px #e4b97d, 0px 0px 10px #bc6614 inset;			/*同上*/
	display: inline-block;
	padding: 15px 50px;	/*上下、左右への余白*/
	border-radius: 0 0 6px 6px;	/*角丸のサイズ。左上、右上、左下、右下への順*/
	text-shadow: 0px -1px #bc6614;	/*テキストの影。左右への設定、上下への設定、色設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
}
header #toiawase a:hover {
	background: #ffb750;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#ffb750), to(#fbb447));	/*グラデーション*/
	background: -webkit-linear-gradient(#fee2c7, #ffb750 49%, #ffa627 50%, #fbb447);	/*同上*/
	background: linear-gradient(#fee2c7, #ffb750 49%, #ffa627 50%, #fbb447);			/*同上*/
	color: #FFF;	/*文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	display: block;
	margin-left: auto;
	margin-right: auto;
/*	width: 100%;*/
	max-width:  960px;
/*	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: 970px;
	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: 96px;	/*高さ*/
	color: #333;
	text-shadow: 1px 1px #FFF, 0px 0px 5px #FFF;
	white-space: nowrap;
}
/*profile*/
#contents h2#title-profile {
/*	background: url(../images/title_1.jpg) no-repeat right center;
	background: url(../images/title_1.jpg) no-repeat right center / auto 100%; */
	background: url(../images/title_1.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_1.jpg) no-repeat center / auto 100%;
}
/*kokoroe*/
#contents h2#title-kokoroe {
	background: url(../images/title_2.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_2.jpg) no-repeat center / auto 100%;
}
/*ryoukin*/
#contents h2#title-ryoukin {
	background: url(../images/title_3.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_3.jpg) no-repeat center / auto 100%;
}
/*kannai*/
#contents h2#title-kannai {
	background: url(../images/title_4.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_4.jpg) no-repeat center / auto 100%;
}
/*chizu*/
#contents h2#title-chizu {
	background: url(../images/title_5.jpg) no-repeat center;	/*古いブラウザ用*/	
	background: url(../images/title_5.jpg) no-repeat center / auto 100%;
}
/*link*/
#contents h2#title-link {
	background: url(../images/title_6.jpg) no-repeat center;	/*古いブラウザ用*/	
	background: url(../images/title_6.jpg) no-repeat center / auto 100%;
}
/*ivent*/
#contents h2#title-ivent {
	background: url(../images/title_7.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_7.jpg) no-repeat center / auto 100%;
}
/*contact*/
#contents h2#title-contact {
	background: url(../images/title_8.jpg) no-repeat center;	/*古いブラウザ用*/
	background: url(../images/title_8.jpg) no-repeat center / auto 100%;
}


/*汎用*/
.no_ul {
	
}

/*メインコンテンツ（右ブロック）
---------------------------------------------------------------------------*/
#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;	/*文字間隔を広くとる設定*/
  	line-height: 35px;	/*高さ*/
/*	background: url(../images/img_momiji.png) no-repeat right -10px;*/
	padding: 15px 15px 5px;	/*上、左右、下への余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background: #4c0808;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4c0808), to(#250b0b));	/*グラデーション*/
	background: -webkit-linear-gradient(#4c0808, #250b0b);	/*同上*/
	background: linear-gradient(#4c0808, #250b0b);			/*同上*/
	font-size: 100%;
    line-height: 25px;	/*高さ*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #ebd477;		/*線の幅、線種、色*/
/*	border: 1px solid #7e2424;		/*線の幅、線種、色*/
	font-weight: normal;	/*hタグの太字を標準にする設定。太字がいいならこの１行削除。*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 15px 15px;	/*左から、上、左右、下への余白*/
/*	word-break: keep-all;*/
}
/*main imgの設定(inline指定)*/
.pc_sp {
	display:inline;
}
.pc_only {
	display:inline;
}

/*chizu.html内のgoogle map用
---------------------------------------------------------------------------*/
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 213px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background: #111;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#303030), to(#111));	/*グラデーション*/
	background: -webkit-linear-gradient(#303030, #111);	/*同上*/
	background: linear-gradient(#303030, #111);			/*同上*/
	line-height: 35px;	/*高さ*/
	padding: 10px 0px;	/*上下、左右への余白*/
	border: 1px solid #000;			/*枠線の幅、線種、色*/
}

/*subコンテンツの段落タグ設定*/
#sub p {
	padding: 10px 0px 15px;	/*左から、上、左右、下への余白*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub #menubar ul,
#sub ul.submenu {
	border-top: 1px solid #7e2424;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #7e2424;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #7e2424;	/*左側の線の幅、線種、色*/
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub #menubar ul li a,
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #7e2424;	/*下側の線の幅、線種、色*/
	background: #250b0b;	/*背景色*/
	line-height: 36px;
	padding: 0px 10px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub #menubar ul #spacer1,
#sub #menubar ul #spacer2 {
	display: none;
}
/*マウスオン時と現在表示中メニュー設定*/
#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: #b01717;	/*背景色*/
	color: #FFF;		/*文字色*/
}
/*スクロールについてくるフローティングメニュー用*/
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto 30px;
	text-align: center;
	font-size: 12px;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
	word-break: keep-all;
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #421313 url(../images/IMG_5536_3.jpg) no-repeat center center;	/*背景色と背景画像*/
	color: #333;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	vertical-align: text-bottom;
/*	position: relative;*/		/* フッター部の配置用に定義 */
/*	min-height: 100%;*/		/* 縦の表示領域を100% */

}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #333;		/*文字色*/
}

.row-center{
	text-align:center;
	letter-spacing:-0.4em;
}
.row-center > [class*='col-'] {
	display:inline-block;
	letter-spacing:0;
	vertical-align:top;
	float:none !important;
}
.row-center.va-bottom > [class*='col-'] {
	vertical-align:bottom;
}

/*Footer下隙間対策
---------------------------------------------------------------------------*/
body > img {
	display:none;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #fff;				/*文字色*/
	font-size: 10px;			/*文字サイズ*/
	border: 1px solid #7e2424;	/*線の幅、線種、色*/
	background: #250b0b;		/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;				/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #b01717;
	color: #FFF;
}
/*index.htmlのPAGE TOP設定
---------------------------------------------------------------------------*/
#page-top {
	border: 1px solid #7e2424;	/*線の幅、線種、色*/
	position: fixed;
	bottom: 20px;
	right:  80px;
	font-size: 10px;
	display:none;
}
#page-top a {
	background: #250b0b;
	text-decoration: none;
	color: #fff;
	width: 10em;
/*	padding: 2px 0;*/
	text-align: center;
	display: block;
}
#page-top a:hover {
	text-decoration: none;
	background: #b01717;
}

/*その他
---------------------------------------------------------------------------*/
.color1 {
	color: #ebd477;
}
.color2 {
	color: 	#ff0000
}
.color3 {
	color: 	#ff33ff
}
.pr {
	font-size: 10px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
/*.tdftad {
	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: 210px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
	padding-top: 170px;
/*	padding-top: 260px;*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*main imgの設定(pc_onlyは表示させない)
--------------------------------------------------------------------------*/
.pc_sp {
	display:inline;
}
.pc_only {
	display:none;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub #menubar h2 {
	display: none;
}
/*メニューブロック全体(※menubarのみ)の設定*/
#sub #menubar ul {
	position: absolute;
	left: 0px;
	top: 100px;
}
/*メニュー１個ごと(※menubarのみ)の設定*/
#sub #menubar ul li {
	float: left;
	width: 33.33%;
/*	width: 50%;*/
}
#sub #menubar ul li a {
	line-height: 40px;
}
nav#menubar ul li {
	border-right: 1px solid #7e2424;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#sub #menubar ul #spacer1,
#sub #menubar ul #spacer2 {
	display: block;
	line-height: 40px;
/*	border-bottom: 1px solid #7e2424;*/	/*下側の線の幅、線種、色*/
	background: #250b0b;	/*背景色*/
	border-right: 0px solid #7e2424;	/*右側の線の幅、線種、色*/
}
/*index.html内のFB,天気予報を非表示
--------------------------------------------------------------------------*/
.none {
	display: none;
}

}

/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header .inner {
	width: auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	width: 90%;
}
/*「ご予約・お問い合わせ」ボタン設定*/
header #toiawase a {
	display :none;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	margin-top: 300px;
/*	margin-top: 250px;*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0px 10px;
	padding-top: 210px;
/*	padding-top: 180px;*/
/*	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;
}
/*main imgの設定(pc_onlyは表示させない)
--------------------------------------------------------------------------*/
.pc_sp {
	display:inline;
}
.pc_only {
	display:none;
}
  
/*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{
	border-right: 1px solid #7e2424;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#sub #menubar ul #spacer1 {
	display: block;
	line-height: 40px;
/*	border-bottom: 1px solid #7e2424;*/	/*下側の線の幅、線種、色*/
	background: #250b0b;	/*背景色*/
	border-right: 0px solid #7e2424;	/*右側の線の幅、線種、色*/
}
#sub #menubar ul #spacer2 {
	display: none;
}
/*index.html内のFB,天気予報を非表示
--------------------------------------------------------------------------*/
.none {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
/*#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 0px;
	background-image: -webkit-gradient(linear, left top, right bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(#ffffff, #000000);
	background-image: linear-gradient(to right,#ffffff, #000000);
	padding: 15px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}*/

}