@charset "utf-8";

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	display: none;
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
}
/*h1ロゴの設定*/
header h1 {
	padding: 20px 0 20px 0;	/*左から、上、右、下、左への余白*/
}
/*ロゴ画像の設定*/
header h1 img {
	width: 80%;	/*画面に対して80％の幅に*/
	height: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu ul {
	height: auto;
	padding: 0;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: none;
	width: auto;
	border: none !important;
	background-image: url(../images/btn_arrow.png), -webkit-gradient(linear, left top, left bottom, from(#454746), to(#000));	/*グラデーション*/
	background-image: url(../images/btn_arrow.png), -webkit-linear-gradient(#454746, #000);	/*同上*/
	background-image: url(../images/btn_arrow.png), linear-gradient(#454746, #000);			/*同上*/
	background-repeat: no-repeat;
	background-position: right center;
	text-align: left;
}
nav#menu ul li a {
	padding: 10px 0px 10px 20px;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-radius: 10px 10px 0 0;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	border-radius: 0 0 10px 10px;
	margin-bottom: 10px;
}
/*英語表記の設定*/
nav#menu ul li a span {
	display: none;	/*表示させない設定*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

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

/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg {
	display: none;
}

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

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

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

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

/*その他
---------------------------------------------------------------------------*/
/*製品詳細ページで上部メニューを表示させない設定。*/
#service2 nav#menu ul {
	display: none;
}
/*お問い合わせページで上部メニューを表示させない設定。*/
#contact nav#menu ul {
	display: none;
}
/*トップページ以外では、サブコンテンツを表示させない設定。表示させていたいならこのブロックを削除する。*/
#company #sub,
#service #sub,
#service2 #sub,
#staff #sub,
#recruit #sub,
#contact #sub {
	display: none;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}
