@charset "utf-8";

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

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

/*style.cssをリセットor上書き（上部のメインメニュー用）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav ul {
	height: auto;
	padding-left: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
/*メニュー１個ごとの設定*/
header nav ul li {
	float: none;
	border-right: 0;
}
header nav ul li a {
	line-height: 50px;
}
/*１個目のメニューの線の設定*/
header nav ul li:first-child {
	border-left: 0;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
header nav ul li {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F5B50A), to(#E0A50A));
	background-image: -webkit-linear-gradient(#F5B50A, #E0A50A);
	background-image: linear-gradient(#F5B50A, #E0A50A);
	-webkit-box-shadow: 0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
	text-align: center;
}
header nav ul li a {
	color: #FFF;
	text-decoration: none;
	display: block;
}
header nav ul li a:hover {
	background-color: #E0A50A;
	color: #FFF;
}
header nav ul li:first-child {
	border-radius: 6px 6px 0 0;
}
header nav ul li:last-child {
	border-radius: 0 0 6px 6px;
}

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

/*フッター
---------------------------------------------------------------------------*/
footer {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F5B50A), to(#F5B50A));
	background-image: -webkit-linear-gradient(#F5B50A, #F5B50A);
	background-image: linear-gradient(#F5B50A, #F5B50A);
	color: #FFF;
	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(#F5B50A), to(#F5B50A));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#F5B50A, #F5B50A);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#F5B50A, #F5B50A);
}
section#new h1.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#F5B50A), to(#F5B50A));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#F5B50A, #F5B50A);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#F5B50A, #F5B50A);
}
/*ブロック全体の設定*/
#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;
}
