@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
  width: 100%;
  text-align: center;
  padding: 12px;
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading-main {
  display: block;
  font-size: 40px;
}

.section-heading-sub {
  display: block;
  font-size: 12px;
}

.about {
  padding: 40px 0;
  background-color: #f1eee4;
}

.inner {
  padding: 0 40px;
}

.about-text-contents {
  margin-top: 20px;
}

.about-text + .about-text {
  margin-top: 16px;
}

.about-text {
  font-size: 14px;
  line-height: 2;
}

.menu {
  background-color: #f1eee4;
  padding: 80px 0;
}

.menu-item + .menu-item {
  margin-top: 62px;
}

.menu-text-contents {
  text-align: center;
  padding: 16px 10px;
}

.menu-name-main {
  display: block;
  font-size: 18px;
}

.menu-name-sub {
  display: block;
  font-size: 12px;
  color: #a98c5f;
  margin-top: 8px;
}

.menu-text {
  font-size: 14px;
  color: #a98c5f;
  margin-top: 16px;
}

.shop {
  background-image: url(../img/bg-shop.png);
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.shop-inner {
  color: #fff;
  margin: 0 20px;
}

.shop-text {
  text-align: center;
  font-size: 14px;
  line-height: 2;
}

.form {
  margin-top: 40px;
}

.form-submit {
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  display: block;
  width: 120px;
  padding: 12px 10px;
  color: #fff;
  background-color: #a98c5f;
}

.form-input {
  width: 100%;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  padding: 14px;
}

.footer {
  background-color: #3c301e;
  text-align: center;
  padding-top: 46px;
  color: #fff;
}

.footer-nav-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 0 20px;
}
.footer-nav-list .sns-img {
  width: 56px;
}
.footer-nav-list .footer-nav-link-text {
  font-size: 12px;
  margin-top: 12px;
}

.footer-copy-wrapper {
  border-top: 1px solid rgba(241, 238, 228, 0.25);
  padding: 12px;
  margin-top: 46px;
}

.header-nav-link1 {
  cursor: pointer;
  display: inline-block;
}

.drawer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease; /* 時間指定不要ならこの行削除OK */
  background: black;
}

/* 開いたとき */
.drawer.open {
  max-height: 300px;
}

.drawer ul {
  margin: 0;
  padding: 10px;
  list-style: none;
}

.drawer li {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 200, 200, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

#modal.active {
  opacity: 1;
  visibility: visible;
}

#modal img {
  max-width: 90%;
  max-height: 90%;
}

@media screen and (min-width: 768px) {
  .header-inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-heading-main {
    font-size: 64px;
  }
  .inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }
  .about-img {
    width: 300px;
  }
  .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-text {
    font-size: 15px;
  }
  .about-text + .about-text {
    margin-top: 30px;
  }
  .about-img {
    width: 300px;
  }
  .about-text-contents {
    margin-top: 0;
  }
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .menu-item + .menu-item {
    margin-top: 0;
  }
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .form-submit {
    margin-top: 0;
  }
}