@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #000;	/*全体の文字色*/
	background-color: #FFF;	/*全体の背景色*/
	background-image: url(../images/bg.gif);	/*背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	overflow: auto; 
	font: 14px/1.5 "メイリオ", 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;
}

span {
	display: inline;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1000px;	/*コンテナー幅*/
	margin: 0px auto;
	background: #FFF;	/*背景色*/
	/*border-top: 5px solid #CCCCCC;*/		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;	/*ヘッダーの高さ*/
	width: 100%;	/*ヘッダーの幅*/
	background-color: #33B2FF; /*背景色*/
	/*#33B2FF　元の色*/
	position: relative;
}

header #left_area{
	float: left;
	width: 400px;
	height: 100px;
}

header #right_area{
	float: right;
	padding-top: 20px;
	width: 250px;
	height: 80px;
}

/*h1タグの設定*/
header h1 {
	font-size: 17px;	/*文字サイズ*/
	line-height: 10px;	/*行間*/
	position: absolute;
	top: 10px;			/*ヘッダーブロックに対して上から45pxの位置に配置*/
	right: 0px;			/*ヘッダーブロックに対して右から0pxの位置に配置*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
	color: #666;	/*文字色*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 5px;	/*ヘッダーブロックに対して左から5pxの位置に配置*/
	top: 5px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/

/*ボタン6個の場合はwidth164px*/


nav#menubar ul li {
	float: left;
	width: 142px;	/*幅*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左側の線の幅、線種、色*/

	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	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);	

}
nav#menubar ul li a {
	height: 57px;	/*高さ*/
	padding-top: 12px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 13px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	text-align: center;	/*文字をセンタリング*/
	/*同上*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;	/*左側の線を消す設定*/
}

/*マウスオン時の設定*/
nav#menubar ul li a:hover{
	background: #CCCCCC url(../images/menu_bg_on.png) no-repeat left center;
}

/*current(表示中のメニュー)の設定*/
nav#menubar ul li#current{
	background: #CCCCCC url(../images/menu_bg_on.png) no-repeat left center;
	height: 57px;	/*高さ*/
	padding-top: 12px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	text-align: center;	/*文字をセンタリング*/
	/*同上*/
}

/*英語表記の設定*/
nav#menubar ul li a span,
nav#menubar ul li#current span {
	font-size: 11px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	color: #33B2FF;			/*文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#banner {
	clear: left;
	position: relative;
	height: 500px;
}

#banner ul li {
	list-style-type: none;
	position: absolute;
}

#banner img {
	width: 1000px;
	height: 500px;
}

#banner .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を囲むブロック）
---------------------------------------------------------------------------*/
#contentstop {
	width: 1000px;	/*コンテンツ幅*/
	padding-top: 10px;
	margin: 0px auto;
}

#contents {
	clear: left;
	width: 950px;	/*コンテンツ幅*/
	padding-top: 5px;
	margin: 0px auto;
}


/*パンくずリストの領域設定
---------------------------------------------------------------------------*/
#pankuzu{
	width: 700px;
	height: 20px;
	padding-top: 6px;
	padding-bottom: 5px;
	font-size: 12px;
	color: #666;
}


/*TOPページ専用のコンテンツエリア
---------------------------------------------------------------------------*/

#news {
	width: 1000px;	/*メインコンテンツ幅*/
}

#news h2 {
	background-color: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#666));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-linear-gradient(#ccc, #666);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, linear-gradient(#ccc, #666);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	font-size: 120%;
	color: #fff;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	/*clear: both;*/
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 950px;	/*メインコンテンツ幅*/
	padding-bottom: 15px;
}

/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#666));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-linear-gradient(#ccc, #666);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, linear-gradient(#ccc, #666);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	font-size: 120%;
	color: #fff;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	clear: both;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	font-size: 135%;
	padding: 2px 0px 6px 15px;	/*左から、上下、左右への余白*/
	clear: both;
	color: #006;
	background: url(../images/h3_bgimage.gif) no-repeat left center;
	margin-bottom: 10px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	border: 3px double #CCC;	/*枠線の幅、線種、色*/
	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;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 2px 5px #CCC;			/*同上*/
}
#main section.list section a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list section a:hover {
	background-color: #fff;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list section h4 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #0e36ca;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #0e36ca;	/*文字色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
}

/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding: 15px 10px;		/*左から、上下、左右への余白*/
	background: #eee;		/*背景色*/
	border-bottom: 1px solid #d2d2d2;	/*下部の線の幅、線種、色*/
	border-top: 5px solid #0e36ca;		/*上部の線の幅、線種、色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #d2d2d2;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*左から、上下、左右への余白*/
}

/*サブにある画像の上下マージン*/
#sub .imgmargin{
	margin-bottom: 5px;
}


/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #0e36ca;	/*背景色*/
	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;		/*同上*/
}



/*ページ別スタイル設定　[service.html]
---------------------------------------------------------------------------*/
.serviceinfo_left{
	float: left;
	width: 250px;
	height: 200px;
}

.serviceinfo_right{
	float: right;
	width: 670px;
	height: 200px;
	padding: 0px 15px 0px 15px;
	font-size: 16px;
}

/*ページ別スタイル設定　[introduction.html]
---------------------------------------------------------------------------*/
.introductioninfo_left{
	float: left;
	width: 450px;
	height: 330px;
	padding-bottom: 15px;
}

.introductioninfo_right{
	float: right;
	width: 470px;
	height: 350px;
	padding: 0px 15px 15px 15px;
	font-size: 18px;
}


/*ページ別スタイル設定　[recruit.html]
---------------------------------------------------------------------------*/

#wishmassage{
	color:red;
	margin-top: 10px;
	width: 700px;
	height: 70px;
	font-size: 16px;
	line-height: 150%;
}


/*ページ別スタイル設定　[contact.html]
---------------------------------------------------------------------------*/

#contactmassage{
	margin-top: 10px;
	width: 850px;
	height: 160px;
	font-size: 16px;
	line-height: 180%;
}

table.formTable{
	width: 90%;
	margin: 0 auto;
	border-collapse:collapse;
}

table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}

table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}


/*ページ別スタイル設定　[service.html]
---------------------------------------------------------------------------*/

.catch{
	width: 950px;
	height: 100px;
	margin-top: 25px;
	margin-bottom: 25px;
}

#ex_mes{
	width: 700px;
	font-size: 16px;
	color: black;
}


/*ページ別スタイル設定　[company.html]
---------------------------------------------------------------------------*/

#introduce{
	width: 750px;
	height: 430px;
	margin-left: 100px;
	line-height: 150%;
	font-size: 18px;
	color: black;
}



/*文字指定用
---------------------------------------------------------------------------*/

.font_16{
	font-size: 16px;
	color: #000;
}

.font_20{
	font-size: 20px;
	color: #000;
}

.font_24{
	font-size: 28px;
	color: #000;
}

.sub{
	font-size: 14px;
	color: #666;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 3px;
	padding-bottom: 3px;
	color: #fff;
	background-color: #0000CB;
}
footer .pr {
	display: inline;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページ内「新着ニュース」
---------------------------------------------------------------------------*/
#new{
	margin-top: 20px;
	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;
}

#news_margin {
	margin-left: 15px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 150%;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 130px;
	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;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #0099ff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#0099ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #0099ff);	/*同上*/
	background-image: linear-gradient(#FFF, #0099ff);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #0066ff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#0066ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #0066ff);	/*同上*/
	background-image: linear-gradient(#fff, #0066ff);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	margin-bottom: 15px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #0e36ca;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;		/*文字色*/
}


/*FOOTER設定
---------------------------------------------------------------------------*/
#footer_menu{
	clear: both;
	background-color: #0000CB;
	color: #fff;
	width: 1000px;
	height: 40px;
	padding-top: 20px;
	text-align: center;
}

#footer_menu a{
	color: #fff;
}

#footer_menu small{
	color: #ccc;
	margin-top: 10px;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 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;
}


