@charset "utf-8";


/*メインメニューが画面上部に到達した際の設定ファイル
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*fixmenuブロック*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;
}
/*headerブロック*/
body.is-fixed .header {
	margin-bottom: 60px;	/*メインメニューの高さ(height40 + padding10 + padding10)と同じサイズを指定する*/
}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

body.is-fixed .header {
	margin-bottom: 0px;	/*fixmenuから折りたたみメニューになるので、ここはリセット。*/
}

}
