@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;	/*背景色*/
	border-top: 5px solid #ffcccc;	/*ページ上部の線の幅、線種、色*/
}
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: #1ec17a;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF 80%, #ededed);	/*同上*/
	background-image: linear-gradient(#FFF 80%, #ededed);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 100px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*h1ロゴの設定*/
header .inner h2 {
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 20px;	/*innerに対して上から20pxの場所に配置*/
}

/*h1ロゴの設定*/
header .inner h1 {
	display:none;

}

/*h3ヘッダー文書の設定*/
header .inner h3 {
	display:none;

}


/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 8px;		/*innerに対して上から15pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #1ec17a;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}

header .facebook {
	position: absolute;
	top: 40px;		/*innerに対して上から15pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	text-align: center;	/*文字をセンタリング*/
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: 60px;	/*ブロックの高さ*/
	background-color: #ffc2c2;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe3e3), to(#ffc2c2));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffe3e3, #ffcdcd 49%, #ffc2c2 50%);	/*同上*/
	background-image: linear-gradient(#ffe3e3, #ffcdcd 49%, #ffc2c2 50%);			/*同上*/
	margin-bottom: 0px;
}
nav#menu ul {
	width: 997px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 198px;	/*メニュー幅*/
	border-right: 1px solid #ffc2c2;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	line-height: 60px;
	color: #333333;	/*文字色*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid #ffc2c2;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #ffc2c2;	/*背景色*/
}
/*英語表記の設定*/
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.5;	/*透明度50％*/
}

/*サブのメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu_sub {
	height: 40px;	/*ブロックの高さ*/
	background-color: #ffcccc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	margin-bottom: 10px;
}
nav#menu_sub ul {
	width: 997px;	/*メニュー部分のブロック幅*/
	margin-right: auto;
	margin-left: auto;
}
/*メニュー１個ごとの設定*/
nav#menu_sub ul li {
	float: left;
	width: 141px;	/*メニュー幅*/
	border-right: 1px solid #f6b4b4;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
nav#menu_sub ul li a {
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	line-height: 40px;
	color: #333333;	/*文字色*/
}
/*最初のメニューの設定*/
nav#menu_sub ul li:first-child {
	border-left: 1px solid #f6b4b4;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu_sub ul li a:hover {
	background-color: #f6b4b4;	/*背景色*/
}
/*英語表記の設定*/
nav#menu_sub ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 20px;
	padding-bottom: 5px;
	opacity: 0.5;	/*透明度50％*/
}

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

}

/*コンテンツ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 {
	float:left;
	width: 997px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #ffc2c2;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe3e3), to(#ffc2c2));	/*グラデーション*/
	background-image: -webkit-linear-gradient(ffe3e3, #ffcdcd 49%, #ffc2c2 50%);	/*同上*/
	background-image: linear-gradient(#ffe3e3, #ffcdcd 49%, #ffc2c2 50%);			/*同上*/
	border: 1px solid #ffc2c2;		/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #333333;	/*文字色*/
	padding: 5px 15px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);	/*同上*/
	background-image: linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #fd7d7d;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 3px solid #fd7d7d;	/*左の線の幅、線種、色*/
}


#main h5 {
	background-color: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);	/*同上*/
	background-image: linear-gradient(#fcfcfc, #f1f1f1 49%, #e3e3e3 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #333333;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 3px solid #ccccff;	/*左の線の幅、線種、色*/
}


#main h6 {
	background-color: #acff9c;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#edffe9), to(#92e280));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#edffe9, #b7eaab 49%, #92e280 50%);	/*同上*/
	background-image: linear-gradient(#edffe9, #b7eaab 49%, #92e280 50%);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #1d7508;		/*文字色*/
	padding: 2px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #FFF;	/*下の線の幅、線種、色*/
	border-left: 3px solid #1d7508;	/*左の線の幅、線種、色*/
}

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

/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}


body.c2 #sub{
	float:right;
}


/*サイドコンテンツ（右側ブロック）*/
#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: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#999, #666);	/*同上*/
	background-image: linear-gradient(#999, #666);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2,
#side .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 5px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}


#sub .box2,
#side .box2 {
	background-color: #f0f0f0;		/*背景色*/
	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 #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #333333;	/*文字色*/
	background: #ffcccc;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #333333;
}
footer a:hover {
	color: #333333;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #ffcccc;	/*スライドショーの外側（左右）の背景色*/
	padding-top:10px;
	padding-bottom:10px;

}

#mainimg img{
	border:1px solid #ffffff;

}

#mainimg aside {
	width: 997px;
	height: 295px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#mainimg2 {
	background-color: #ffcccc;	/*スライドショーの外側（左右）の背景色*/
	padding-top:10px;
	padding-bottom:10px;

}

#mainimg2 img{
	border:1px solid #ffffff;

}

#mainimg2 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;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#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;
}

/*テーブル１
---------------------------------------------------------------------------*/
.t_design {
	width: 100%;
}
.t_design, .t_design td, .t_design th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.t_design td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.t_design th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.t_design th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.t_design 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;	/*文字を太字にする設定*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.t_design3 {
	width: 100%;
}
.t_design3, .t_design3 td, .t_design3 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.t_design3 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.t_design3 th{
	width: 60px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.t_design3 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.t_design3 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;	/*文字を太字にする設定*/
}


/*submitボタンの設定*/
input[type="submit"],
input[type="reset"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #1ec17a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#30c684), to(#1ec17a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#30c684, #1ec17a);	/*同上*/
	background-image: linear-gradient(#30c684, #1ec17a);			/*同上*/
	-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="reset"]:hover,
input[type="button"]:hover {
	background-color: #30c684;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1ec17a), to(#30c684));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#1ec17a, #30c684);	/*同上*/
	background-image: linear-gradient(#1ec17a, #30c684);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #333333;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #ffcccc;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}


.t_design{
	width:100%;
}
.t_design, .t_design td, .t_design th{
	border:1px solid #cccccc;
	line-height: 2;
}

.t_design td{
	padding: 5px;
}

.t_design th{
	width:50px;
	padding:5px;
	text-align:center;
	background-color:#f0f0f0;
}




.t_design2{
	width:100%;
}
.t_design2, .t_design2 td, .t_design2 th{
	border:1px solid #cccccc;
	line-height: 2;
}

.t_design2 td{
	padding: 5px;
}

.t_design2 th{
	width:70px;
	padding:5px;
	text-align:center;
	background-color:#f0f0f0;
}



table {
	border-collapse:collapse;
	font-size:100%;
	border-spacing:0;
}



/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}

.margin_top {
	margin-top: 10px;
}

.margin_b {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.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;
}

.bt2 a{
	padding:10px;
	-moz-border-radius: 10px;    /* 古いFirefox */
	-webkit-border-radius: 10px; /* 古いSafari,Chrome */
	border-radius: 10px;         /* CSS3 */
	color:#ffffff;
	border:1px solid #29c27f;
	text-decoration:none;
	background-color: #3ed794;
        background: -moz-linear-gradient(top, #65e6ad, #3ed794); /* mozilla */
        background: -webkit-gradient(linear, center top, center bottom, from(#65e6ad), to(#3ed794)); /* Webkit */
}


.bt2 a:hover{
	padding:10px;
	-moz-border-radius: 10px;    /* 古いFirefox */
	-webkit-border-radius: 10px; /* 古いSafari,Chrome */
	border-radius: 10px;         /* CSS3 */
	color:#ffffff;
	border:1px solid #29c27f;
	text-decoration:none;
	background-color: #65e6ad;
        background: -moz-linear-gradient(top, #3ed794, #65e6ad); /* mozilla */
        background: -webkit-gradient(linear, center top, center bottom, from(#3ed794), to(#65e6ad)); /* Webkit */
}


.bt3 a{
	padding:10px;
	-moz-border-radius: 10px;    /* 古いFirefox */
	-webkit-border-radius: 10px; /* 古いSafari,Chrome */
	border-radius: 10px;         /* CSS3 */
	color:#ffffff;
	text-shadow: 1px 1px 2px #999999;
	font-weight:bold;
	border:3px double #ffa012;
	text-decoration:none;
	background-color: #fdc504;
        background: -moz-linear-gradient(top, #ffd648, #fdc504); /* mozilla */
        background: -webkit-gradient(linear, center top, center bottom, from(#ffd648), to(#fdc504)); /* Webkit */
}


.bt3 a:hover{
	padding:10px;
	-moz-border-radius: 10px;    /* 古いFirefox */
	-webkit-border-radius: 10px; /* 古いSafari,Chrome */
	border-radius: 10px;         /* CSS3 */
	color:#ffffff;
	text-shadow: 1px 1px 2px #999999;
	font-weight:bold;
	border:3px double #ffa012;
	text-decoration:none;
	background-color: #ffd648;
        background: -moz-linear-gradient(top, #fdc504, #ffd648); /* mozilla */
        background: -webkit-gradient(linear, center top, center bottom, from(#fdc504), to(#ffd648)); /* Webkit */
}


.iframe-content {
    position: relative;
    width: 100%;
    padding: 50% 0 0 0;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




#contact_left{
	width:300px;
	float:left;
}


#contact_right{
	width:100px;
	float:right;


}

.mail{
	padding:10px;
	-moz-border-radius: 10px;    /* 古いFirefox */
	-webkit-border-radius: 10px; /* 古いSafari,Chrome */
	border-radius: 10px;         /* CSS3 */
	border:1px solid #29c27f;

}

#group-menu1{
	width:100%;
}
#group-menu1 ul{
	list-style-type:none;
	width:100%;
	margin:0;
	padding:0;
}
#group-menu1 ul li{
	width:32%;
	height:60px;
	margin:3px;
	font-weight:bold;
	/*display:inline;:*/
	padding-left:4px;
	float:left;
	background-color:#ffffff;
	border:1px solid #666666;
}
#group-menu1 ul li a{
	text-decoration:none;
	display:block;
	-webkit-transition:0.5s;
	transition:0.5s;
	line-height:60px;
	text-indent:50px;
}


#group-menu2{
	margin-top:5px;
	width:100%;
}
#group-menu2 ul{
	list-style-type:none;
	width:100%;
	margin:0;
	padding:0;
}
#group-menu2 ul li{
	width:32%;
	height:60px;
	font-weight:bold;
	padding-left:3px;
	/*display:inline;:*/
	float:left;
	margin:4px;
	background-color:#ffffff;
	border:1px solid #666666;
}
#group-menu2 ul li a{
	text-decoration:none;
	display:block;
	-webkit-transition:0.5s;
	transition:0.5s;
	line-height:60px;
	text-indent:50px;
}


.g1 a{
	background-image:url(../images/top_sub_icon1.png);
	background-position:left center;
	background-repeat:no-repeat;
}

.g2 a{
	background-image:url(../images/top_sub_icon2.png);
	background-position:left center;
	background-repeat:no-repeat;
}

.g3 a{
	background-image:url(../images/top_sub_icon3.png);
	background-position:left center;
	background-repeat:no-repeat;
}

.g4 a{
	background-image:url(../images/top_sub_icon4.png);
	background-position:left center;
	background-repeat:no-repeat;
}

.g5 a{
	background-image:url(../images/top_sub_icon5.png);
	background-position:left center;
	background-repeat:no-repeat;
}

.g6 a{
	background-image:url(../images/#.png);
	background-position:left center;
	background-repeat:no-repeat;
}


.margin-t{
	margin-top:10px;
}

.margin-b{
	margin-bottom:10px;
}

.rinen_left{

	width:100px;
	float:left;
}
.rinen_right {
	width:880px
	float:right;
}

.sub_left{

	width:160px;
	float:left;
}
.sub_right {
	width:820px
	float:right;
}

.sub_left_01{
	width:400px;
	float:left;
}
.sub_right_01 {
	width:580px
	float:right;

}


.sub_left_02{
	width:630px;
	float:left;
}
.sub_right_02 {
	width:350px
	float:right;

}

.sub_left02_text{
	color:#3333ff;
}


.menard_sub_box{
	width:325px;
	float:left;
	margin-left:5px;
	margin-bottom:5px;
	border:1px solid #cccccc;
}

.menard_sub_box h4{
	background-color:#ffcccc;
	border-left:4px solid #ffadad;
	text-indent:5px;
}

.menard_sub_box h4 span{
	font-size:10px;
	font-weight:normal;
}

.margin_b{
	margin-bottom:10px;
}

.margin_t{
	margin-top:15px;
}

.news_box{
	width:100%;
	height:150px;
	overflow:auto;
}


.news_box2{
	width:100%;
	height:auto;
	overflow:auto;
}


.slideshow {
	position: relative;
	/* width: 90px; 
	height: 140px; */
}

.slideshow img {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 2s; /* フェードの時間(秒) */
}

.slideshow .show {
	opacity: 1;
	z-index: 1;
}

.facebook2 {
	margin-top:10px;
	margin-bottom:2px;

}


.list article {
	border: 1px solid #0066cc;
	border-radius: 6px;
	margin-bottom: 15px;
	background-color:#d1ebff;
	-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;
}

.list article span {
	padding: 10px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}

.list article p {
	padding: 0px;
	margin-left: 220px;
}

.list article figure img {
	float: left;
	background-color: #FFF;
	padding: 5px;
	border: 1px solid #CCC;
}

.list article h4 {
	padding: 2px 0px 2px 10px;
	font-size: 100%;
	border-bottom: 3px solid #0066cc;
	border-left: 3px solid #0066cc;	
	margin-bottom: 0.5em;
	color: #0066cc;	
}

.layout-left{
	width:356px;
	float:left;
}


.layout-right{
	width:500px;
	float:right;
}

.access-text{
	background-image:url(../images/position2.png);
	background-position:left top;
	background-repeat:no-repeat;
	text-indent:47px;
	height:49px;
	line-height:49px;
	border-bottom:10px solid #99cc99;
	font-size:18px;
	margin-bottom:10px;

}



.js_movie1{
width:325px;
float:left;
}

.js_movie1 img{
width:100%;
}


.js_movie2{
width:325px;
float:left;
margin-left:5px;
}

.js_movie2 img{
width:100%;
}


.js_movie3{
width:325px;
float:left;
margin-left:5px;
}

.js_movie3 img{
width:100%;
}


.red{
	color:#ff0000;
}