#header{
	/*height: 60px;/*高さ指定*/
	width:100%;/*横幅指定*/

}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
  position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
  justify-items: center;
  height: 50px;
  padding-bottom: 45px;
  
}
#header.fixed ul{
    justify-content: center;
}