@charset "utf-8";
body {
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	background:#edede1 url(../images/body_bg.jpg) repeat-y top center;
	margin: 0;
	padding: 0;
	color: #404040;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #0000ff;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #404040;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}
hr {
	border-width:1px 0 0 0;
	border-style:solid;
	height:1px;
	color:#b0b0b0;
}
hr.link {
	width:90%;
}
/* ~~ この固定幅コンテナが他の div を囲みます。~~ */
div.container {
	width:1000px;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	text-align: left;
}

/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
div.header {
	width:1000px;
	margin:0 auto;
}

/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを右ではなく左に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて右方向にする代わりに、すべて左方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/


div.header_flash {
	height: 250px;
	width:900px;
	background-color:#fff;
	margin:0 auto;
}
div.wrapper {
	background:transparent url(../images/wrapper_bg.png) repeat-y top left;
	width:900px;
	overflow:hidden;
	margin: 10px auto 0 auto;
	font-size: 14px;
}
div.wrapper.child {
	background-image:none;
}
div.sidebar1 {
	float: right;
	width: 253px;
	padding:0 0 0 10px;
	margin:0;
	overflow: hidden;
	/*
	border-left: 2px solid #ccc;
	border-right: 2px solid #ccc;
	*/
}
div.content {
	padding:0;
	margin:0;
	width: 637px;
	float: right;
	text-align: left;
	overflow: hidden;
	/*
	border-left: 2px solid #ccc;
	*/
}
div.content.child {
	width:900px;
	float:none;
}
div.nosidebar {
	width:900px;
	background-image:none;
	background-color:#fff;
}
/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.wrapper ul, .content ol { 
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リストのマーカーを削除します。 */
	border-top: 1px solid #666; /* リンク用の上部のボーダーを作成します。他のすべてのものは LI 上で下部のボーダーを使用して配置されます。 */
	margin-bottom: 15px; /* 下のコンテンツのナビゲーション間の間隔を作成します。 */
}
ul.nav li {
	border-bottom: 1px solid #666; /* ボタンの区切り線を作成します。 */
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	padding: 5px 5px 5px 15px;
	display: block; /* リンクにブロックプロパティを指定し、リンクが含まれる LI 全体がリンクになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。 */
	width: 160px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ フッター ~~ */
div#footer {
	text-align:center;
	font-size:12px;
	line-height:25px;
	padding: 10px 0;
	/*background-color:#0098aa;*/
	color:#fff;
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both; /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
}
div#footer div.footer_bg {
	background:transparent url(../images/footer_bg.png) repeat-x top left;
	width:1000px;
	height:106px;
	margin:0 auto;
}
div#footer input {
	background-color:#3a614c;
	/*background-color:#0098aa;*/
	color:#fff;
}
div#footer input.url {
	border:none;
}
/* ~~ その他の 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;
}
div.nav {
	width: 900px;
	margin: 0 auto;
}
div.header_top {
	background:transparent url(../images/top_bg.jpg) repeat-x top left;
	height: 80px;
	width: 1000px;
	text-align:left;
}
div.logo {
	text-align:left;
	width:130px;
	padding-top:14px;
	padding-left:50px;
	float:left;
}
div.company {
	width:400px;
	height:62px;
	padding-top:7px;
	padding-left:0px;
	float:left;
}
div.place {
	width:227px;
	height:62px;
	padding-top:9px;
	padding-left:0px;
	float:left;
}
div.que {
	width:143px;
	height:62px;
	padding-top:6px;
	float:left;
}
div.nav ul {
	margin: 0;
	padding: 0;
	background: transparent url(../images/nav_bg.png) repeat-x scroll left bottom;
	height: 30px;
	line-height: 30px;
	position:relative;
	/*border-bottom:2px solid #b7b7b7;*/
	text-decoration:none;
}
div.nav li {
	margin: 0;
	padding: 0;
	width:146px;
	list-style-type: none;
	list-style-image: none;
	list-style-position: outside;
	float: left;
	border-right: #888 2px solid;
	/*border-right: #09c 2px solid;*/
	border-left:#ffffff 1px solid;
	border-collapse:collapse;
	text-align:center;
	text-decoration:none;
}
div.nav li.left {
	border-left:none;
}
div.nav li.right {
	border-right:none;
}
div.nav li.this {
	background-image:url(../images/nav_bg_this.png);
	color:#fff;
}
div.nav a {
	font-size: 18px;
	text-decoration:none;
	width:146px;
	height:30px;
	display:block;
	color:#404040;
}
div.nav a:hover {
	background-color:#fff;
}
h1.main {
	background-image:none;
	text-indent:-5000px;
	font-size:1px;
}
ul.sub {
	list-style-type:square;
	margin:0;
	padding-bottom:0;
	font-size:12px;
	padding-left: 18px;
}
iframe#info {
	border:none;
	width:225px;
	/*height:300px;*/
	/*overflow:auto;*/
	margin:0 0 0 10px;
	;
	position: relative;
	background-color: transparent;
}
p.des {
	margin-top:0px;
	margin-bottom:0px;
	padding:0.25em 1em 0.25em 1em;
	text-indent:1em;
	font-size:13px;
	line-height:1.5em;
}
p.des2 {
	margin-left:30px;
}
p.footer1 {
	font-size:20px;
	line-height:1.3em;
	text-indent:0;
}
p.footer2 {
	font-size:16px;
	line-height:1.3em;
	text-indent:0;
}
div#end {
	color:#444;
}
table#office {
	background-color:transparent;
	font-size:13px;
	margin:20px auto 20px 50px;
	border-collapse:collapse;
}
table#office th.office_item {
	width:120px;
	vertical-align:top;
	border-bottom:1px #aaa solid;
	border-right:1px solid #aaa;
	border-left:none;
}
table#office td.office_des {
	/*width:600px;*/
	line-height:1.5em;
	border-bottom:1px #aaa solid;
	border-right:none;
	border-left:none;
}
table#office td.paint,th.paint {
	background-color:#edede1;
}
div.big_title {
	background:transparent url(../images/title_big_bg.png) repeat-x top left;
	height:80px;
	margin: 0;
	width: 620px;
}
div.sb {
	background:transparent url(../images/title_big_bg.png) repeat-x top left;
	width:248px;
	margin-left:3px;
}
div.glass_break_title {
	float:left;
	height:80px;
	overflow: hidden;
}
table.big_title td {
	text-align:center;
	vertical-align:middle;
}
span.hilight {
	font-size:16px;
	font-weight:bold;
}
table.smart_eco {
	margin: 10px 0 0 0;
}
table.smart_eco td.text {
	padding:5px;
	border-bottom:1px solid #bbb;
	line-height:22px;
}
table.smart_eco td.photo {
	width:85px;
	border-bottom:1px solid #bbb;
	padding:5px 0;
	text-align:center;
}
h1.top {
	height:62px;
	text-indent:-5000px;
	font-size:1px;
	background-color:transparent;
	background-position:top left;
	background-repeat:no-repeat;
}
h1.smart {
	height:30px;
	padding-top:40px;
	background-image:url(../images/smart_eco_text.png);
}
h1.reform {
	height:30px;
	padding-top:40px;
	background-image:url(../images/MGS_reform.png);
}
h1.glass_break_title {
	height:80px;
	padding-top:0px;
	background-image:url(../images/glass_break_text.png);
	width:188px;
}
span.big_title {
	font-size:14px;
	font-weight:normal;
}
h2.small_title {
	background:transparent url(../images/title_small_bg.png) no-repeat top left;
	height:33px;
	font-size:18px;
	font-weight:normal;
	text-indent:1em;
	padding-top:3px;
	margin-top: 20px;
}
table.reform_products {
	background-color:#acf49e;
	margin-top: 10px;
}
table.reform_products td {
	width:150px;
	padding-left:20px;
}
ul.sub li.top {
	margin:7px 0 0 0;
}
h1.normal {
	background:transparent url(../images/title_big_bg3.png) repeat-x top left;
	height:33px;
	font-size:20px;
	font-weight:normal;
	padding:7px 0 0 0;
	margin: 70px 0 0 0;
	width:245px;
	text-align:center;
}
div#result {
	width:250px;
	height:350px;
	text-align: right;
}
iframe#result_photo {
	margin:0 auto;
	width: 245px;
	height: 320px;
	padding: 0 3px 0 0;
}
div.docTop {
	background:transparent url(../images/docTop.png) no-repeat top left;
	width:245px;
	height:15px;
	margin:0;
	font-size:1px;
	padding:0;
}
div.docTop2 {
	background-image:url(../images/docTop2.png);
	margin-top: 30px;
}
div.docTop3 {
	background-image:url(../images/docTop3.png);
}
div.infotop {
	background-image:url(../images/bb_top.jpg);
}
div.docMid {
	background:transparent url(../images/docMid.png) repeat-y top left;
	width:245px;
	/* [disabled]margin:0; */
	padding:0;
}
div.infomid {
	background-image:url(../images/bb_mid.jpg);
}
div#mycustomscroll {
	background:transparent url(../images/bb_mid.jpg) repeat-y top left;
	width:245px;
	margin:0;
	padding:0;
	height: 300px;
	overflow: auto;
	position: relative;
}
div.docBot {
	background:transparent url(../images/docBot.png) no-repeat top left;
	width:245px;
	height:20px;
	margin:0;
	padding:0;
}
div.infobot {
	background-image:url(../images/bb_bot.jpg);
	height:35px;
}
table#whatsnew_header {
	margin-left:10px;
}
table#whatsnew_header td.date {
	width: 50px;
	text-align:center;
	font-size:13px;
	border-bottom: 1px solid #ccc;
	border-right:1px solid #ccc;
}
table#whatsnew_header td.event {
	font-size:13px;
	border-bottom: #ccc solid 1px;
	width:160px;
}
div.mainVisualChild {
	height: 180px;
	width:900px;
	background-color:#fff;
	margin:0 auto;
}
table.maker td {
	width:150px;
}
table.maker td.name {
	height:19px;
}
table.maker td.space {
	border-top:#b0b0b0 dotted 1px;
	height:5px;
}
table.maker td.no {
	border:none;
}
table.maker p {
	margin:0;
	padding:0;
	text-indent:-5000px;
	background-color:transparent;
	background-repeat:no-repeat;
	background-position:top left;
}
table.maker p.cat1 {
	background-image:url(../images/maker_category1.png);
}
table.maker p.cat2 {
	background-image:url(../images/maker_category2.png);
}
table.maker p.cat3 {
	background-image:url(../images/maker_category3.png);
}
table.maker p.cat4 {
	background-image:url(../images/maker_category4.png);
}
table.sales td {
	width:150px;
}
table.sales td.space {
	border-top:#b0b0b0 dotted 1px;
	height:2px;
}
table.sales td.no {
	border:none;
}
iframe#mailform {
	border:none;
	margin:0;
	padding:0;
}
h1.privacy {
	font-size:20px;
	margin:0 auto 10px auto;
	width:300px;
	text-align:center;
}
div.privacy_close {
	margin:0 auto;
	width:300px;
	text-align:center;
}
table.big_title td.des {
	padding:0;
}
img.hover:hover {
	border:2px #00F solid;
}
td.enkaku_date {
	vertical-align:top;
	width:120px;
	border-bottom:#b0b0b0 dotted 1px;
}
td.enkaku_event {
	vertical-align:top;
	border-bottom:#b0b0b0 dotted 1px;
}
table.pairglass td {
	padding:5px;
}
table.pairglass td.face {
	border-bottom: #b0b0b0 solid 1px;
}
table.pairglass td.talk {
	border-bottom: #b0b0b0 solid 1px;
	width:400px;
}
table.pairglass td.extention {
	border-bottom: #b0b0b0 solid 1px;
	border-left:#b0b0b0 dotted 1px;
	width:320px;
}
table.pairglass td.qa {
	padding:0;
}
table.pairglass td.qa p {
	margin-bottom:5px;
	margin-top:5px;
}
table.pairglass td.q {
	width:50px;
	text-align:right;
	vertical-align:top;
	border-bottom:none;
	padding-top:5px;
}
table.pairglass td.a {
	text-align:right;
	vertical-align:top;
	border-bottom:1px solid #b0b0b0;
	padding-bottom:5px;
}
table.pairglass td.title {
	vertical-align:bottom;
	height:100px;
}
table.pairglass td.talk p {
	text-indent:1em;
	line-height:20px;
	padding:0;
	margin:0 0 5px 0;
}
table.pairglass td.extention p {
	font-size:12px;
	text-indent:1em;
	line-height:18px;
	padding:0;
	margin:0 0 5px 0;
}
table.inner {
	margin:0 0 0 50px;
}
table.inner th, table.inner td {
	text-align:center;
}
th.t, td.t {
	border-top:1px solid #404040;
}
th.r, td.r {
	border-right:1px solid #404040;
}
th.b, td.b {
	border-bottom:1px solid #404040;
}
th.l, td.l {
	border-left:1px solid #404040;
}
table.image_sub td.r {
	border-right:1px dotted #404040;
}
table.image_sub td.b {
	border-bottom:1px dotted #404040;
}
th.p, td.p {
	background-color:#fff;
}
h1.dairiten {
	font-size:18px;
	font-weight:normal;
	width:100%;
	text-align:center;
	margin-bottom:10px;
	padding-left:0;
}
p.dairiten {
	margin-bottom:0;
}
h1.link {
	font-size:18px;
	font-weight:normal;
	width:100%;
	text-align:center;
	margin-bottom:10px;
	padding:0;
}
table.reform {
	margin-left:20px;
}
table.reform td {
	padding:5px 0 5px 0;
	vertical-align:top;
}
table.reform th.summary {
	text-align:center;
	width:180px;
}
table.reform th.image {
	text-align:center;
	width:420px;
}
table.reform th.reccomend {
	text-align:center;
	width:270px;
}
table.reform li {
	margin-bottom:5px;
}
table.image_sub {
	margin:0 5px;
}
table.image_sub td {
	vertical-align:middle;
	width:190px;
	text-align:center;
	padding:5px;
}
td.dot {
	border-style:dotted;
}
table.image_sub td.provider {
	font-size:10px;
	text-align:right;
}
p.noindent {
	text-indent:0;
}
table.simulation {
	margin:20px 0 0 20px;
}
table.simulation td.logo {
	width: 180px;
	height:80px;
	text-align:center;
	border-bottom:1px solid #b0b0b0;
}
table.simulation td.exp {
	height:60px;
	width:600px;
	border-bottom:1px solid #b0b0b0;
}
table.index {
	margin:0 0 0 10px;
}
table.index td {
	width: 220px;
}
table.index td.wide {
	width: 290px;
}
div.gotoTop {
	text-align:right;
	width:100%;
}
table.sekoujisseki {
	margin-left:20px;
}
table.sekoujisseki th.title {
	text-align:left;
	vertical-align:top;
	font-size:20px;
	padding:5px;
}
table.sekoujisseki td.photoheader_before {
	text-align:left;
	padding:5px;
}
table.sekoujisseki td.photoheader_after {
	text-align:left;
	padding:5px;
}
table.sekoujisseki td.photo_before {
	vertical-align:top;
	text-align:center;
	width:210px;
	padding:5px 5px 25px 5px;
	border-bottom:1px solid #b0b0b0;
}
table.sekoujisseki td.photo_after {
	vertical-align:top;
	text-align:center;
	width:620px;
	padding:5px;
}
table.sekoujisseki td.exp {
	padding:5px 5px 25px 5px;
	width:620px;
	border-bottom:1px solid #b0b0b0;
}
table.sekoujisseki td.space {
	height:25px;
	text-align:right;
}
p.red {
	color:#F00;
}
p.link {
	margin:20px 0;
	font-size:14px;
	padding:0 0 0 5px;
}
div.space {
	margin:0;
	padding:0;
	height:1px;
}
body.link {
	width:225px;
	background-image:none;
	margin:0;
	padding:0;
}
iframe#link {
	width:230px;
	margin:0 0 0 7px;
	padding:0;
	overflow:hidden;
}
div.link {
	overflow:hidden;
}
