@charset "utf-8";


/*メインメニューが画面上部に到達した際の設定ファイル
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*fixmenuブロック*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
/*headerブロック*/
body.is-fixed .header {
	margin-bottom: 60px;	/*メインメニューの高さ(height40 + padding10 + padding10)と同じサイズを指定する*/
}
/*メインメニューの設定*/
body.is-fixed #menubar {
	background: rgb(58, 41, 15);	/*背景色（古いブラウザ用）*/
	background: rgba(39, 27, 10, 0.9);	/*背景色。255,255,255は白の事で、最後の0.9は透明度90%の事。*/
	border-top: none;		/*上の線だけ消す*/
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の0.1は透明度10%の事。*/
	box-shadow: 0px 3px 5px rgba(0,0,0,0.1);			/*同上*/
	border-radius: 10px 10px 10px 10px !important;		/*角丸のサイズ。左上、右上、右下、左下の順番。*/
}

@media screen and (max-width:650px){

body.is-fixed .header {
	margin-bottom: 0px;	/*fixmenuから折りたたみメニューになるので、ここはリセット。*/
}

}
