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

/* ヘッダーセクション */
.header {
  position: fixed;
  padding: 12px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
}

.header-inner {
  max-width: 1080px;
  padding: 0 40px;
}

.header-logo {
  margin: 0 auto;
  width: 200px;
}

.header-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 5px;
}

.header-nav-item {
  color: #fff;
  position: relative;
}

.accordion__content {
  display: none;
  position: absolute;
  top: 100%;
  padding: 10px;
  background-color: rgba(20, 20, 20, 0.3);
  min-width: 100px;
  left: 50%; /* 真ん中基準 */
  transform: translateX(-50%);
  margin-top: 16px;
}

.accordion__content p {
  padding: 10px 0;
}

/* FVセクション */
.fv {
  width: 100%;
}

/* アバウトセクション */
.about {
  padding-top: 40px;
  background-color: #f1eee4;
}

.inner {
  padding: 0 40px;
}

.section-hedding {
}

.main-section-hedding {
  display: block;
  text-align: center;
  font-size: 40px;
}

.sub-section-hedding {
  display: block;
  text-align: center;
  font-size: 12px;
}

.about-contents {
  padding-top: 40px;
}

.about-img {
  width: 100%;
}

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

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

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

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

.menu-contents {
  margin-top: 40px;
}

.menu-list {
}

.menu-item + .menu-item {
  padding-top: 60px;
}

.menu-img {
  width: 100%;
}

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

.menu-name {
}

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

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

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

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

.section-hedding-l {
  color: #fff;
}

.section-hedding {
}

.shop-contents {
  margin-top: 30px;
}

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

.form {
}

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

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

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

.footer-logo {
}

.footer-img {
}

.footer-text {
  font-size: 12px;
}

.footer-nav-list {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  gap: 20px;
}

.sns-img {
  width: 56px;
}

.footer-nav-link-text {
  font-size: 12px;
  margin-top: 10px;
}

.top-button {
  margin: 20px;
  border-radius: 9999px;
  width: 50px;
  height: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.2s;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.top-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

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

.copylight {
  font-size: 12px;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.8); /* もっと小さく */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.modal {
  display: none; /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal.is-show {
  display: flex;
  animation: fadeInZoom 0.4s ease-out;
}

.modal-inner img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* タブレット、PCのサイズ */
@media screen and (min-width: 768px) {
  .header {
    padding: 16px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    min-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }
  .header-logo {
    margin: 0;
  }

  .header-nav {
    gap: 40px;
  }

  .header-nav-link:hover {
    opacity: 0.7;
  }

  .header-nav-link {
    transition: opacity 0.3s;
  }

  .inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }

  .section-heading-main {
    font-size: 64px;
  }

  .about {
    padding: 100px 0;
  }

  .about-contents {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .about-img {
    width: 300px;
  }

  .about-text-contents {
    margin-top: 0;
  }

  .about-text {
    font-size: 15px;
  }

  .menu {
    padding: 0 0 100px;
  }

  .menu-list {
    display: flex;
    gap: 20px;
  }

  .menu-item + .menu-item {
    padding-top: 0;
  }

  .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: flex;
    gap: 20px;
  }

  .form-submit {
    margin-top: 0;
    transition: opacity 0.3s;
  }

  .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }

  .footer-text {
    margin-top: 12px;
  }

  .footer-nav-list {
    gap: 40px;
  }

  .footer-copylight {
    font-size: 13px;
  }
}
