@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edge/Safariなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

/* 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;
}

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

/* ドロワーメニュー */
.header-nav-link {
  color: white;
  position: relative;
}

.script-menu {
  color: white;
  display: none;
  position: absolute;
  top: 65px;
  background-color: rgba(50, 49, 47, 0.364);
}

.script-menu-content {
  padding: 10px;
}

/* ファーストビュー */
.fv-picture img {
  width: 100%;
}

.script-scroll {
  position: relative;
}

/* スクロールTOPボタン */
.script-scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background-color: white;
  text-align: center;
  cursor: pointer;
}

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

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

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

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

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

.about-contents img {
  width: 100%;
}

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

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

/* 隣り合うpタグの間に16pxの隙間を設ける */
.about-text + .about-text {
  margin-top: 16px;
}

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

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

.menu-img img {
  width: 100%;
}

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

.menu-name-main {
  font-size: 18px;
  display: block;
  /* 蛍光マーカー表示 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), to(yellow));
  background: linear-gradient(transparent 20%, yellow);
}

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

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

/* モーダル */
.mordal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  /* 以下のposition設定で画面いっぱいに表示させることができる。 */
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.mordal-image {
  max-width: 370px;
  width: 100%;
  /* 以下のposition及びmargin設定で画面中央に表示させることができる。 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 40px;
  color: white;
  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;
}

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

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

.form {
  margin-top: 40px;
}

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

.shop-form-input::-webkit-input-placeholder {
  font-size: 24px;
}

.shop-form-input::-moz-placeholder {
  font-size: 24px;
}

.shop-form-input:-ms-input-placeholder {
  font-size: 24px;
}

.shop-form-input::-ms-input-placeholder {
  font-size: 24px;
}

.shop-form-input::placeholder {
  font-size: 24px;
}

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

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

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

.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: 52px;
}

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

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

.footer-copy-right {
  font-size: 12px;
}

/* タブレット. pcサイズの見た目の表示 */
@media screen and (min-width: 768px) {
  /* 画面幅が、最大幅〜768pxまでは、この中のスタイルが適用される。よって768pxより小さくなると、この中のスタイルは適用されなくなる。*/
  body {
    letter-spacing: 0.05em;
    color: #3c301e;
  }
  .header {
    padding: 16px;
  }
  .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-nav-list {
    gap: 40px;
  }
  .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 {
    padding: 60px 0 0 0;
  }
  .section-heading-main {
    font-size: 64px;
  }
  .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-contents img {
    width: 300px;
  }
  .about-text {
    font-size: 15px;
  }
  .about-text + .about-text {
    margin-top: 30px;
  }
  .about-text-contents {
    margin-top: 0;
  }
  .menu {
    padding: 0 0 100px 0;
  }
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .menu-item + .menu-item {
    margin-top: 0px;
  }
  .shop {
    background-image: url(../img/bg-shop.png);
    background-position: center center;
    background-size: cover;
    padding: 0px 0 60px 0;
  }
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .shop-form-submit:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .footer-text {
    margin-top: 12px;
  }
  .footer-nav-list {
    gap: 40px;
  }
  .sns-img {
    width: 55px;
  }
  .footer-copy-right {
    font-size: 13px;
  }
}