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 {
   color:
   text-decoration: none;
   padding-top: 100px;
}
p.word::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../png/m151.png) no-repeat;
  background-size: contain;
  margin-right: 3px;
  transform: translateY(15px) translateX(90px);
}


/******* ここからフッターのスタイル ********/
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;
}