body {
    padding-top: 60px; /* ヘッダーの高さ分の余白をいれ、うしろの要素が隠れないようにする */
}

/******* ヘッダーのスタイル ********/
header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 60px; 
    background:
    color: #B78D4A;
    font-family: "Montserrat", san-serifi;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    justify-content:left;
}
div.left {
    text-align: left; 

   /* ロゴとメニューを横並びにする */
    display: flex; 
    justify-content:space-between;
}

header .nav .menu {
    display: flex; 
}

header .nav .menu li {
    list-style: none; 
    margin-left: 40px;
}

header .nav .menu li a{
   color: #B78D4A;
   font-weight:bold;
   text-decoration: none;
}

/******* ここからメインエリアのスタイル ********/
main {
    text-align:left;
}

h2 {
   font-family: "Montserrat", san-serifi;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
   color: #404040;
   text-decoration: none;
   padding-top: 100px;
}

h3{
   font-size: 2em;
   font-family: "Dancing Script", cursive;
   font-optical-sizing: auto;
   font-weight: 700;
   font-style: normal;
}

/******* ここからフッターのスタイル ********/
footer {
    background: #CCC; 
    padding: 1em;
    margin-top: 100px;
}

footer p {
    font-size: .8em;
    color: #fff;
    max-width: 800px;
    padding: 0;
    text-align:center;
    margin:0 auto;
    font-weight:bold;
}