@charset "UTF-8";

/*=======================================================

	ナビ固定ヘッダー用CSS(ナビ固定の場合)

	Created: 2013-02-20
	filename: navi_fixed.css

=======================================================*/

body {
	margin-top: 31px;
}
/*グローバルナビ固定用CSS*/
@media not print {
	@media (min-width: 576px) {
		#header{
			width:100%;
			height:35px;/*50px*/
			text-align:left;
		}
	}
	@media (max-width: 575px) {
		#header{
			width:100%;
			height:0px;
			text-align:left;
			/* 課題54対応 */border-bottom: 1px solid;
		}
	}
	#hnav{
		width:100%;
		text-align:left;
		position: fixed;
		top:0;
		left:0;
	}
	#home.new #header
	/*,#SC_Z07_01 #header*/ {
		background-position: center -50px;
	height:165px;/*213px*/
		margin-top: 31px;
	}
	/*for IE7--------------*/
	*+html #home.new #header {
		margin-top: 0;
	}
	
	#gnav {
		position: fixed;
	}
}
@media print {
	#header{
		display: none;
	}
}