@charset "utf-8";



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


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

/*全体の設定
---------------------------------------------------------------------------*/
body{
	margin: 0px;
	padding: 0px;
	color : white;	/*全体の文字色*/
	background : url(../images/bg.jpg) 50% 0% / auto auto no-repeat scroll padding-box border-box black;	/*背景色*/
	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;
}
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: #fff;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover{
	color: #FFE900;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*コンテナー（HPを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container{
	max-width: 1000px;	/*最大幅の指定。「width」でなく「max-width」をう事で画面幅を小さくした際も中身が自動縮小される。（※このテンプレートの場合）*/
	margin: 0 auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	width : 1000px;	/*ブロックの幅*/
	height : 180px;	/*ブロックの高さ*/
	position: relative;
  margin-left : auto;
  margin-right : auto;
}
/*h1ロゴの設定*/
header h1{
	position: absolute;	/*ヘッダーブロックに対して左から28pxの位置に配置*/	/*ヘッダーブロックに対して上から28pxの位置に配置*/

  top : 6px;
  left : 0px;
  }header h1 img{
	position : relative;	/*ヘッダーブロックに対して左から28pxの位置に配置*/	/*ヘッダーブロックに対して上から28pxの位置に配置*/

  top : 16px;
  left : 0px;
}
/*電話番号ボックスの設定*/
header address{
	position: absolute;
	top : 25%;		/*ヘッダーブロックに対して上から24pxの位置に配置*/	/*ヘッダーブロックに対して右から40pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	padding : 10px;padding-bottom : 10px;padding-left : 10px;		/*ボックス内の余白*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定。*/

  margin-top : 0px;
  margin-left : 0px;
  margin-right : 0px;
  margin-bottom : 0px;
  right : 0px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar{
	position: absolute;
	left: 5%;	/*メイン画像ブロックに対して左から5%の場所に配置*/
	top: 30%;	/*メイン画像ブロックに対して上から30%の場所に配置*/
}
/*メニュー１個あたりの設定*/
#menubar li{
	float: left;	/*左に回り込み*/
	margin-right: 10px;	/*メニュー間の余白*/
}
#menubar li a{
	text-decoration: none;
	display: block;
	color: #999;	/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: #fff padding-box;	/*背景色。padding-boxは、下で設定しているボーダーの半透明が反映される為に指定。*/
	width: 100px;		/*メニューの幅*/
	line-height: 100px;	/*メニューの高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
	border: 10px solid rgba(255,255,255,0.4);	/*枠線の幅、線種、rgb指定での色。255,255,255は白のことで、0.4が透明度40%の事。*/
}
/*マウスオン時*/
#menubar li a:hover{
	-webkit-box-shadow: 0px 0px 30px rgba(255,255,255,0.8);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。255,255,255は白のことで、0.8が透明度80%の事。*/
	box-shadow: 0px 0px 30px rgba(255,255,255,0.8);
	color: #333;		/*文字色*/
}
/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s{
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr{
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents{
	clear: both;
	overflow: hidden;
	padding-bottom: 40px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main{
	float: right;	/*右に回り込み*/
	overflow: hidden;
	width: 75%;	/*ボックス幅*/
}

/*mainコンテンツのh2タグの設定*/
#main h2{
	background-color : #574f39;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: url(../images/arrow1.png) , -webkit-gradient(linear, left top, left bottom, from(#999476), to(#574f39));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/arrow1.png) , -webkit-linear-gradient(#999476, #574f39);	/*同上*/
	background: url(../images/arrow1.png) , linear-gradient(#999476, #574f39);			/*同上*/
	background-repeat: no-repeat;		/*背景の丸いマーク画像をリピートしない設定*/
	background-position: left center;	/*背景の丸いマーク画像の位置*/
	font-size : 100%;
	padding : 0px 10px 0px 34px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 10px;	/*角丸のサイズ*/
	color : #ffffff;			/*文字色*/
	line-height : 40px;		/*行間*/
  margin-bottom : 10px;
}

/*mainコンテンツのh3タグの設定*/
#main h3{
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #b3ae99;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF,), to(#b3ae99));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #b3ae99);	/*同上*/
	background-image: linear-gradient(#FFF, #b3ae99);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	border: 1px solid #574f39;	/*枠線の幅、線種、色*/
	color: #574f39;	/*文字色*/
  margin-bottom : 10px;
  margin-top : 5px;
}



/*メインコンテンツのp(段落)タグ設定*/
#main p{
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p{
	margin-top: -5px;
}

/*トップページの「Today's Cast」ブロック
---------------------------------------------------------------------------*/
/*「Today's Cast」ボックスの指定*/
#today{
	overflow: hidden;
	margin-bottom: 30px;
	background: linear-gradient(#000 110px,#555 110px, #222 130px,#111 132px,#333 100%);
}
/*「Today's Cast」ボックス内のh2(見出し)タグの設定*/
#today h2{
	font-family: 'Tangerine', cursive;	/*冒頭で読み込んでいるフォントを使う指定*/
	font-size: 100px;	/*文字サイズ*/
	line-height: 1;
	margin-bottom: 10px;
	color: #887b5a;	/*文字色*/
}
/*「Today's Cast」ボックス内のp(段落)タグの設定*/
#today p{
	padding: 10px;
}
/*「Today's Cast」ブロック内の各キャストボックスの設定*/
#today .list{
	width: 10%;	/*ボックスの幅*/
	padding: 2.5%;	/*ボックス内の余白*/
}

/*オプションサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list2 section{
	float: left;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;
	margin-left: 10px;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eee));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eee);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #eee);			/*グラデーション*/
	font-size : 12px;	/*文字サイズ*/
	text-align: center;	/*中身をセンタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
}
#main .list2 section a{
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding: 10px;	/*ボックス内の余白*/
	display: block;
	width : 140px;	/*幅*/	/*高さ*/

  height : 100px;
  color : black;
}
/*オプション名*/
#main .list2 section h4{
	color: #574f39;	/*文字色*/
	font-size : 12px;
  text-align : center;
  line-height : 1.5;
  margin-top : 0px;
  margin-left : 0px;
  margin-right : 0px;
  margin-bottom : 0px;
}
/*サムネイル内のアイコン位置*/
#main .list2 section .icon{
	position: absolute;
	right: 2px;		/*ボックスに対して、右側から2pxの位置に配置*/
	bottom: 2px;	/*ボックスに対して、下側から2pxの位置に配置*/
}
/*マウスオン時のボックス*/
#main .list2 section a:hover{
	background : none 0% 0% / auto auto repeat scroll padding-box border-box #f6eafa;	/*背景色*/
}

/*mainコンテンツのh3タグの設定*/
#main .list2 h3{
	border-radius: 10px;	/*角丸のサイズ*/
	background-color : #dedcd1;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image : url(../images/ya.png);	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #b3ae99);	/*同上*/			/*同上*/

	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	color : #574f39;	/*文字色*/
  background-repeat : no-repeat;
  background-position : right center;
}

/*店舗サムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#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;
  color : black;
}
/*スタッフ名*/
#main .list3 section h4{
	color : #5e563f;	/*文字色*/
	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 : none 0% 0% / auto auto repeat scroll padding-box border-box #dedcd1;	/*背景色*/
}


/*Cast用の各ブロック
---------------------------------------------------------------------------*/
/*各キャストボックスの設定*/
.list{
	position: relative;
	overflow: hidden;
	font-size : 12px;	/*文字サイズ*/
	line-height: 1.5;
	width : 23%;		/*ボックスの幅*/
	padding: 4%;	/*ボックス内の余白*/
	float: left;
	margin-left: 1.25%;
	margin-bottom: 15px;
	background: url(../images/bg1.png) no-repeat center center/100% 100%;	/*背景画像の読み込み*/
	border : 1px solid #848249;	/*枠線の幅、線種、色。古いブラウザだと背景画像は出ず、このラインだけ出ます。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/

}
.list a{
	text-decoration: none;
	display: block;
	overflow: hidden;
	height: 300px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list p{
	padding : 0px;
  text-align : center;
}
/*ボックス内のh4タグ設定*/
.list h4{
	padding: 0px;
	color : #999900;	/*文字色*/

  font-size : 14px;
  font-weight : bold;
  text-align : center;
}
/*h4タグとpタグのマウスオン時の文字色*/
.list a:hover h4,
.list a:hover p{
	color: #FFE900;
}
/*マウスオン時のボックス*/
.list:hover{
	-webkit-box-shadow: 0px 0px 10px #FFE900;	/*外側に光る影の設定。10pxが広がる距離。*/
	box-shadow: 0px 0px 10px #FFE900;			/*同上*/

}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff{
	margin: 0px 10px;
}
/*左側ボックス*/
#main .staff .left{
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	padding-bottom: 15px;
}
/*左側ボックス内のp(段落)タグ*/
#main .staff .left p{
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right{
	width: 60%;		/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
#main .staff .right .ta1 th{
	width: 100px;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub{
	float: left;	/*左に回り込み*/
	overflow: hidden;
	width: 22%;		/*ブロック幅*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2{
	margin-bottom: 10px;
	color: #887b5a;	/*文字色*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter{
	border-left: 3px solid #887b5a;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*subコンテンツ内のp(段落)タグ設定*/
#sub p{
	padding-bottom: 15px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
ul.submenu{
	border-top: solid 1px #333;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
ul.submenu li{
	border-bottom: solid 1px #333;	/*下の線の線種、幅、色*/
}
ul.submenu li a{
	text-decoration: none;
	display: block;
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1{
	overflow: hidden;
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	border: 3px solid #887b5a;	/*枠線の幅、線種、色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop a{
	clear: both;
	color : #ffffff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background : none 0% 0% / auto auto repeat scroll padding-box border-box #574f39;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover{
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

#sita{
  width : 100%;
  text-align : left;
  margin-left : auto;
  margin-right : auto;
  height : auto;
  margin-top : auto;
  margin-bottom : 20px;border-width : 0px;border-style : solid;border-color : silver;
  clear : both;
  padding-top : 20px;
  padding-left : 20px;
  padding-right : 20px;
  padding-bottom : 10px;
}

.sita01{
  width : 12%;
  float : left;
  padding-right : 10px;
}

.sita00{
  width : 40%;
  float : left;
  background-color : #030268;
  padding-top : 10px;
  padding-left : 10px;
  padding-right : 10px;
  padding-bottom : 10px;
  margin-right : 10px;
  text-align : left;
  color : white;
}

.sita_sns{
  width : 100%;
  padding-bottom : 5px;
}

/*下コンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/

.sita00{
	  
    border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */  
} 

/*メニュー１個ごとの設定*/
#sita ul.submenu li a{
	display: block;
	border-bottom : 1px solid #cccccc;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/

  background-color : white;
  list-style-type : disc;
  text-decoration : none;
  color : black;
}
/*マウスオン時の設定*/
#sita ul.submenu li a:hover{
	background-color : #dedcd1;	/*背景色*/
}
.sita_menu{
	border-radius: 10px 10px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/  color : white;
  background-color : #574f39;
  padding-left : 3px;
  font-size : 16px;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer{
	clear: both;
	background : none 0% 0% / auto auto repeat scroll padding-box border-box #574f39;	/*背景色*/
	text-align: center;
	padding: 10px;
}
footer a{
	text-decoration: none;
}
footer .pr{
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 110px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt{
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd{
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1{
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #666;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1の左側ボックス*/
.ta1 th{
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}

.r{
  color : red;
  font-size : 16px;
  font-weight : bold;
}

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

/*「人気」「NEW」マーク
---------------------------------------------------------------------------*/
/*共通設定*/
.mark1, .mark2{
	display: inline-block;
	position: absolute;
	left: 15px;	/*ボックス内の左から15pxの場所に配置*/
	top: 15px;	/*ボックス内の上から15pxの場所に配置*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 9px;		/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
}
.mark1{
	background: #df246f;	/*mark1の背景色*/
}
.mark2{
	background: #249fdf;	/*mark2の背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.look{
	color:#fff;background: #666;padding:5px;border-radius: 4px;
}
.mb15,.mb1em{
	margin-bottom : 5px;
}

.mb15 img{
	border-radius: 8px;		/*角丸のサイズ*/
}

.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;list-style: disc;
}
.color1{
	color: #887b5a !important;
}
.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;
}
img.fl{
	float: left;margin-right: 10px;margin-bottom: 10px;
}
.big1{
	font-size: 30px;letter-spacing: 0.2em;
}
.mini1{
	font-size: 11px;
}
.sh{
	display:none;
}
.dn{
	display:none;
}



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

/*コンテナー（HPを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container{
	margin: 0px 4%;
}

}



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


#sita{
  display : none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定を少し小さくする*/
#menubar li a{
	width: 80px;
	line-height: 80px;
}

/*トップページの「Today's Cast」ブロック
---------------------------------------------------------------------------*/
/*「Today's Cast」ブロック内の各キャストボックスの設定*/
#today .list{
	width: 21%;	/*ボックスの幅*/
	padding: 5.2%;	/*ボックス内の余白*/
}
#today .list a{
	height: 230px;	/*高さ*/
}

	
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub{
	float: none;
	width: auto;
}

/*サブコンテンツ内のメニュー（※800px以下?481px以上で２列にする）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
ul.submenu li{
	float: left;
	width: 50%;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
	text-align: center;
	height : inherit;
	margin-bottom: 15px;
  width : 100%;
}
/*h1ロゴの設定*/
header h1{
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address{
	position: static;
	width: 300px;	/*ボックス幅*/
	margin: 0px auto;
}


}


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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定を更に小さくする*/
#menubar li a{
	width: 60px;
	line-height: 60px;
	font-size: 11px;
	border: 5px solid #fff;
	border: 5px solid rgba(255,255,255,0.4);
}

#sita{
  display : none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
	text-align: center;
	height : inherit;
	margin-bottom: 15px;
  width : 100%;
}
/*h1ロゴの設定*/
header h1{
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address{
	position: static;
	width: 300px;	/*ボックス幅*/
	margin: 0px auto;
}


}



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

#sita{
  display : none;
}

#topinfo{
  display : none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
	text-align: center;
	height : inherit;
	margin-bottom: 15px;
  width : 100%;
}
/*h1ロゴの設定*/
header h1{
	width: 100%;	/*ボックス幅*/
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address{
	position: static;
	width: 100%;	/*ボックス幅*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ロゴ画像の設定*/
header h1 img{
	width: 80%;	/*画面に対して80％の幅に*/
	height: auto;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s{
	margin-bottom: 40px;
	border-top: 1px solid #fff;
}
/*メニュー１個あたりの設定*/
#menubar-s li a{
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 50px;
	border-bottom: 1px solid #fff;
}
/*小さい端末用(画面幅480px以下)メニューを非表示から表示に切り替える*/
#menubar-s{
	display: block;
}
/*大きな端末用(画面幅481px以上)メニューを非表示にする*/
#menubar{
	display: none;
}

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

/*トップページの「Today's Cast」ブロックと、Cast用の各ブロック
---------------------------------------------------------------------------*/
/*「Today's Cast」ボックスの指定*/
#today{
	background: none;
}
/*「Today's Cast」ボックス内の見出しタグの設定*/
#today h2{
	font-size: 40px;	/*文字サイズを小さく変更*/
}
/*各キャストボックスの設定*/
.list{
	width: auto !important;
	float: none !important;
	margin-left: 0 !important;
	background: url(../images/bg2.png) no-repeat center center/100% 100%;	/*横長画像の読み込み*/
	padding: 7% !important;
}
.list a{
	height: auto !important;
}
.list figure{
	float: left;
	width: 30%;
	margin: 0 5%;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス、右側ボックス*/
#main .staff .left,
#main .staff .right{
	float: none;
	width: auto;
}
#main .left{
	text-align: center;
}
#main .left figure img{
	width: 70%;	/*写真を少しだけ小さくする。この行を削除すると幅一杯になる。*/
}

/*サブコンテンツ内のメニュー（※800px以下?481px以上で一旦２列になっていたものを１列に戻す）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
ul.submenu li{
	float: none;
	width: auto;
}

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

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 5px;
}

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

}
#topinfo{
  text-align : center;
  border-bottom-width : 1px;
  border-bottom-color : #897b5a;
  border-bottom-style : double;
}
.kadomaru{
  background-color : #e4d3bc;
  padding-top : 20px;
	border-radius: 10px;		/*角丸のサイズ*/

  color : black;
}
.linkban img{
  margin-top : 5px;
}

