@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Hiragino Kaku Gothic ProN","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
  background-color: #F9F9F9;
}
h3 {
  font-family: 'Kiwi Maru', serif;
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
}
@media(max-width:600px) {
  h3 {
    font-size: 2.2rem;
    line-height: 3.0rem;
  }
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/* header */
.header {
  height: 70px;
  width: 100%;
  background-color: #F9F9F9;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px 2px rgba(0,0,0,0.1);
}
.header-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.header__logo {
  width: 188px;
  height: 55px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
@media(max-width:600px) {
  .header {
      height: 50px;
  }
  .header__logo {
      width: 115px;
      height: 33px;
  }
}
/* navigation */
@media(max-width:1020px) {
  #nav-drawer {
    padding-top: 10px;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 24px;
  }
  #nav-open span,#nav-open span::before,#nav-open span::after {
    position: absolute;
    height: 4px;
    width: 34px;
    background-color: #823E00;
    display: block;
    content: "";
  }
  #nav-open span::before {
    bottom: -10px;
  }
  #nav-open span::after {
    bottom: -20px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 9999;
    width: 60%;
    height: 100%;
    background-color: #F0EEE9;
    text-align: left;
    padding: 60px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0,0,0,0,25);
  }
  #nav-content ul li {
    margin-bottom: 40px;
  }
  #nav-content ul li::after {
    content: "";
    display: block;
    width: 40%;
    min-width: 120px;
    height: 2px;
    margin: 10px 0;
    background-size: 12px 2px;
    background-image: linear-gradient(to right, #3D6A3E 6px,transparent 6px);
    background-repeat: repeat-x;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 2.0rem;
    font-weight: 600;
    color: #823E00;
  }
  #nav-input:checked~#nav-close {
    display: block;
  }
  #nav-input:checked~#nav-content {
    transform: translateX(0%);
  }
}
@media (min-width:1020px) {
  .header__navigation ul {
    display: flex;
    justify-content: flex-end;
  }
  .header__navigation li {
    margin-left: 30px;
  }
  .header__navigation li a {
    text-decoration: none;
    color: #823E00;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
  }
}
@media(max-width:600px) {
  #nav-content {
      top: 50px;
  } 
  #nav-close {
      top: 50px;
  }
  #nav-open {
      height: 22px;
  }
  #nav-open span,#nav-open span::before,#nav-open span::after {
      height: 3px;
      width: 25px;
  }
  #nav-open span::before {
      bottom: -8px;
    }
    #nav-open span::after {
      bottom: -16px;
    }
}
/* footer */
.footer {
  max-height: 220px;
  margin: 0 auto;
  padding: 40px 0 20px;
  max-width: 1160px;
  font-size: 1.4rem;
  position: relative;
}
.footer__content {
  display: flex;
  margin-bottom: 100px;
}
.footer__logo {
  display: block;
  margin-right: auto;
  width: 188px;
  height: 55px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.sns-icon {
  margin-left: auto;
}
.sns-icon a:nth-of-type(n+2) {
  margin-left: 14px;
}
.footer__copyright {
  bottom: 30px;
  width: 100%;
  text-align: center;
  display: block;
}
@media(max-width:600px) {
  .footer__logo {
      width: 115px;
      height: 33px;
  }
  .sns-icon img {
      height: 25px;
  }
}