@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

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

img {
  width: 100%;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
  width: 100%;
  text-align: center;
  padding: 16px;
}

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

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

.header-nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

.header-nav-toggle {
  position: relative; /*②Menuを position: relative;にする*/
}

.header-nav-sub-list {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.2705882353);
  padding: 10px;
  white-space: nowrap;
  display: none;
}

.header-nav-link {
  color: #ffffff;
}

/* 個別メニュー */
.drawer-menu {
  display: none; /* 最初は非表示 */
  background: #f9f9f9;
  border-top: 2px solid #ccc;
  padding: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0; /* JSで位置を調整 */
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* 共通クラス */
.inner {
  padding: 0 40px;
}

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

.section-heading-l {
  color: #ffffff;
}

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

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

/* aboutセクション */
.about {
  padding: 40px 0;
  background-color: #f1eee4;
}

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

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

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

/* about-section */
.menu {
  background-color: #f1eee4;
  padding: 0 0 100px;
}

.menu-contents {
  text-align: center;
}

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

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

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

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

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

/*menuセクション*/
/* モーダルの背景 */
#modal {
  display: none; /* 初期は非表示 */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* モーダル画像 */
#modal-img {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* shopセクション */
.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;
  text-align: center;
  font-size: 14px;
  line-height: 2;
}

.form {
  margin-top: 40px;
}

.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;
}

.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: #fff;
  background-color: #a98c5f;
}

.form-input::-webkit-input-placeholder {
  color: rgba(255, 0, 0, 0.7882352941);
}

.form-input::-moz-placeholder {
  color: rgba(255, 0, 0, 0.7882352941);
}

.form-input:-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7882352941);
}

.form-input::-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7882352941);
}

.form-input::placeholder {
  color: rgba(255, 0, 0, 0.7882352941);
}

/* footerセクション */
.footer {
  background-color: #3c301e;
  text-align: center;
  font-size: 12px;
  padding-top: 46px;
  color: #ffffff;
}

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

.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;
}

.sns-img {
  width: 56px;
}

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

/* ボタンの基本スタイル */
#back-to-top {
  position: fixed;
  bottom: 20px; /* 画面下からの距離 */
  right: 20px; /* 画面右からの距離 */
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: black;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* opacity プロパティの変更に0.3秒のトランジションを適用 */
  opacity: 0; /* 初期状態では非表示 */
}

#back-to-top.show {
  opacity: 1; /* 表示状態ではopacityを1にする */
}

/* ホバーしたとき */
#back-to-top:hover {
  background-color: #555;
}

/* コピーライト */
.footer-copy-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px;
  margin-top: 46px;
}

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

/* ここからタブレット・PCサイズの表示 */
@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;
  }
  .header-logo {
    margin: 0;
  }
  /* マウスホバー */
  .header-nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header-nav-link:hover {
    opacity: 0.7;
  }
  /* コンテンツ幅の指定 */
  .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;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-text {
    font-size: 15px;
    margin-top: 0;
  }
  .about-img {
    width: 300px;
  }
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .menu-item + .menu-item {
    margin-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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .form-submit {
    margin-top: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .footer-text {
    margin-top: 12px;
  }
  .footer-nav-list {
    gap: 40px;
  }
  .footer-copyright {
    font-size: 13px;
  }
}
