@charset "utf-8";

ul,ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 2;
  background-color: #F8FAF8;
  letter-spacing: 1.5px;
}

img {
  max-width: 100%;
  object-fit: cover;
}



.button-icon {
  width: 32px;
  margin-right: 16px;
}

/* header */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 100px;
}

.header-logo {
  width: 250px;
}

.header-button {
  height: auto;
  color:#665035;
  border: 1px solid #665035;
  padding: 16px;
  display: flex;
  align-items: center;

  font-family: "Amiri", serif;
  transition: transform .4s;
  
}

.header-button:hover {
  transform: scale(1.1);
}



.nav-list li a {
  display: flex; 
  transition: transform .4s;

}

.nav-list li a:hover {
  transform: scale(1.1);
}





/* menuボタン */
  .togglemenu-area .toggle-menu-button {
    display: block;
    background-image: url(../images/common/icon-menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    position: sticky;
    top: 32px;
    margin-left: auto;
    margin-right: 32px;
    margin-top: 32px;
    z-index: 10;
  }

  .toggle-menu-button:hover{
    transform: scale(1.1);
    transition-duration: .4s;
  }


  .hidden-menu.is-show {
    display: block;
  }


  .hidden-menu {
    display: none;
    background-color: #E9DFD4;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 20;
  }

  .hidden-inner {
    display: flex;
    align-items: center;
  }
  .hidden-menu-img {
    width: 70%;
    height: 100vh;
  }
  .hidden-menu .text-area {
    padding-left: 5%;
    height: 100vh;
  }

  .hidden-menu .header-button {
    display: block;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    margin-top: 16px;
    height: 40px;

  }

  .hidden-menu .header-button .button-icon {
    width: 18px;
  }

  .hidden-menu .nav-list {
    padding-left: 0;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 8px 40px 8px 0;

  }
  .hidden-link {
    width: 100%;
    display: flex;
    
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    justify-content: start;

  }

  .header-logo img{
    width: 150px;
  }



  .hidden-menu .toggle-menu-button {
    display: block;
    background-image: url(../images/common/ic003.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 24px;
    right: 24px;
  }

/* footer */

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 160px;
  align-items: center;
}

.navigation-menu {
  font-family: "Amiri", serif;
  display: flex;
  color: #665035;
}

.footer-button {
  color:#665035;

}

.nav-list {
  padding-left: 40px;
}



.footer .nav-list li{
  margin: 16px 8px;
}


.footer-logo {
  width: 400px;
}

/* copyright */
.copyright {
  background: #31403E;
  padding: 8px 0;
  color: #fff;
  font-family: "Amiri", serif;
  text-align: center;
}

@media (max-width: 1100px){

    .hidden-menu-img {
    width: 50%;
  }
    .footer-inner {
    display: flex;
    flex-direction: column;


  }

  .footer-logo {
    width: 250px;
  }
}

@media (max-width: 800px) {
  .header-inner {
    height: 100px;
    padding: 0 40px;
  }


  .togglemenu-area .toggle-menu-button {
    top: 16px;
    margin-right: 16px;
    margin-top: 16px;
  }

  .hidden-menu-img {
    display: none;
  }

  .hidden-menu .text-area  {
    padding-left: 0;
    text-align: center;
  }

  .hidden-inner {
    justify-content: center;
  }
  .navigation-menu .nav-list{
    align-items: center;
    margin: 0 auto;
  }

  .navigation-menu .nav-list li {
    padding-top: 8px;
    padding-bottom:8px;
  }
}

@media (max-width: 450px) {
    /* ヘッダー */
  .header-inner {
    padding: 0 20px;
  }

  .header-button {
    font-size: 0.7rem;
  }

  .header-button p {
    display: none;
  }

  .button-icon {
    margin-right: 0;
  }


}