@charset "shift_jis";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	/*line-height: 1.4;		行間*/
	background: #073786;
	/* background: #073786 url(../images/bg.png);	背景色、背景画像の読み込み*/
	-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: 1000px;
	/* max-width: 100%;*/
	height: auto;
	vertical-align: middle;
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #0000ff;	/*リンクテキストの色*/
	text-decoration: none;
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #ff0000;			/*マウスオン時の文字色*/
	/* text-decoration: underline	マウスオン時に下線*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	background: #073786;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 85px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 400px;	/*画像幅*/
	position: absolute;
	left: 2%;		/*ヘッダーに対して左から2%の場所に配置*/
	top: 0px;		/*ヘッダーに対して上から35pxの場所に配置*/
}
/*バナーブロック*/
header #banner1 img {
	width: 400px;	/*画像幅*/
	position: absolute;
	right: 2%;		/*ヘッダーに対して右から2%の場所に配置*/
	top: 7px;		/*ヘッダーに対して上から30pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width:10.0%;		/*メニュー幅*/
	margin-left: 0%;	/*メニュー同士の隙間*/
	line-height: 1.2;	/*行間*/
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;		/*内容をセンタリング*/
	background: #313131;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#494949, #04A2A4);	/*グラデーション*/
	border-top: 1px solid #666;		/*上の線の幅、線種、色*/
	border-right: 1px solid #666;	/*右の線の幅、線種、色*/
	border-left: 1px solid #666;	/*左の線の幅、線種、色*/
	color: #E1D38B;		/*文字色*/
	font-weight: bold;	/*太字に*/
	height: 26px;	/*高さ*/
	overflow: hidden;	/*高さを超えた部分は非表示に*/
	padding-top: 5px;	/*上に空けるメニュー内の余白。バランスをとって下さい。*/
	font-size: 10px;	/*文字サイズ*/
}
/*１個目のメニューへの追加設定*/
#menubar li:first-child {
	margin-left: 0;
}
/*英語表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 9px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	opacity: 0.4;	/*透明度を40%にする設定*/
	font-weight: normal;	/*太字を標準に戻す*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#e6e6e6, #fff);	/*グラデーション*/
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左の線の幅、線種、色*/
	color: #333;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	/*background: #555555;	背景色*/
	background: #ffffff;	/*背景色*/
	padding: 1%;	/*ボックス内の余白*/

}
#main2 {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 78%;		/*幅*/
	/* background: #393939;*/
	color: #ffffff;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	padding: 1%;	/*ボックス内の余白*/
}
.size_change {
	font-size: 17px;	/*文字サイズ*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 79%;		/*幅*/
	background: #ffffff;	/*背景色*/
	color: #333;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	padding: 0%;	/*ボックス内の余白*/

}

#main a {
	color: #0000ff;	/*リンクテキストの色*/
	text-decoration: none
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

#main a:hover {
	color: #ff0000;			/*マウスオン時の文字色*/
	/* color: #FAB633;		/*マウスオン時の文字色*/
	/* text-decoration: underline	/*マウスオン時に下線*/
	text-decoration: none;		/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h2タグの設定*/
#main h2 {
	height: 20px;	/*ヘッダーの高さ*/
	clear: both;
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	margin-bottom: 7px;	/*見出しの下にとるスペース*/
	background: #313131;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#494949, #313131);	/*グラデーション*/
	box-shadow: 0px 2px 5px #bebebe;	/*影の設定。右へ、下へ、ぼかし幅、色の設定。*/
	color: #E1D38B;	/*文字色*/

	/*border-bottom: 4px solid #F9A400;	下部の線の幅、線種、色*/
	border-bottom: 4px solid #ff0000;	/*下部の線の幅、線種、色*/
	/*border-bottom: 4px solid #04A2A4;	下部の線の幅、線種、色*/

	padding: 5px 10px;	/*上下、左右へのボックス内の余白*/
}
/*h3タグの設定
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 6px 20px;		/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border: 1px solid #666;		/*枠線の幅、線種、色*/
}
*/

.kaigyo {
	/*line-height: 0.5;		/*行間*/
}

.kaigyo2 {
	display: none;
}


#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

#varf {
	display: block;
}
#var85 {
	display: none;
}
#var80 {
	display: none;
}
#var65 {
	display: none;
}
#var48 {
	display: none;
}


/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: right;	/*右に回り込み*/
	width: 20%;		/*幅*/
	color: #FFF;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.2;		/* 行間*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	height: 20px;	/*画像の高さ*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 2px 15px;		/*上下、左右へのボックス内の余白*/
	background: #7F2F03;	/*背景色*/
	/*background: linear-gradient(#FAB633, #7F2F03);	/*グラデーション*/
	background: linear-gradient(#FAB633, #ff0000);	/*グラデーション*/
	color: #FFF;	/*文字色*/
	border-radius: 3px 3px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 1px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #333;	/*上の線の幅、線種、色*/
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;display: block;
	font-size: 10px;	/*文字サイズ*/
	padding: 10px 5px;	/*メニュー内の余白。上下、左右への設定。*/
	background: #313131;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-bottom: 1px;
}
/*マウスオン時の背景色*/
#sub ul.submenu li a:hover {
	background: #0000ff;	/*背景色*/
}

/*サブコンテンツ内の一覧ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#sub .list {
	position: relative;overflow: hidden;
	font-size: 11px;	/*文字サイズ*/
	/* line-height: 1.2;	/*行間を狭くする*/
}
#sub .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 10px;	/*ボックス内の余白*/
	background: linear-gradient(#FFF, #e3e3e3);		/*グラデーション*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
	border-left: 1px solid #ccc;	/*左の線の幅、線種、色*/
}
/*一番上のボックスへの追加設定*/
#sub .list:first-of-type a {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*一番下のボックスへの追加設定*/
#sub .list:last-of-type a {
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*マウスオン時*/
#sub .list a:hover {
	background: #fff;
}
/*ボックス内のh4タグ設定*/
#sub .list h4 {
	font-weight: bold;	/*太字にする設定*/
}
/*ボックス内の写真設定*/
#sub .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	margin-right: 5px;	/*写真の右側に空ける余白*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	margin: 10px auto 20px;
	color: #fff;	/*文字色*/
	text-align: center;
	font-size: 80%;
}
footer a {
	color: #fff;	/*文字色*/
	text-decoration: none;
}
footer .pr {
	display: block;
	font-size: 80%;
}





/*ボタン
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn {
	width: 100%;
	padding: 15px 0px;	/*上下、左右へのボタン内の余白*/
	margin-bottom: 20px;
	border: 2px solid #910000;	/*枠線の幅、線種、色*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: #ea0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ea0000, #b40000 50%, #910000 50%);	/*グラデーション*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover {
	border: 2px solid #c10000;	/*枠線の幅、線種、色*/
	background: #fe0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fe0000, #d50000 50%, #c10000 50%);	/*グラデーション*/
	position: relative;top: 1px;left: 1px;	/*マウスオン時に上から1px、左から1px場所を移動する*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.bg1 {background: #f6f5f2;}
.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: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

.menu3 {
	BORDER-LEFT: #999999 1px solid;
	BORDER-TOP: #999999 1px solid;
	BORDER-RIGHT: #999999 1px solid;
	BORDER-BOTTOM: #999999 1px solid
}



/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/

#main {
	font-size: 12px;	/*文字サイズ*/
}
.size_change {
	font-size: 14px;	/*文字サイズ*/
}
}


/*画面幅850px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:850px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*バナーブロック*/
header #banner1 img {
	display: none;	/*ロゴに重なるので非表示に変更*/
}

#main {
	font-size: 12px;	/*文字サイズ*/
}
.size_change {
	font-size: 14px;	/*文字サイズ*/
}
#main td img{
	float: none;
	max-width: 100%;
}

#main h2, #main h3 {
	font-size: 12px;
	padding-left: 10px;
	padding-right: 10px;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

#varf {
	display: none;
}
#var85 {
	display: block;
}
#var80 {
	display: none;
}
#var65 {
	display: none;
}
#var48 {
	display: none;
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 85px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}

.kaigyo2 {
	display: block;
}

#main, #main2 {
	font-size: 12px;	/*文字サイズ*/
}

.size_change {
	font-size: 14px;	/*文字サイズ*/
}

#main img {
	float: none;
	width: auto;
}

#main td img{
	float: none;
	max-width: 50%;
}

#sub td img{
	float: none;
	max-width: 150px;
}


img {
/*	float: none;      */
/*	max-width: 150px; */
	/*width: auto;*/
}


#sub {
	font-size: 14px;	/*文字サイズ*/
	/* line-height: 1.5;		/*行間*/
}
#sub ul.submenu li a {
	font-size: 12px;	/*文字サイズ*/
}

#main2 img {
	width: 0px;
	display: none;
}
#main h2, #main h3 {
	font-size: 12px;
	padding-left: 10px;
	padding-right: 10px;
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(opacity: 0;)から100%色のついた状態(opacity: 1;)へのアニメーション。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	border-top: 1px solid #fff;
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 5%;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	/*background: rgba(0,0,0,0.9);*/	/*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
	background: rgba(7,37,86,0.9);	/*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
	/* color: #E1D38B;*/		/*文字色*/
	/* color: #FFCC99;*/		/*文字色*/
	color: #FFFFFF;		/*文字色*/
	font-size: 18px;	/*文字サイズ*/
	font-weight: bold;	/*太字に*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	opacity: 0.5;	/*透明度を40%にする設定*/
	font-weight: normal;	/*太字を標準に戻す*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 15px;	/*上から15pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../img3/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../img3/icon_menu.png) no-repeat center bottom/50px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

.kaigyo, #slideshow, #slideshow p, #slideshow p.active, #slideshow p.last-active, #slideshow p img {
	display: none;	/*ロゴに重なるので非表示に変更*/
}

#varf {
	display: none;
}
#var85 {
	display: none;
}
#var80 {
	display: block;
}
#var65 {
	display: none;
}
#var48 {
	display: none;
}


}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){

#main, #main2 {
	font-size: 12px;	/*文字サイズ*/
}

.size_change {
	font-size: 14px;	/*文字サイズ*/
}

#varf {
	display: none;
}
#var85 {
	display: none;
}
#var80 {
	display: none;
}
#var65 {
	display: block;
}
#var48 {
	display: none;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	/* line-height: 1.5;	/*行間*/
}

.size_change {
	font-size: 14px;	/*文字サイズ*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	font-size: 12px;
	/* padding-left: 10px; */
	/* padding-right: 10px; */
}

#main h2, #main h3 {
	font-size: 12px;
	/* padding-left: 10px; */
	/* padding-right: 10px; */
}
/*段落タグ設定*/
#main p {
	/* padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

#main td img{
	float: none;
	max-width: 45%;
}

/*ロゴ画像*/
header #logo img {
	width: 300px;	/*画像幅*/
	top: 0px;		/*ヘッダーに対して上から26pxの場所に配置*/
}


#varf {
	display: none;
}
#var85 {
	display: none;
}
#var80 {
	display: none;
}
#var65 {
	display: none;
}
#var48 {
	display: block;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}

