@charset "utf-8";

/* >> プリント用CSS
------------------------------*/

html, body {/* IE8、FF 2ページ目以降背景不具合修正 */
	overflow: visible !important;
	}

body {/* モダンブラウザ用 */
/*	zoom:70%;*/
	zoom:100%;
	}

* html body {/* IE4～6、MacIE4～5用 */
	zoom:70%;
	}



/* FF 2ページ目以降背景不具合修正
floatによる不具合回避→table化へ */

html:not([lang*=""]) #content {/* Firefox用 */
	display:table;
 }
html:not([lang*=""]) #content #con_left{/* Firefox用 */
		display:table-cell;
		float:none;
		width:680px;/*マージンが効かなくなるため、幅指定で調整*/
		vertical-align:top;
 }
html:not([lang*=""]) #content #con_right{/* Firefox用 */
		display:table-cell;
		float:none;
		width:220px;
		vertical-align:top;/*上部に余白ができるため、上寄せに*/
 }



/* IE8用2ページ目以降背景不具合修正
floatによる不具合回避→table化へ */

html>/**/body #content {/* IE8用 */
	display /*\**/: table\9;
}
html>/**/body #content #con_left {/* IE8用 */
	display /*\**/: table-cell\9;
	float /*\**/: none\9;
	width /*\**/: 680px\9;
	vertical-align /*\**/: top\9;
}
html>/**/body #content #con_right {/* IE8用 */
	display /*\**/: table-cell\9;
	float /*\**/: none\9;
	width /*\**/: 220px\9;
	vertical-align /*\**/: top\9;
}


/* 地図ページ
印刷ボタン、閉じるボタン削除 */
#header_map .head04 .head02a .head_nav li{
display:none;
	}
#footer .foot03in .footb{
display:none;
	}











