@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body{
	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background : url(../images/bg.jpg) 0% 0% / auto auto repeat scroll padding-box border-box white;	/*背景色*/

}
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: #666;	/*リンクテキストの色*/
}
a:hover{
	color: #9d0909;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
	width: 977px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
  background-color : white;
  padding-left : 10px;
  padding-right : 10px;
}

/*ヘッダーブロック*/
header{
	width: 100%;	/*ブロックの幅*/
	height : 100px;	/*ブロックの高さ*/
	position: relative;
}
/*h1ロゴの設定*/
header h1{
	position: absolute;
	left : 5px;	/*ヘッダーブロックに対して左から28pxの位置に配置*/
	top : 10px;	/*ヘッダーブロックに対して上から28pxの位置に配置*/

  font-weight : normal;
  margin-left : 0px;
  margin-right : 0px;
  margin-bottom : 0px;
  font-size : 12px;
  padding-left : 5px;
  text-decoration : none;
}
/*電話番号ボックスの設定*/
header address{
	position: absolute;		/*ヘッダーブロックに対して上から24pxの位置に配置*/
	right : 20px;	/*ヘッダーブロックに対して右から40pxの位置に配置*/

  top : 5px;
}
/*電話番号の文字設定*/
header address .tel{
	font-size: 18px;	/*文字サイズ*/
	color: #f57499;		/*文字色*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menu ul{
	padding-left: 0px;
	margin-bottom: 25px;
	height: 56px;
}
/*メニュー１個ごとの設定*/
nav#menu ul li{
	float: left;
	border-top: 4px solid rgba(0,0,0,0);	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	margin-left: 1px;
}
nav#menu ul li a{
	color : #ffffff;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 121px;	/*メニュー幅*/
	text-align: center;
	padding : 3px 0px 3px;padding-left : 0px;
	background-color : #9d0909;	/*背景色（古いブラウザだとここの色のみが出ます）*/	/*グラデーション*/
	background-image: -webkit-linear-gradient(#9d0909, #c30b0b);	/*同上*/
	background-image: linear-gradient(#9d0909, #c30b0b);
}
/*最初のメニューの設定*/
nav#menu ul li:first-child{
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menu ul li a:hover{
	background: #333;
	color: #FFF;
}
/*英語表記の設定*/
nav#menu ul li a span{
	font-size : 11px;	/*文字サイズ*/
	color : #eeeab3;	/*文字色*/
	display: block;
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 15px;
  padding-bottom : 8px;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg{
	clear: left;
	width: 977px;
	height: 260px;
	position: relative;
}
#mainimg .slide_file{
	display: none;
}
#slide_image{
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2{
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom : 10px;
}
/*mainコンテンツのh1タグの設定*/
#main h1{
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom : 5px solid #9d0909;	/*下側の線の幅、線種、色*/

}
/*MENUページで使っているh1見出しタグのスタイル*/
#main h1.type1{
	background-color : #ffffff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	color : #9d0909;	/*文字色*/
	border-top : 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right : 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left : 1px solid #d2d2d2;		/*左の線の幅、線種、色*/

  margin-top : 10px;
}
/*mainコンテンツの段落タグ設定*/
#main p{
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub{
	float: right;	/*右側に回り込み*/
	width: 260px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh1タグ設定*/
#sub h1{
	color: #FFF;	/*文字色*/
	font-size: 100%;
	padding: 5px 40px 5px 10px;	/*左から、上、右、下、左への余白*/
	background-color: #9d0909;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg_mark.png), -webkit-gradient(linear, left top, left bottom, from(#9d0909), to(#c30b0b));	/*グラデーション*/
	background-image: url(../images/bg_mark.png), -webkit-linear-gradient(#9d0909, #c30b0b);	/*同上*/
	background-image: url(../images/bg_mark.png), linear-gradient(#9d0909, #c30b0b);
	background-repeat: no-repeat;
	background-position: 95% center;
	border-top: 1px solid #c50b0b;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #790707;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #790707;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #c50b0b;		/*左側の線の幅、線種、色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul li a{
	text-decoration: none;
	display: block;
	padding-left:10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-bottom: 1px dashed #666;	/*下の線の幅、線種、色*/
	color: #FFF;		/*文字色*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 ul li a{
	background: url(none);
}
/*マウスオン時の設定*/
#sub ul li a:hover{
	background: #FFF url(none);	/*背景色*/
	color: #9d0909;			/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1{
	color: #FFF;		/*文字色*/
	padding: 10px;		/*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 a{
	color : #ffffff;	/*文字色*/

  text-decoration : none;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer{
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
  background-color : #cc0000;
  color : white;
}
footer .pr{
	display: block;
	font-size: 80%;
}
footer a{
	text-decoration: none;
  color : white;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article{
	height : 340px;	/*ボックスの高さ*/
	width : 190px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color : #ffffff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image : linear-gradient(#ffffff, #e6e6e6);	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/			/*同上*/
	padding : 23px 10px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 10px 1em;
	position: relative;
	border : 1px solid #cccccc;
}
/*ボックス内の段落タグ設定*/
#main section.list article p{
	padding: 0px;
	color : #3e3e3e;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/

  text-align : center;
}
/*ボックス内のh1タグ設定*/
#main section.list article h1{
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #9d0909;	/*文字色*/
	border-bottom : 2px dotted #9d0909;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
  text-align : center;
}
/*ふきだしアイコンの位置*/
#main section.list article img.icon{
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}
/*マウスオン時のボックス*/
/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff{
	margin-right: 10px;
	margin-left: 10px;
}
/*左側ボックス*/
#main .staff .left{
	float: left;	/*左に回り込み*/
	width: 250px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left p{
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right{
	width: 400px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブル内の左側*/
#main .staff .right .ta1 th{
	width : auto;	/*幅*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#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 #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img{
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	padding : 10px;padding-bottom : 10px;
	text-align: center;
	background-color : #faf9e7;	/*背景色*/

  font-weight : normal;
  width : 180px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop{
	clear: both;
	text-align: right;
}
#pagetop a{
	color: #FFF;	/*文字色*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
/*マウスオン時*/
#pagetop a:hover{
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look{
	background: #dcdcdc;
}
.mb1em{
	margin-bottom: 1em;
}
.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1{
	color: #f61468;
}
.pr{
	font-size: 10px;
}
.btn{
	font-size: 13px;
}
.wl{
	width: 96%;
}
.ws{
	width: 50%;
}
.c{
	text-align: center;
}
figcaption{
	font-size: 11px;
}
.pagetop{
	clear: both;
	text-align: right;
	font-size: 11px;
	letter-spacing: 0.2em;
}
#main section.list article a{
  text-decoration : none;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu{
	font-size : 14px;	/*文字サイズ*/
	padding-top : 10px;
	padding-bottom : 10px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li{
	display: inline;
}
ul.navmenu li a{
	background : url(../images/arrow.png) left center / auto auto no-repeat scroll padding-box border-box transparent;	/*矢印マークの設定*/
	padding-right: 20px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover{
	background : url(../images/arrow.png) 2px center / auto auto no-repeat scroll padding-box border-box transparent;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

#top01{
  font-size : 12px;
  color : white;
  background-color : #cc0000;
  text-align : center;
  font-weight : normal;
}

.map_miti{
  border-bottom-width : 1px;
  border-bottom-style : dashed;
  border-bottom-color : silver;
}

.linkban img{
  padding-bottom : 3px;
}

.t1a{
  background-color : #f57499;
  color : white;
  padding-top : 2px;
  padding-left : 2px;
  padding-right : 2px;
  padding-bottom : 2px;
  margin-top : 10px;
}

/*店舗サムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list3 section{
	border-radius: 10px;		/*角丸のサイズ*/
	float: left;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;
	margin-left: 10px;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	font-size : 12px;	/*文字サイズ*/
	text-align: center;	/*中身をセンタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
}
#main .list3 section a{
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding : 10px;	/*ボックス内の余白*/
	display: block;
	width: 140px;	/*幅*/	/*高さ*/

  height : 130px;
}
/*スタッフ名*/
#main .list3 section h4{
	color : #cc0000;	/*文字色*/
	font-size : 12px;
  text-align : center;
  line-height : 12px;
  margin-top : 0px;
  margin-left : 0px;
  margin-right : 0px;
  margin-bottom : 0px;
}
/*サムネイル内のアイコン位置*/
#main .list3 section .icon{
	position: absolute;
	right: 2px;		/*ボックスに対して、右側から2pxの位置に配置*/
	bottom: 2px;	/*ボックスに対して、下側から2pxの位置に配置*/
}
/*マウスオン時のボックス*/
#main .list3 section a:hover{
	background: #ffeac9;	/*背景色*/
}

