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

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

@media screen and (min-width: 768px) {
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1080px;
    padding: 0 40px;
  }
}

.header-nav {
  margin-top: 10px;
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header-nav-list {
    gap: 40px;
  }
}

.header-nav-link {
  color: #fff;
  cursor: pointer;
}
.header-nav-link:hover {
  opacity: 0.7;
}

.about {
  background-color: #f1eee4;
}

.inner {
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-top: 80px;
    max-width: 1040px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}

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

.section-heading-main {
  display: block;
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .section-heading-main {
    font-size: 64px;
  }
}

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

@media screen and (min-width: 768px) {
  .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .about-img {
    width: 300px;
  }
}
.about-img img {
  width: 100%;
  height: auto;
}

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

.about-text + .about-text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about-text {
    line-height: 2em;
  }
}

.menu {
  background-color: #f1eee4;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

.menu-item + .menu-item {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .menu-item + .menu-item {
    margin-top: 0;
  }
}

.menu-img img {
  outline: none;
}
.menu-text-contents {
  text-align: center;
}

.menu-name-main {
  margin-top: 10px;
  font-size: 18px;
}

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

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

.shop {
  background-image: url("../img/sp/bg-shop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .shop {
    background-image: url("../img/bg-shop.png");
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.shop-inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}

.shop-text-contents {
  text-align: center;
  margin-bottom: 40px;
}

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

.form {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.form-input {
  width: 100%;
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-submit {
  width: 120px;
  color: white;
  background-color: #a98c5f;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  display: block;
  margin: 10px auto 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-submit:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .form-submit {
    margin-top: 0;
  }
}

.footer {
  background-color: #3c301e;
  color: #fff;
  padding-top: 40px;
}

.footer-logo {
  text-align: center;
}

.footer-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-text {
    font-size: 12px;
    margin-top: 10px;
  }
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    gap: 40px;
  }
}

.footer-nav-item {
  text-align: center;
}

.sns-img {
  width: 50px;
  margin-bottom: 10px;
}
.sns-img img {
  width: 100%;
  height: auto;
}
.sns-img:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .sns-img {
    width: 60px;
  }
}

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

.footer-copy-wrapper {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 238, 228, 0.25);
}
@media screen and (min-width: 768px) {
  .footer-copy-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.modal {
  display: none; /* 最初は非表示 */
  position: fixed; /* 画面全体に固定 */
  z-index: 1; /* レイヤーを最上位に */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* スクロールバーを表示 */
  background-color: rgba(0, 0, 0, 0.4); /* 背景を半透明に */
}

.modal-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 12px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
}

#js-pagetop {
  opacity: 0; /* 透明度を0にする */
  visibility: hidden; /* クリックも無効にする */
  /* その他のスタイル */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* スムーズな表示/非表示のためのアニメーション */
}

#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}