body {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #3c301e;
}
body.is-modal-open {
  overflow: hidden;
}

img {
  width: 100%;
}

.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-logo {
  width: 200px;
  margin: 0 auto;
}
.header-nav-list {
  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;
  gap: 22px;
  margin-top: 10px;
  color: #ffffff;
}
.header-nav-item {
  display: block;
}
.header-nav-link {
  all: unset;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}
.header-nav-link:hover {
  opacity: 0.7;
}

.drawer {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  line-height: 1.6;
  display: none;
  white-space: nowrap;
}
.drawer-list {
  color: #ffffff;
  font-size: 13px;
}
.drawer-list li {
  padding: 4px 0;
}

.has-drawer {
  position: relative;
}

.inner {
  padding: 0 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading-l {
  color: #fff;
}
.section-heading-main {
  display: block;
  font-size: 40px;
}
.section-heading-sub {
  display: block;
  font-size: 12px;
}

.fv-picture img {
  width: 100%;
}

.about {
  padding: 40px 0;
  background-color: #f1eee4;
}
.about-contents .about-text-contents {
  margin-top: 20px;
}
.about-text {
  font-size: 14px;
  line-height: 2;
}
.about-text + .about-text {
  margin-top: 16px;
}

.menu {
  background-color: #f1eee4;
  padding: 80px 0;
}
.menu-item + .menu-item {
  margin-top: 62px;
}
.menu-text-contents {
  text-align: center;
  padding: 16px 0;
}
.menu-name-main {
  font-size: 18px;
  display: block;
}
.menu-name-sub {
  font-size: 12px;
  display: block;
  color: #a98c5f;
  margin-top: 8px;
}
.menu-text {
  font-size: 14px;
  color: #a98c5f;
  margin-top: 16px;
}

.shop {
  background-image: url(../img/sp/bg-shop.png);
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
}
.shop-inner {
  padding: 0 20px;
}
.shop-text {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

.form {
  margin-top: 40px;
}
.form-input {
  border-radius: 4px;
  border: none;
  width: 100%;
  padding: 14px;
  background-color: rgba(255, 255, 255, 0.7);
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}
.form-submit {
  border-radius: 4px;
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  display: block;
  margin: 10px auto 0;
  width: 120px;
  padding: 12px 10px;
  color: #ffffff;
  background-color: #a98c5f;
}
.form-submit:hover {
  opacity: 0.7;
  cursor: pointer;
}

.footer {
  background-color: #3c301e;
  color: #ffffff;
  padding-top: 46px;
  text-align: center;
}
.footer-logo {
  width: 200px;
  margin: 0 auto;
}
.footer-text {
  font-size: 12px;
  margin-top: 12px;
}
.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;
  padding: 0 20px;
  gap: 24px;
}
.footer-nav-link-text {
  font-size: 12px;
  margin-top: 12px;
}
.footer-copy-wrapper {
  margin-top: 46px;
  border-top: 1px solid rgba(241, 238, 228, 0.25);
  padding: 12px;
}
.footer-copylight {
  font-size: 12px;
}

.to-top {
  z-index: 1000;
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.modal-content {
  position: relative;
  z-index: 1;
  width: min(900px, 90vw);
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 16px;
  }
  .header-inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-logo {
    margin: 0;
  }
  .header-nav-list {
    gap: 40px;
  }
  .inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }
  .section-heading-main {
    font-size: 64px;
  }
  .about {
    padding: 100px 0;
  }
  .about-contents {
    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;
    gap: 40px;
    align-items: center;
  }
  .about-img {
    width: 300px;
  }
  .about-text {
    font-size: 15px;
  }
  .about-text + .about-text {
    margin-top: 30px;
  }
  .about .about-text-contents {
    margin-top: 0;
  }
  .menu {
    padding: 0 0 100px;
  }
  .menu-item + .menu-item {
    margin-top: 0;
  }
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .shop {
    background-image: url(../img/bg-shop.png);
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
  }
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
  .form {
    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;
    gap: 20px;
  }
  .form-submit {
    margin-top: 0;
  }
  .footer-nav-list {
    gap: 40px;
  }
  .footer-copylight {
    font-size: 13px;
  }
}