@charset "UTF-8";

header{
  background-color: rgba(224, 197, 163, 0.7);
  color: #40220f;
  font-family: "Noto Serif JP", serif;
  position:absolute;
  width:100%;
  top:0;
  left:0;
  z-index:10;
}
.header_inner{
  max-width:1100px;
  margin:auto;
  padding:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.header_inner img{
  width: 200px;
  height: auto;
}



.nav_list a{
  font-size:1.4rem;
}

.nav_list li:last-child a{
  border:1px solid #40220f;
  padding:6px 18px;
  border-radius: 1%;
}
.nav_list a:hover{
  border-bottom: #40220f 1px solid;
}

.nav_list li:last-child a:hover{
  background-color: rgba(64, 34, 15, 0.7);
  color:#fff;

}

/* 共通 */
.header_inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ハンバーガー */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
   z-index:1001;
}

.hamburger span{
  width:25px;
  height:2px;
  background:#000;
  display:block;
  transition:.3s;
}

/* ナビ */
.nav_list{
  display:flex;
  gap:15px;
  list-style:none;
}






footer{
  background-color: #e4ccaf;
  margin-top: 100px;
  padding: 30px 0 10px;
  text-align: center;
  border-top: 1px solid #e1e1e1;
  font-family: "Noto Serif JP", serif;
}

.footer_inner img{
  width: 200px;
  margin: 0 auto 8px;
}
.footer_inner ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}
.footer_inner ul img{
  width:30px;
}

.footer_menu{
  font-size: 14px;
}
/*基本いらないSNS関係入れた場合考えなくても機能する
.footer_menu li{
  display: inline-block;
}
*/
.copyright{
  font-size:1.0rem;
  color:#40220f;
}

.footer_menu a:hover{
  opacity: 0.7;
}

/*表示について*/

/* 初期状態（隠す） */
.fade-in{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 1.4s ease, transform 1.8s ease;
}

/* 表示状態 */
.fade-in.show{
  opacity:1;
  transform:translateY(0);
}







/*今回700で*/
@media screen and (max-width: 700px) {
  body{
    overflow-x:hidden;
  }
  header{
    position: fixed;
  }

 .hamburger{
    display:flex;
  }

  .nav{
    position:fixed;
    top:65px;
    right:-100%;
    width:100%;
    background:rgba(239, 239, 234, 0.9);
    transition:0.4s;
  }

  nav.active{
    right:0;
  }

  .nav_list{
    flex-direction:column;
    padding:30px 20px;
    gap:25px;
    text-align: center;
  }


/* ☰ → × */

  .hamburger.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }

  .nav_list li:last-child a{
    border:none;
    padding:6px 40px;
    color: #fff;
    background-color: #40220f;
    border-radius: 15px;
  }


footer{
  margin-top: 50px;
}

.footer_inner ul{
  gap: 20px;
  margin: 0 2% 20px
}

}



  
