@charset "UTF-8";
body {
	color: #424e53;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	font-size: 100%;
	line-height: 1.4;
	margin: 0;
	padding: 0px;
	background-image: url(../shared/body_bg.jpg);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: center center;
}

/* ~~ エレメント / タグセレクター ~~ */
h1, h2, h3, h4, h5, h6, p, ul, ol, dl { 
	padding: 0;
	margin: 0;
}

a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
	margin: 0px;
	padding: 0px;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}

/* ~~ この固定幅コンテナが他のすべての div を囲みます。~~ */
.container {
	width: 900px; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ ヘッダー ~~ */
.header {
	width: 900px;
	background-image: url(../shared/header_bg.png);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	height: 105px;
	margin: 0px;
	padding: 0px;
}
.head_top {
	font-size: 12px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	line-height: 12px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	width: 870px;
	height: 75px;
}
.head_top h1 {
	font-size: 12px;
	line-height: 12px;
	font-weight: normal;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}

/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを左ではなく右に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて左方向にする代わりに、すべて右方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/
.sidebar1 {
	float: left;
	width: 200px;
	margin-right: 30px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}

.sidebar1 p {
	width: 200px;
	margin: 0px;
	padding: 0px;
	font-size: 11px;
}

.mainphoto {
	width: 670px;
	float: left;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}

.content {
	width: 670px;
	float: left;
	margin-top: 10px;
}

.content h1 {
	font-size: 15px;
	color: #00428e;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #00428e;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #00428e;
	width: 671px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}

.content h2 {
	font-size: 15px;
	color: #00428e;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #00428e;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #00428e;
	width: 671px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}

.content h3 {
	font-size: 18px;
	color: #008467;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	background-image: url(../shared/page_title.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 55px;
	width: 670px;
	font-weight: bold;
}

.content p {
	font-size: 14px;
	line-height: 25px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: justify;
}

/* ~~ News - 最新情報 ~~ */
.news {
	width: 430px;
	float: left;
	margin-right: 25px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #ffffff;
	height: 240px;
	background-image: url(../image/news_title.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 35px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.50);
	-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.50);
	-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.50);
}

.news a {
	width: 485px;
	color: #00428e;
	text-decoration: none;
	font-size: 12px;
	line-height: 18px;
}
.news a:hover {
	width: 485px;
	color: #00428e;
}
.news h3 {
	font-size: 15px;
	color: #0e9d70;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #0e9d70;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	width: 461px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.news p {
	text-align: center;
	font-size: 14px;
	line-height: 25px;
	padding-bottom: 10px;
}
.news_list {
	color: #424e53;
	width: 430px;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	height: 50px;
}
.news_list p {
	color: #008467;
	font-size: 12px;
	font-weight: normal;
}
.news_list dl {
	font-size: 12px;
	display: block;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.news_list dt {
	color: #008467;
	float: left;
	width: 100px;
	line-height: 100%;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #424e53;
	font-weight: bold;
	margin: 0px;
	letter-spacing: 0.1em;
}
.news_list dd {
	width: 330px;
	line-height: 100%;
	padding-bottom: 5px;
	padding-top: 7px;
	padding-right: 0px;
	padding-left: 0px;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: #424e53;
	float: left;
	margin: 0px;
}
.news_list a {
	color: #f00000;
	margin: 0px;
	padding: 0px;
	line-height: 100%;
}


/* ~~ Layout ~~ */
.pickup {
	font-weight: bold;
	color: #bc121a;
}

.bloglink {
	float: left;
	width: 200px;
	margin-top: 0px;
	margin-right: 30px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.bloglink p {
	font-size: 11px;
	width: 200px;
	padding-bottom: 2px;
	padding-top: 10px;
}

.jbloglink {
	font-size: 12px;
	width: 200px;
	padding-bottom: 2px;
}

.right_bnr {
	float: left;
	width: 175px;
	margin: 0px;
	padding: 0px;
}

.pd_photo {
	float: left;
	width: 190px;
	height: 220px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

/* ~~ テキストスタイル ~~ */
.txt_12px {font-size: 12px;}

.txt_13px {font-size: 13px;}

.txt_14px {font-size: 14px;}

.txt_15px {font-size: 15px;}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リンク用の上部のボーダーを作成します。他のすべてのものは LI 上で下部のボーダーを使用して配置されます。 */
	margin-bottom: 15px;
	font-size: 16px;
	color: #0e9d70;
	background-color: #ffffff;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
ul.nav li {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #424e53;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding: 0px;
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	display: block; /* アンカーにブロックプロパティを指定し、アンカーが含まれる LI 全体がアンカーになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。 */
	width: 165px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
	color: #0e9d70;
	height: 40px;
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #0e9d70;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	line-height: 40px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	color: #0e9d70;
}

#bg1 {
	background-image: url(../shared/nav_icon.gif);
	background-position: right 0px;
	background-repeat: no-repeat;
}
#bg1 .select {
}

#bg2 {
}
#bg2 .select {
}

/* ~~ News Topics ~~ */
.news_topics {
	border: 2px solid #008467;
	width: 161px;
	height: 120px;
	padding: 5px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #fffde4;
}
.news_topics h3 {
	font-size: 14px;
	line-height: 24px;
	color: #C30;
	font-weight: bold;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
.news_topics p {
	font-size: 13px;
	line-height: 20px;
	margin: 0px;
	font-weight: bold;
	padding: 0px;
}
.topics_link {
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	text-align: right;
}
.topics_link a {
	color: #0e9d70;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}

/* ~~ テーブルスタイル ~~ */
table#table01 {
	width: 100%;
	border: 1px solid #424e53;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 13px;
	line-height: 20px;
}
table#table01 th {
	padding: 5px;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	background-color: #bde1d6;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #424e53;
	border-right-color: #424e53;
	border-bottom-color: #424e53;
	border-left-color: #424e53;
}
table#table01 td {
	padding: 5px;
	text-align: left;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #424e53;
	border-right-color: #424e53;
	border-bottom-color: #424e53;
	border-left-color: #424e53;
}
table#table01 .mailbtn {
	padding: 5px;
	font-weight: bold;
	line-height: 120%;
	text-align: right;
	background-color: #e5ecf3;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #424e53;
	border-right-color: #424e53;
	border-bottom-color: #424e53;
	border-left-color: #424e53;
}

.table_map {
	width: 280px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 12px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
}
.table_map th {
	padding: 5px;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	background-color: #e5ecf3;
}
.table_map td {
	padding: 5px;
	text-align: left;
}

.table001 {
	width: 645px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 13px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	line-height: 20px;
}
.table001 th {
	padding: 5px;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	background-color: #e5ecf3;
}
.table001 td {
	padding: 5px;
	text-align: left;
}

.table002 {
	width: 645px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 11px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 20px;
}
.table002 th {
	padding: 5px;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	background-color: #e5ecf3;
}
.table002 td {
	text-align: left;
	margin: 0px;
	padding: 0px;
}

.table003 caption {
	font-weight: bold;
	font-size: 12px;
	line-height: 20px;
	text-align: right;
}
.table003 {
	width: 100%;
	border: 1px solid #424e53;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 11px;
	line-height: 15px;
	margin-top: 5px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.table003 th {
	padding: 3px;
	font-weight: bold;
	text-align: center;
	background-color: #bde1d6;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #424e53;
	border-right-color: #424e53;
	border-bottom-color: #424e53;
	border-left-color: #424e53;
}
.table003 td {
	padding: 3px;
	text-align: center;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #424e53;
	border-right-color: #424e53;
	border-bottom-color: #424e53;
	border-left-color: #424e53;
}

.tabletxt_14px {
	font-size: 14px;
	line-height: 24px;
}
.tabletxt_14px a {
	font-size: 14px;
	line-height: 24px;
	color: #008467;
	text-decoration: none;
}
.tabletxt_14px_red {
	font-size: 14px;
	line-height: 24px;
	color: #c30000;
}

/* ~~ 商品紹介 ~~ */
.products {
	width: 645px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	padding: 0px;
}
.products_title {
	font-size: 15px;
	color: #0e9d70;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	font-weight: bold;
	width: 660px;
}
.products p {
	text-decoration: none;
	font-size: 13px;
	line-height: 20px;
	padding: 0px;
	margin: 0px;
}

/* ~~ ウエス事業部 ~~ */
.waste {
	width: 645px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	padding: 0px;
}
.waste_title {
	font-size: 15px;
	color: #0e9d70;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	font-weight: bold;
	width: 660px;
}
.waste p {
	text-decoration: none;
	font-size: 13px;
	line-height: 20px;
	padding: 0px;
	margin: 0px;
}

/* ~~ よくあるご質問 ~~ */
.faq {
	margin: 0px;
	padding: 0px;
}
.faq_title {
	font-size: 15px;
	color: #0e9d70;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	font-weight: bold;
	width: 660px;
}
.faq p {
	text-decoration: none;
	color: #008467;
	margin: 0px;
	padding: 0px;
	font-size: 13px;
	line-height: 16px;
}
.faq a {
	text-decoration: none;
	color: #008467;
	font-weight: bold;
}
.faq dl {
	margin-left:20px;
	line-height:16px;
	overflow: hidden;
	zoom: 1;
	font-size: 13px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.faq dt {
	margin-top:20px;
	padding-left:20px;
	text-indent:8px;
	background-image: url(../faq/image/faq_q.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	font-weight: bold;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	line-height: 20px;
}
.faq dd {
	background-image: url(../faq/image/faq_a.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: -1px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 28px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #424e53;
	line-height: 20px;
	width: 602px;
}

/* ~~ 住所 & 地図 ~~ */
.left_location {
	width: 335px;
	float: left;
	margin-right: 15px;
}

.right_map {
	width: 335px;
	float: right;
	margin-bottom: 15px;
}
.map_title {
	font-size: 15px;
	color: #0e9d70;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0e9d70;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 10px;
	font-weight: bold;
}

/* ~~ トップスタイル ~~ */
.gotop {
	margin: 0px;
	padding: 0px;
}
.gotop a {
	font-size: 12px;
	color: #008467;
	text-decoration: none;
	line-height: 40px;
	margin: 0px;
	padding: 0px;
	width: 670px;
}
.gotop p {
	font-size: 12px;
	color: #008467;
	text-align: right;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

/* ~~ 地図 ~~ */
.right_map {
	width: 350px;
	float: right;
}

.left_location {
	width: 305px;
	float: left;
}

.btm_class {
	clear: both;
	width: 680px;
}

/* ~~ フッタースタイル ~~ */
.footer {
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both;
	font-size: 10px;
	line-height: 10px;
	height: 20px;
	width: 900px;
	color: #424e53;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #0e9d70;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* このクラスは、.footer が .container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (.container 内に) 配置できます。 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
