@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Aldrich);

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;	/*文字サイズ/行間、フォントファミリー*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	font-size: 14px;
	line-height: 2;
}
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: #000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 960px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダーh1タグ（サイト名ロゴ）
---------------------------------------------------------------------------*/
header h1 {
	font: 30px 'Aldrich', sans-serif;
	padding: 10px 20px 10px 20px;
	width:300px;
	float:left;
}
header h1 a {
	color: #000;
	text-decoration: none;
}
header h1 span {
	font-size:10px;
	display:block;
}
header #headinfo {
	width:620px;
	font-size:100%;
	float:right;
}
header #headinfo p#cert {
	font-size:11px;
	width:250px;
	float:left;
	line-height:15px;
	margin:20px 0px 10px;
}
header #headinfo #tel-addr {
	text-align:right;
}
header #headinfo #tel-addr #tel {
	font-size:16px;
	padding-top:5px;
}
header #headinfo #tel-addr #tel span {
  font-size:24px;
	font-weight:bold;
	color:#900;
	line-height:30px;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav {
	clear:both;
}
header nav ul {
	background-color: #0e1e41;	/*背景色*/
	height: 40px;		/*メニューの高さ*/
	border-radius: 6px;	/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#284571), to(#0e1e41));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#284571, #0e1e41);	/*同上*/
	background-image: linear-gradient(#284571, #0e1e41);			/*同上*/
	padding-left: 20px;
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*メニュー１個ごとの設定*/
header nav ul li {
	float: left;
	border-right: 1px solid rgba(255,255,255,0.3);	/*右側の線の幅、線種、色(RGBカラーで255,255,255を30%の透明度で)の設定*/
}
header nav ul li a {
	line-height: 40px;	/*行間*/
	color: #FFF;		/*文字色*/
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding-right: 20px;
	padding-left: 20px;
}
/*マウスオン時の設定*/
header nav ul li a:hover {
	background-color: #2f5184;
	color: #FFF;
}
/*１個目のメニューの線の設定*/
header nav ul li:first-child {
	border-left: 1px solid rgba(255,255,255,0.3);
}

/*コンテンツ（main,sub,footerを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 20px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのsectionの１階層下のh1タグと、company,service2,contact,recruitのarticleのh1タグの設定*/
#main section > h1,
#main article > h1 {
	background-color: #0e1e41;	/*背景色*/
	border-radius: 6px;	/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#284571), to(#0e1e41));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#284571, #0e1e41);	/*同上*/
	background-image: linear-gradient(#284571, #0e1e41);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 100%;
	color: #FFF;
	padding: 3px 0px 3px 15px;
	clear: both;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
}
/*subコンテンツ内のh1タグ設定*/
#sub h1 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;
	padding: 5px 0px;
	background-color: #e3e3e3;	/*背景色*/
	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);			/*同上*/
}
/*subコンテンツの段落タグ設定*/
#sub p {
	padding-right: 10px;
	padding-left: 10px;
}

/*サブコンテンツ内のul(関連情報メニュー)タグ
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background-color: #f0f0f0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 30px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

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

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg img {
	border-radius: 6px;	/*画像の角を丸くする設定*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	margin-bottom: 10px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;
	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 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*同上*/
}
/*ボックス内の段落タグ設定*/
#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;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;
	padding: 0px 0px 0px 5px;
}
/*リンク設定*/
#main section.list article a,
#main section.list article div {
	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: #ebdeab;	/*マウスオン時のボックス色*/
}
#main section.list article div:hover {
	cursor:default;
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	overflow:hidden;
}
#main section.list section {
	height: auto;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 1px 5px #ececec;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 1px 5px #ececec;			/*同上*/
	border: 1px solid #d6d6d6;	/*枠線の幅、線種、色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f6f6f6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f6f6f6);	/*同上*/
	background-image: linear-gradient(#FFF, #f6f6f6);			/*同上*/
	padding: 20px 20px 10px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 15px;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
}
/*ボックス内のh4タグ設定*/
#main section.list section h4 {
	font-size: 100%;
	color: #86a47d;	/*文字色*/
	border-bottom: 2px dotted #86a47d;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}

/*************
/* マップ用CSS
*************/
.google-maps {
	position: relative;
	padding-bottom: 60%; /*高さは250pxで固定*/
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background-color: #f3f3f3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	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);			/*同上*/
	font-weight: bold;
}
/*submitボタンの設定*/
input[type="submit"] {
	width: 200px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e9f7f6;	/*背景色*/
	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 #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#FFF));
	background-image: -webkit-linear-gradient(#e3e3e3, #FFF);
	background-image: linear-gradient(#e3e3e3, #FFF);
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #dcdcdc;
}
.mb1em { margin-bottom: 1em; }
.mb2em { margin-bottom: 2em; }
.mb3em { margin-bottom: 3em; }
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #000;
}
.red {
	color:#900;
}
.bold {
	font-weight:bold;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.ip {
	width:98%;
}

figcaption {
	font-size: 11px;
}
