@charset "utf-8";

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header{
    /*fixedで上部固定*/
    position: fixed;
    width: 100%;
    z-index:10;/*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    color: #fff;
    text-align: center;
    padding: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    border: 0px;
    padding-top: 0px;
}



/* 以下は検証用のレイアウトのための CSS*/

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li a{
text-decoration: none;
color: #555;
padding:10px;
}

section{
    padding-right: 0;
    padding-left: 0;
}
