@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  border: 0;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------
  全体設定
---------------------------------- */
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: 12px;
}
@media (width >= 768px) {
  .header {
    padding: 16px;
  }
}

@media (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 {
  width: 200px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .header-logo {
    margin: 0;
  }
}

.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: 20px;
}
@media (width >= 768px) {
  .header-nav-list {
    gap: 40px;
  }
}

.header-nav-link {
  color: #fff;
}
@media (width >= 768px) {
  .header-nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .header-nav-link:hover {
    opacity: 0.7;
  }
}

.header-nav-item {
  position: relative;
}

/* ---------------------------------
  ドロワーメニュー
---------------------------------- */
.drawer {
  display: none; /* 初期状態は非表示 */
  width: 90px; /* メニューの幅 */
  height: auto; /* 高さは内容に合わせる */
  position: absolute; /* 親要素(#js-drawer)を基準に配置 */
  top: 30px; /* 親要素から下に30pxはなす */
  left: -24px; /* 親要素から左に24pxずらす */
  padding: 10px; /* 内側の余白 */
  background-color: rgba(0, 0, 0, 0.25); /* ドロワーメニューの背景色 */
  color: #fff; /* テキストの色 */
  font-size: 12px; /* テキストのサイズ */
  line-height: 3; /* 行の高さ */
  text-underline-offset: 4px; /* 下線とテキストの距離 */
}
@media (width >= 768px) {
  .drawer {
    top: 38px;
  }
}

/* ---------------------------------
  共通クラス
---------------------------------- */
.inner {
  padding: 0 40px;
}
@media (width >= 768px) {
  .inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }
}

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

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

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

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

/* ---------------------------------
  aboutセクション
---------------------------------- */
.about {
  padding: 40px 0;
  background-color: #f1eee4;
}
@media (width >= 768px) {
  .about {
    padding: 100px 0;
  }
}

@media (width >= 768px) {
  .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (width >= 768px) {
  .about-img {
    width: 300px;
  }
}

.about-text-contents {
  margin-top: 20px;
}
@media (width >= 768px) {
  .about-text-contents {
    margin-top: 0;
  }
}

.about-text {
  font-size: 14px;
  line-height: 2;
}
@media (width >= 768px) {
  .about-text {
    font-size: 15px;
  }
}

.about-text + .about-text {
  margin-top: 16px;
}
@media (width >= 768px) {
  .about-text + .about-text {
    margin-top: 30px;
  }
}

/* ---------------------------------
  menuセクション
---------------------------------- */
.menu {
  padding: 80px 0;
  background-color: #f1eee4;
}
@media (width >= 768px) {
  .menu {
    padding: 0 0 100px;
  }
}

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

.menu-item + .menu-item {
  margin-top: 62px;
}
@media (width >= 768px) {
  .menu-item + .menu-item {
    margin-top: 0;
  }
}

@media (width >= 768px) {
  .menu-img {
    cursor: pointer;
  }
}

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

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

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

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

/* ---------------------------------
  モーダルウィンドウ
---------------------------------- */
/* 全体のスタイル */
#js-modal {
  position: fixed; /*モーダルを画面全体に固定*/
  top: 0; /*画面の上端から０px*/
  left: 0; /*画面の左端から０px*/
  width: 100%; /*画面の横幅全体*/
  height: 100vh; /*画面の高さ全体*/
  background-color: rgba(0, 0, 0, 0.6); /*半透明の背景*/
  display: none; /*初期状態で非表示に*/
  z-index: 1000; /*他の要素より前に表示*/
}

/* モーダル内の画像のスタイル */
#js-modal-img {
  position: absolute; /*モーダル内で絶対位置を指定*/
  top: 0; /*上端からの距離*/
  bottom: 0; /*下端からの距離*/
  left: 0; /*左端からの距離*/
  right: 0; /*右端からの距離*/
  max-width: 45%; /*画面の最大幅を45%に制限*/
  margin: auto; /*上下左右の中央に配置*/
  display: block; /*ブロック要素とする(中央揃え)*/
}

/* ---------------------------------
  shopセクション
---------------------------------- */
.shop {
  background-image: url(../img/sp/bg-shop.png);
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
}
@media (width >= 768px) {
  .shop {
    background-image: url(../img/bg-shop.png);
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
  }
}

.shop-inner {
  padding: 0 20px;
}
@media (width >= 768px) {
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}

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

.form {
  margin-top: 40px;
}
@media (width >= 768px) {
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

.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;
}
@media (width >= 768px) {
  .form-submit {
    margin-top: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

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

.footer-text {
  font-size: 12px;
}
@media (width >= 768px) {
  .footer-text {
    margin-top: 12px;
  }
}

.footer-nav-list {
  margin-top: 40px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media (width >= 768px) {
  .footer-nav-list {
    gap: 40px;
  }
}

.sns-img {
  width: 56px;
}

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

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

.footer-copyright {
  font-size: 12px;
}
@media (width >= 768px) {
  .footer-copyright {
    font-size: 13px;
  }
}

/* ---------------------------------
  ページトップボタン
---------------------------------- */
.pagetop {
  height: 50px; /* ボタンの高さ */
  width: 50px; /* ボタンの幅 */
  position: fixed; /* 位置を固定する*/
  right: 30px; /* 画面の右端から30pxの距離 */
  bottom: 30px; /* 画面の下端から30pxの距離 */
  border: solid 2px #3c301e; /* 枠線 */
  border-radius: 50%; /* ボタンを丸くする */
  display: none; /* 通常は非表示にする */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* ボタン内のテキストが水平中央方向に配置*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* ボタン内のテキストが垂直中央方向に配置*/
  z-index: 2; /* 要素の重なり順で上に来るように*/
  cursor: pointer;
}

.pagetop > span {
  font-size: 12px;
  font-weight: bold;
}