@charset "utf-8";

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

/*ヘッダーh1タグ（サイト名ロゴ）
---------------------------------------------------------------------------*/
header h1 {
	font: 24px 'Aldrich', sans-serif;
	text-align: left;
	padding-left:5px;
}

/*style.cssをリセットor上書き（上部のメインメニュー用）
---------------------------------------------------------------------------*/
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav ul {
	background-color: #ffffff;	/*背景色*/
	height: 40px;		/*メニューの高さ*/
	border-radius: 6px;	/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffffff, #ffffff);	/*同上*/
	background-image: linear-gradient(#ffffff, #ffffff);			/*同上*/
	padding-left: 20px;
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*メニュー１個ごとの設定*/
header nav ul li {
	width:46.3%;
	float: left;
	border-right: 1px solid rgba(79,129,189,0.3);	/*右側の線の幅、線種、色(RGBカラーで255,255,255を30%の透明度で)の設定*/
}
header nav ul li a {
	width:auto;
	line-height: 40px;	/*行間*/
	color: #6c6c6c;		/*文字色*/
	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: #4f81bd;
	color: #FFF;
}
/*１個目のメニューの線の設定*/
header nav ul li:first-child {
	border-left: 1px solid rgba(79,129,189,0.3);
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
#main p {
	padding: 0;
}
#sub ul li a {
	padding: 10px;
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 30px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
/*
footer {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#24bccb), to(#00bbbb));
	background-image: -webkit-linear-gradient(#24bccb, #00bbbb);
	background-image: linear-gradient(#24bccb, #00bbbb);
	color: #6c6c6c;
	padding-top: 0;
	line-height: 1.2;
}
footer a {
	color: #FFF;
}
*/
/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg img {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*
section#new h1.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#24bccb), to(#00bbbb));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#24bccb, #00bbbb);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#24bccb, #00bbbb);
}
section#new h1.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#24bccb), to(#00bbbb));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#24bccb, #00bbbb);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#24bccb, #00bbbb);
}
*/
/*ブロック全体の設定*/
/*
#new {
	margin-bottom: 1em;
}
#new dl {
	height: auto;
	padding-left: 0;
}
*/
/*日付設定*/
/*
#new dt {
	float: none;
	width: auto;
}
*/
/*記事設定*/
/*
#new dd {
	border-bottom: 1px solid #d2d2d2;
	padding-left: 0;
}
*/

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;
	width: 40%;
	height: auto;
	margin-right: 10px;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}

/*service2.htmlの製品詳細
---------------------------------------------------------------------------*/
/*製品詳細ページではヘッダーとメインメニューとサブコンテンツを表示させない設定*/
#service2 header,
#service2 header nav,
#service2 #sub {
	display: none;
}
/*写真設定*/

/*その他
---------------------------------------------------------------------------*/
/*トップページ以外では、サブコンテンツを表示させない設定。表示させていたいならこのブロックを削除する。*/
#company #sub,
#service #sub,
#contact #sub {
	display: none;
}
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}




