@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体文字*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;
	border-top: 5px solid #003;	/*ページ上部線*/
}
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: #fd1901;			/*マウスオン時*/
	text-decoration: none;	/*マウスオン時に下線消す*/
}

/*ヘッダー（サイト名ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;
}


header .inner {
	width: 997px;	/*ブロック幅*/
	height: 90px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}


header .inner p {
   margin:0;
   font-size:11px;
}



/*h1ロゴ設定*/
header .inner h1 {
	position: absolute;
	left: 10px;	/*innerに対して左からの場所*/
	top: 30px;	/*innerに対して上からの場所*/
}


/*電話番号ボックス*/
header .inner address {
	position: absolute;
	top: 35px;		/*innerに対して上からの位置*/
	right: 20px;	/*innerに対して右からの位置*/
	font-size: 11px;
	text-align: center;
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔設定*/
}
/*電話番号文字*/
header .inner address .tel {
	font-size: 18px;
	color: #ef420f;
	font-weight: bold;	/*太字*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: 60px;	/*ブロックの高さ*/
	background-color: #003;	/*古いブラウザ対応背景色*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #000), color-stop(0.00, #003));
	background: -webkit-linear-gradient(#003, #000);
	background: -moz-linear-gradient(#003, #000);
	background: -o-linear-gradient(#003, #000);
	background: -ms-linear-gradient(#003, #000);
	background: linear-gradient(#003, #000);
	margin-bottom: 25px;
}
nav#menu ul {
	width: 997px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 165px;	/*メニュー幅*/
	border-right: 1px solid #0a1278;	/*メニュー右側線*/
	text-align: center;
	font-weight: bold;	/*太字設定*/
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	line-height: 30px;
	padding-top: 5px;
	color: #FFF;	/*文字色*/
}
/*最初のメニュー*/
nav#menu ul li:first-child {
	border-left: 1px solid #0a1278;	/*左側に線*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #fd1901;	/*背景色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;
	display: block;
	font-weight: normal;	/*文字を標準*/
	letter-spacing: 0.2em;
	line-height: 20px;
	padding-bottom: 5px;
	opacity: 0.7;	/*透明度*/
}

/*コンテンツ（main,sub,sideブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 997px;	/*幅*/
	margin-right: auto;
	margin-left: auto;
}

/*コンテンツin（main,subブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 785px;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 570px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*2カラム*/
body.c2 #main {
	width: 782px;	/*幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #003;	/*古いブラウザ対応背景色*/
	background:url("../images/bg_h2.gif") 100% 100% no-repeat;
	border: 1px solid #003;		/*枠線*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #FFF;
	padding: 5px 15px;	/*上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #fd1901), color-stop(0.42, #fd1901), color-stop(0.20, #f7a452), color-stop(0.00, #fd1901));
	background: -webkit-linear-gradient(top, #fd1901 0%, #f7a452 20%, #fd1901 42%, #fd1901 100%);
	background: -moz-linear-gradient(top, #fd1901 0%, #f7a452 20%, #fd1901 42%, #fd1901 100%);
	background: -o-linear-gradient(top, #fd1901 0%, #f7a452 20%, #fd1901 42%, #fd1901 100%);
	background: -ms-linear-gradient(top, #fd1901 0%, #f7a452 20%, #fd1901 42%, #fd1901 100%);
	background: linear-gradient(top, #fd1901 0%, #f7a452 20%, #fd1901 42%, #fd1901 100%);
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #0d0015;
	font-weight: bold;
	text-shadow: 1px 1px 1px #fff;
	padding: 3px 15px;	/*上下、左右への余白*/
	clear: both;
	border-top: 1px solid #fd1901;		/*上の線*/
	border-right: 1px solid #fd1901;	/*右の線*/
	border-bottom: 1px solid #fd1901;	/*下の線*/
	border-left: 5px solid #0d0015;	/*左の線*/
}
/*mainコンテンツの段落設定*/
#main p {
	padding: 0.5em 10px 15px;	/*上、左右、下への余白*/
}

#main h4 {
	margin-bottom:2px;
	padding: 3px 15px;	/*上下、左右への余白*/
	font-size:12px;
	background:#fd1901;
	color:#fff;
	border-left: 5px solid #0d0015;	/*左の線*/
}

#main h5 {
	margin-bottom:2px;
	padding: 3px 15px;	/*上下、左右への余白*/
	font-size:12px;
	background:#0d0015;
	color:#fff;
}

/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 30px;
}
/*2カラム時サイドコンテンツ非表示設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;
	background-color: #fd1901;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 3px 0px;	/*上下、左右余白*/
	color: #FFF;
}
/*box1の中にあるh2タグ設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸無し設定*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #fff;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}

/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #003;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #003;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #003;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #003;	/*下側の線*/
	padding: 10px 10px;
	background: #0d0015;
	color: #fff;
}

/*マウスオン時の設定*/
#sub ul li a:hover,
#side ul li a:hover {
	background-color: #fd1901;	/*背景色*/
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #0d0015;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページのスライド
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #000;	/*スライドショー背景色*/
}
#mainimg aside {
	width: 997px;
	height: 295px;
	margin-right: auto;
	margin-left: auto;
	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 section.list article {
	border: 1px solid #CCC;	/*枠線*/
	border-radius: 6px;		/*角丸サイズ*/
	margin-bottom: 15px;		/*ボックス間スペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
/*マウスオン時*/
#main section.list article a:hover {
	background-color: #FFF;
}
/*ボックス内段落設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランス設定*/
}
/*ボックス内写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色*/
	padding: 5px;			/*余白*/
	border: 1px solid #CCC;	/*枠線*/
}
/*ボックス内h4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側余白*/
	font-size: 100%;
	border-bottom: 1px solid #0d0015;	/*下側の線*/
	border-left: 3px solid #0d0015;	/*左側の線*/
	margin-bottom: 0.5em;
	color: #0d0015;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」
---------------------------------------------------------------------------*/
/*全体設定*/
#new dl{
	overflow: auto;	/*スクロール設定*/
	height: 150px;
	padding-left: 10px;

}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/

}
#new dd a{
	color: #fd1901;
	text-decoration: none;	/*マウスオン時に下線消す*/
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*右側*/
.ta1 td{
	padding: 10px;
}
/*左側*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;
}
/*テーブル１行目部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.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;
	font-weight: bold;	/*文字を太字にする設定*/
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #0d0015;
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;
	color: #FFF;
	border: none;
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #fd1901;	/*背景色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;
	font-size: 10px;
	background-color: #0d0015;
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #fd1901;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #fd1901;
}
.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;
}
#menubar_hdr {
	display: none;
}
