@charset "UTF-8";
body {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
}
@media (width<768px) {
  .header {
    margin: 0 auto;
    width: 100%;
    max-width: 768px;
    text-align: center;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width<768px) {
  .header-nav {
    display: block;
  }
}
.header-nav .header-nav-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (width<768px) {
  .header-nav .header-nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.header-nav-link {
  color: #ffffff;
}
.header-nav-link:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.fv-img {
  width: 100%;
}

.fv-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width<768px) {
  .fv-img img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 768px;
    width: 100%;
  }
}

.js-top-content {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.js-top-content.show {
  opacity: 1;
  pointer-events: auto;
}

.js-top {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  color: #3c301e;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.about {
  background-color: #f1eee4;
  color: #3c301e;
  padding: 100px 0;
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width<768px) {
  .inner {
    padding: 40px 40px 0 40px;
  }
}

.section-heading {
  text-align: center;
}
.section-heading h2 {
  font-size: 64px;
}
@media (width<768px) {
  .section-heading h2 {
    font-size: 40px;
  }
}
.section-heading p {
  font-size: 12px;
}

.about-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
@media (width<768px) {
  .about-contents {
    display: block;
  }
}
.about-contents img {
  width: 300px;
}
@media (width<768px) {
  .about-contents img {
    width: 100%;
    margin: 0 auto;
  }
}

.about-text-contents {
  width: 100%;
  margin-left: 40px;
}
@media (width<768px) {
  .about-text-contents {
    margin: 20px 0 0 0;
  }
}
.about-text-contents p {
  text-align: left;
  line-height: 2;
  font-size: 15px;
}
.about-text-contents p::after {
  margin-top: 30px;
}

.menu {
  background-color: #f1eee4;
  color: #3c301e;
  padding-bottom: 100px;
  margin: 0;
}

.menu-contents {
  padding-top: 40px;
}
.menu-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (width<768px) {
  .menu-contents ul {
    display: block;
  }
}
@media (width<768px) {
  .menu-contents li {
    padding-bottom: 70px;
  }
}
@media (width<768px) {
  .menu-contents li img {
    width: 100%;
  }
}

.menu-content {
  padding: 16px 10px;
}
.menu-content h3 {
  font-size: 18px;
}

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

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

/* Menuトグル */
.js-toggle-menu {
  position: relative;
}

.js-toggle {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100px;
  position: absolute;
  display: none;
  top: 100%;
  left: -70%;
}
.js-toggle ul {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.js-toggle ul li {
  margin-bottom: 10px;
}

/* モーダル */
body.is-fixed {
  overflow: hidden;
}

.js-modal {
  display: none;
}

.js-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.js-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}

.js-modal-img {
  max-width: 90vw;
  max-height: 90vh;
}

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

.shop-inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading-l {
  text-align: center;
  color: #fff;
}
.section-heading-l h2 {
  font-size: 40px;
}

.shop-text {
  font-size: 14px;
  line-height: 2;
  margin-top: 40px;
}

.contact {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width<768px) {
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.send {
  border-radius: 4px;
  background-color: #a98c5f;
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  width: 120px;
  padding: 12px 10px;
  margin-left: 20px;
  color: #ffffff;
}
.send:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (width<768px) {
  .send {
    margin-top: 10px;
  }
}

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

.footer-title-sub {
  font-size: 12px;
  margin-top: 12px;
}

.sns-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
}

.icon-img {
  width: 56px;
}

.icon-contents {
  font-size: 12px;
  padding-top: 12px;
}

.copyright-wrapper {
  padding: 12px;
  font-size: 100%;
}