@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body{
	color : #333333;	/*全体の文字色*/
	background-color : #cccccc;	/*全体の背景色*/
	background-image: url(../images/bg.gif);	/*背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
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;
	vertical-align: bottom;
}
input,textarea,select{
	font-size: 1em;
}
form{
	margin: 0px;
}
table{
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	color: #333;	/*リンクテキストの色*/
}
a:hover{
	color: #0031e6;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
	width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
	background-color: #FFF;	/*コンテナーの背景色*/
	padding: 0px 10px;		/*上下、左右の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	width: 100%;	/*ブロックの幅*/
	height : 150px;	/*ブロックの高さ*/
	position: relative;
}
/*h1タグの設定*/
header h1{
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color : #ffffff;				/*文字色*/
	background-color : #ffffff;	/*背景色*/
	font-size: 10px;			/*文字サイズ*/
	text-align: left;			/*文字を右寄せ*/
	line-height: 30px;			/*行間*/
        padding-left: 10px;
}
/*ヘッダーの色つけ*/
header .headerinner{
	width: 100%;	/*ブロック幅*/
	height : 10px;	/*ブロックの高さ*/
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color : #0068b7;	/*背景色*/
}
/*言語*/
header ul.btn{
	position:absolute;top:0px;right:0;
        padding-right: 10px;
}
header ul.btn li ul{
	line-height:15px;margin-top:10px;
}
header ul.btn li{
	float:left;margin-left:15px;
}
header ul.btn li.sidebar{
	border-right:#a4a4a4 1px dotted;padding-right:15px;
}
header ul.btn li a{
	background:url(../images/icon01.png) no-repeat left 12px;padding:10px;font-size:11px;color:#fff;
}
header ul.btn li a:hover: {color:#c8beb2;
}

/*ロゴ画像の設定*/
header #logo{
	position: absolute;
	left: 10px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top : 18px;	/*ヘッダーブロックに対して上から38pxの位置に配置*/
}

/*電話番号ボックスの設定*/
header address{
	position: absolute;
	top : 17px;			/*ヘッダーブロックに対して上から38pxの位置に配置*/
	right: 20px;		/*ヘッダーブロックに対して右から20pxの位置に配置*/
	font-size : 26px;	/*文字サイズ*/
	text-align : right;	/*文字をセンタリング*/
	font-style: normal;	/*通常斜体になっているのを通常に*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定*/
	line-height : 0.5em;		/*行間*/
	color: #0031E6;		/*文字色*/			/*文字を右寄せ*/

  font-weight : bolder;
}
/*電話番号ボックス内の「TEL」の設定*/
header address .tel{
	display: inline-block;
	color: #FFF;				/*文字色*/
	background-color: #0031E6;	/*背景色*/
	padding : 4px 10px;		/*上、左右、左へのボックス内の余白*/
	margin-right: 10px;
	font-weight: normal;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul{
	position: absolute;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの位置に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの位置に配置*/
}
/*メニュー１個ごとの設定*/
nav#menu ul li{
	float: left;
	width: 163px;	/*メニュー幅*/
}
nav#menu ul li a{
	height: 42px;
	padding-top: 8px;
	line-height: 1.4;	/*行間*/
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #00508a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#0068b7), to(#00508a));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#0068b7, #00508a);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#0068b7, #00508a);			/*同上*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;		/*文字色*/
	border-bottom: 1px solid #FFF;	/*下側の線の幅、線種、色*/
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child a {
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menu ul li a:hover,
nav#menu ul li#current a{
	background: #0068b7 url(../images/bg1.png);	/*背景色、背景画像の読み込み*/
}
/*英語表記の設定*/
nav#menu ul li a span{
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg{
	clear: left;
	width: 980px;	/*幅*/
	height: 350px;	/*高さ*/
	position: relative;
	border-radius: 4px;		/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	margin-bottom: 20px;	/*画像の下の余白*/
}
#mainimg img{
	border-radius: 4px;	/*角丸のサイズ*/
}
#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,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	clear: left;
	width: 100%;
	margin-top: 30px;	/*メニューと、下の左右コンテンツとの間に空ける余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
	float: right;	/*左側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2{
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	font-size: 100%;
	color: #0031e6;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
	border-bottom : 5px solid #0068b7;	/*下の線の幅、線種、色*/
	border-top : 1px solid #cccccc;			/*上の線の幅、線種、色*/
	border-right : 1px solid #cccccc;		/*右の線の幅、線種、色*/
	border-left : 1px solid #cccccc;		/*左の線の幅、線種、色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3{
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #e2e2e2;			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	color: #0031e6;		/*文字色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4{
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom : 1px solid #cccccc;	/*下側の線の幅、線種、色*/
	border-left : 3px solid #0031e6;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p{
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub{
	float: left;	/*右側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2{
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	border: 1px solid #001f91;	/*枠線の幅、線種、色*/
	background-color: #00508a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#0068b7), to(#00508a));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#0068b7, #00508a);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#0068b7, #00508a);			/*同上*/
	color: #FFF;	/*文字色*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順の設定。*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu{
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 15px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a{
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#eaeaea, #FFF);	/*同上*/
	background-image: linear-gradient(#eaeaea, #FFF);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover{
	background-image:none;
	background-color: #0031e6;	/*背景色*/
	color: #FFF;				/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1{
	border: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下（外側）のスペース*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaeaea));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eaeaea);	/*同上*/
	background-image: linear-gradient(#FFF, #eaeaea);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*box1内のh2タグ*/
#sub .box1 h2{
	padding: 2px 0px;	/*左から、上下、左右への余白*/
	border-radius: 0px;	/*角丸をなくす設定*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer{
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;				/*文字色*/
	background-color: #00508a;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#0068b7), to(#00508a));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#0068b7, #00508a);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#0068b7, #00508a);			/*同上*/
}
footer .pr{
	display: block;
	font-size: 80%;
}
footer a{
	text-decoration: none;
	color: #FFF;
}
footer a:hover{
	color: #FFF;
}

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

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#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;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
/*マウスオン時*/
#main section.list article a:hover{
	background-color: #f6f1b2;	/*背景色*/
	color: #333;				/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p{
	padding: 0px;
	margin-left: 10px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#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 #cccccc;	/*下側の線の幅、線種、色*/
	border-left : 0px solid #000000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*simpleタイプ（※ボックス内の部分的な箇所にリンクを設定する場合）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list.simple article{
	padding: 10px;
	overflow: hidden;
}
#main section.list.simple article a{
	padding: 0px;
	display: inline;
	text-decoration: underline;
}
/*マウスオン時*/
#main section.list.simple article a:hover{
	background-color: transparent;
	color: #0031e6;
}
/*ボックス内の写真設定*/
#main section.list.simple article figure a:hover img{
	background-color: #f6f1b2;
	border: 1px solid #999;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.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);			/*同上*/
}
/*テーブルのキャプション設定*/
.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;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	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="button"]{
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #0027b5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0031e6), to(#0027b5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#0031e6, #0027b5);	/*同上*/
	background-image: linear-gradient(#0031e6, #0027b5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover{
	background-color: #0031e6;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0027b5), to(#0031e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#0027b5, #0031e6);	/*同上*/
	background-image: linear-gradient(#0027b5, #0031e6);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop{
	clear: both;
}
#pagetop a{
	color : #ffffff;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color : #0068b7;	/*背景色*/
	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: #dcdcdc;
}
.mb15{
	margin-bottom: 15px;
}
.mt15{
	margin-top: 15px;
}
.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1{
	color: #1424f6;
}
.pr{
	font-size: 10px;
}
.btn{
	font-size: 13px;
}
.wl{
	width: 96%;
}
.ws{
	width: 50%;
}
.c{
	text-align: center;
}
.r{
	text-align: right;
}
figcaption{
	font-size: 11px;
}
#menubar_hdr{
	display: none;
}
.mini1{
	font-size: 11px;
	font-weight: normal;
}
img.wn{
	width: 100%;
	height: auto;
}

/*３カラムの各ブロック（※タイプ１）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list1 section{
	height: auto;	/*ボックスの高さ*/
	width: 30%;	/*ボックスの幅*/
	float: left;
	line-height: 1.6;
	margin-left: 14px;
	overflow: hidden;
	position: relative;
	margin-bottom: 25px;
}
/*ボックス内の段落タグ設定*/
#main section.list1 section p{
	padding: 0px;
}
/*ボックス内のh4タグ設定*/
#main section.list1 section h4{
	font-size: 100%;
	color: #001ada;	/*文字色*/
}
/*写真の設定*/
#main section.list1 section figure{
	padding: 5px;	/*写真と枠線との余白設定*/
	margin-bottom: 5px;	/*画像の下に少し余白を空ける設定*/
}
#main section.list1 section figure img{
	width: 100%;
	height: auto;
}

/*３カラムの各ブロック（※タイプ２）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list2 section{
	height: auto;	/*ボックスの高さ*/
	width: 30%;	/*ボックスの幅*/
	float: left;
	line-height: 1.6;
	margin-left: 14px;
	overflow: hidden;
	position: relative;
	margin-bottom: 25px;
}
/*ボックス内の段落タグ設定*/
#main section.list2 section p{
	padding: 0px;
}
/*ボックス内のh4タグ設定*/
#main section.list2 section h4{
	font-size: 100%;
	color: #001ada;	/*文字色*/
}
/*写真の設定*/
#main section.list2 section figure{
	padding: 5px;	/*写真と枠線との余白設定*/
	margin-bottom: 5px;	/*画像の下に少し余白を空ける設定*/
	border: 1px solid #CCC;	/*画像の枠線の幅、線種、色*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
#main section.list2 section figure img{
	width: 100%;
	height: auto;
}


/*Trade.html内のBox
---------------------------------------------------------------------------*/
#main section.list3 article{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background-color: #f6f1b2;	/*背景色*/
	-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.list3 article a{
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
/*マウスオン時*/
#main section.list3 article a:hover{
	background-color: #f6f1b2;	/*背景色*/
	color: #333;				/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main section.list3 article p{
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list3 article figure img{
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list3 article h4{
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom : 1px solid #cccccc;	/*下側の線の幅、線種、色*/
	border-left : 3px solid #0031c6;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color : #0031e6;	/*文字色*/
}


/*submitボタンの設定*/
input[type="submit"]{
        color:#fff;
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff8839), to(#d54304));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ff8839, #d54304);	/*同上*/
	background-image: linear-gradient(#ff8839, #d54304);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover{
        color:#fff;
	background-color: #dcdcdc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#ff2965), to(#c01f4c));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#ff2965, #c01f4c);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#ff2965, #c01f4c);			/*同上*/
}


/*トップページ３つのサービス*/
.mkrList{
	margin-right:-22px;
	position:relative;
}
#main section.Inner .mkrList li{
	float:left;
	width:31.2%;
	margin-right:2%;
	padding-top : 17px;
}
* html #main section.Inner .mkrList li{
	display:inline;	
}
#main section.Inner .mkrList li h5{
	background:url(../images/icon_circle01.gif) no-repeat 2px 9px ;
	font-weight:bold;
	font-size:15px;
	padding:0 0 0 17px;
	margin:0 0 9px 0;
	zoom:1;
}
#main section.Inner .mkrList li .outer{
	background:#FFF;
	border : 1px solid #cecece;
	padding:0 2px 2px 2px;
  margin-bottom : 25px;
}
#main section.Inner .mkrList li .inner{
	background:url(../images/icon_arrow05.gif) no-repeat 100% 100%;
	padding:5px 3px 7px 3px;
}
#main section.Inner .mkrList li .inner p.text{
	line-height:1.7;
	padding:7px 20px 0 15px;
}


