@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #777;	/*全体の文字色*/
	background: #000;	/*背景色、背景画像の読み込み*/
	margin: 0px;
	padding: 0px;	/*文字サイズ/行間、フォントファミリー*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 85%;
	text-decoration: none;
	margin-left: 5px;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
	background-color: #000;
}
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: #777;	/*リンクテキストの色*/
}
a:hover {
	color: #FF0000;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	text-align: left;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-decoration: none;
}

/*h1見出しタグ設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字のままがいいならこの１行削除。*/
	text-align: right;		/*テキストを右よせ*/
	width: 945px;
	margin-right: auto;
	margin-left: auto;		/*文字色*/
}
h1 a {
	text-decoration: none;
	color: #602100;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1000px;	/*コンテナー幅*/
	margin: 0px auto;
	background: #000;	/*背景色、背景画像の読み込み*/
}

/*ヘッダー（サイト名ロゴや上部メニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 30px 0px 30px 30px;	/*左から、上、右、下、左への余白*/
	overflow: hidden;
}

/*上部のロゴ＆メインメニュー
---------------------------------------------------------------------------*/
/*ロゴ*/
nav#menubar ul li#logo a {
	background: #000;	/*背景色*/
	color: #FFF;			/*文字色*/
	height: 40px;			/*高さ*/
	border: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 140px;	/*幅*/
	margin-right: 14px;
}
nav#menubar ul li a {
	height: auto;		/*高さ*/
	line-height: 40px;	/*行間*/
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	text-align: center;	/*文字をセンタリング*/
	background-color: #000;	/*背景色*/
	color: #777;			/*文字色*/
	border: 10px solid #000;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.0);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 1px 2px 2px rgba(0,0,0,0.0);			/*同上*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #FF0000;	/*文字色*/
	outline-color: #FFF;
	box-shadow: none;
	-webkit-box-shadow: none;
	text-shadow: 0px 0px 0px;
	border-top-width: 10px;
	border-right-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 10px;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	font-size: 14px;
	
}
/*current(表示中のメニュー)の設定*/
nav#menubar ul li#current a {
	color: #ff8b00;	/*文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: none;
	width: 990px;	/*幅*/
	height: 380px;	/*高さ*/
	position: relative;
	border: 20px solid #000;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.0);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px 0px #000;			/*同上*/
	margin-bottom: 30px;
}
#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: center;
	width: 990px;	/*コンテンツ幅*/
	margin: 0px auto;
	-moz-background-clip: border;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: center;	/*右側に回り込み*/
	width: 990px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	font-size: 16px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #000;	/*背景色*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: none;			/*同上*/
	font-size: 100%;
	color: #777;		/*文字色*/
	clear: both;
	border-bottom: 1px solid #444;	/*下線の幅、線種、色*/
	padding: 5px 15px ;	/*左から、上下、左右への余白*/
	text-align: left;
	

	
			background: url(../images/arrow03.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
		padding-bottom: 10px;
	text-decoration: none;
		height: 10px;
		
		
		
		
		
		
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 1px 2px 2px rgba(0,0,0,0.5);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border: 1px solid #FFF;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
	text-align: left;

}

#main pp {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
	text-align: center;

}

/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/

#main section.list3 {
	height:300px;	/*ボックスの高さ*/
	width: 450px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #000;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 50px;
	margin-left: 1px;
	font-size: 14px;
}

#main section.list4 {
	height:300px;	/*ボックスの高さ*/
	width: 300px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #000;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 50px;
	margin-left: 1px;
	font-size: 14px;
}




#main section.list {
	height: 320px;	/*ボックスの高さ*/
	width: 240px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #000;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 1px;
	font-size: 14px;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	color: #333;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;	/*文字色*/
	border-bottom: 2px dotted #0066ff;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	width: 240px;
	height: 160px;
	margin-bottom: 10px;
}
/*ふきだしアイコンの位置*/
#main section.list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}
/*menu内のページ内メニュー



/*各ボックスの設定*/
#main section.list2 {
	height: 320px;	/*ボックスの高さ*/
	width: 220px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #FFF;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 50px;
	margin-left: 1px;
	font-size: 14px;
}

#main section.list2 {
	height: 320px;	/*ボックスの高さ*/
	width: 220px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #f4f4f4;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 50px;
	margin-left: 1px;
	font-size: 14px;
}
/*ボックス内の段落タグ設定*/
#main section.list2 p {
	padding: 0px;
	color: #333;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.list2 h4 {
	
	
	
		background: url(../images/arrow02.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
		padding-bottom: 0px;
	text-decoration: none;
		height: 20px;
	
	
	
	font-size: 100%;
	color: #333;	/*文字色*/
	border-bottom: 0px dotted #333;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list2 figure img {
	width: 220px;
	height: 220px;
	margin-bottom: 10px;
}
/*ふきだしアイコンの位置*/
#main section.list2 img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}



#main section.list5 {
	height: 330px;	/*ボックスの高さ*/
	width: 310px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #222;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 10px;
	font-size: 14px;
}
/*ボックス内の段落タグ設定*/
#main section.list5 p {
	padding: 0px;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.list5 h4 {
	font-size: 100%;	/*文字色*/
	border-bottom: 2px dotted #0066ff;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
	background-color: #333;
}
/*ボックス内の写真設定*/
#main section.list5 figure img {
	width: 310px;
	height: 200px;
	margin-bottom: 10px;
}
/*ふきだしアイコンの位置*/
#main section.list5 img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}



#main section.listaa {
	height: 200px;	/*ボックスの高さ*/
	width: 200px;	/*ボックスの幅*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px 0px rgba(255,255,255,0.5);			/*同上*/
	background-color: #000;	/*背景色*/
	padding: 0px;	/*ボックス内の余白*/
	float: left;
	position: relative;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 1px;
	font-size: 14px;
}
/*ボックス内の段落タグ設定*/
#main section.listaa p {
	padding: 0px;
	color: #333;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.listaa h4 {
	font-size: 100%;	/*文字色*/
	border-bottom: 2px dotted #0066ff;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.listaa figure img {
	width: 200px;
	height: 140px;
	margin-bottom: 10px;
}
/*ふきだしアイコンの位置*/
#main section.listaa img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}
/*menu内のページ内メニュー


---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: left;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;
	color: #000;
}

ul.navmenu02 {
	padding-top: 30px;
	padding-bottom: 30px;
		padding-left: 5px;
	text-align: left;	/*メニューテキストをセンタリング*/
}
ul.navmenu02 li {
	display: inline;
}
ul.navmenu02 li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu02 li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;
	color: #000;
}



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
	-moz-box-shadow: 0px 0px #000;
	border-bottom-color: #000;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding: 10px;		/*余白*/
	background: #FFF;	/*下部の線の幅、線種、色*/
	color: #666666;	/*文字色*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: none;			/*同上*/
	border-bottom-width: 5px;
	border-bottom-style: none;
	border-bottom-color: #666666;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*背景色。左３つの数字が色のRGB値で、一番右の小数点が透明度。*/
	background-color: rgba(255,255,255,0.4);
	border-bottom-style: none;
	border-bottom-color: #000;
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #000;	/*背景色*/
	color: #F00;				/*文字色*/
	font-size: 100%;
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	border: 1px solid #FFF;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*背景色。左３つの数字が色のRGB値で、一番右の小数点が透明度。*/
	-webkit-box-shadow: none;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 0px 0px;			/*同上*/
	background-color: rgba(255,255,255,0.4);
}

/*フッター設定
---------------------------------------------------------------------------*/
p2 {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;				/*文字色*/
	background-color: #000;	/*背景色*/
}
p2 .pr {
	display: block;
	font-size: 100%;
	color: #666666;
	font-weight: bold;
}
p2 a {
	text-decoration: none;
	color: #999;
}
p2 a:hover {
	color: #FFF;
	font-size: 24%;
}

footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;				/*文字色*/
	background-color: #000;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 100%;
	color: #666666;
	font-weight: bold;
}
footer a {
	text-decoration: none;
	color: #999;
}
footer a:hover {
	color: #FFF;
	font-size: 24%;
}




/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#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: 50%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #FFF;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 150px;
	padding: 10px;
	text-align: center;
	background: rgba(0,0,0,0.4);	/*背景色。左３つの数字が色のRGB値で、一番右の小数点が透明度。*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*ボタンの設定*/
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 #FFF;
}
/*ボタンのマウスオン時の設定*/
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: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #999999;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #280A00;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #ff8b00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: left;
	padding-left: 100px;
}
.vam {
	vertical-align: middle;
	max-width: 100%;
		height: auto;
			float: center;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}
img.fl {
	margin: 0px 10px 10px 0px;
	float: left;
}
img.fr {
	margin: 0px 0px 10px 10px;
	float: left;
}
img.wa {
	max-width: 100%;
	height: auto;
	float: left;
}



/*ここからタブレット用環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (min-width:481px) and (max-width:800px){

/*h1見出しタグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*上部のロゴ＆メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 94%;
	margin-bottom: 5px;
}
nav#menubar ul li a {
	height: 30px;	/*高さ*/
	line-height: 30px;	/*行間*/
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 0px 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: 400px;	/*ボックスの高さ*/
	width: 42%;		/*ボックスの幅*/
	padding: 2%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 2%;
}

---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}



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

/*h1見出しタグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*上部のロゴ＆メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 94%;
	margin-bottom: 5px;
}
nav#menubar ul li a {
	height: 30px;	/*高さ*/
	line-height: 30px;	/*行間*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
	border: 5px solid #000;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 0px 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

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

#main pp{
	padding: 0.5em 5px 1em;	
	color: #fff;/*左から、上、左右、下への余白*/
}

/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: auto;	/*ボックスの高さ*/
	width: 100%;	/*ボックスの幅*/
	float: none;
	margin: 0px 0px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 10px;		/*上へあける余白*/
	padding-bottom: 10px;	/*下へあける余白*/
	text-align: left;		/*メニューテキストを左よせ*/
}
ul.navmenu li {
	display: block;
}

ul.navmenu02 {
	padding-top: 10px;		/*上へあける余白*/
	padding-bottom: 10px;	/*下へあける余白*/
	text-align: center;		/*メニューテキストを左よせ*/
}
ul.navmenu02 li {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #ff8b00 url(../images/btn_minus.png) no-repeat right center;	/*背景色とマイナスアイコンの読み込み*/
}
section#new h2.close {
	background: #ff8b00 url(../images/btn_plus.png) no-repeat right center;		/*背景色とプラスアイコンの読み込み*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#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;
}

}
#container #contents #main .navmenu li a .red {
	color: #000;
}
