@charset "UTF-8";
/*===================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効く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: top;
}

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

.inner {
  padding: 0 40px;
}
@media (min-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 (min-width: 768px) {
  .section-heading-main {
    font-size: 64px;
  }
}

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

/* 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 (min-width: 768px) {
  .header {
    padding: 16px;
  }
}

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

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

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

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

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

.menu-toggle-list {
  position: absolute;
  top: 100%;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.45);
  display: none;
}
@media (min-width: 768px) {
  .menu-toggle-list {
    left: auto;
    -webkit-transform: translate(-25%);
            transform: translate(-25%);
  }
}

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

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

@media (min-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;
  }
}

.about-img {
  width: 300px;
}

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

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

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

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

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

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

.menu-img {
  cursor: pointer;
}

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

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

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

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

/* modal */
.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}

.modal-layer {
  height: 100%;
  background-color: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

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

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

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

.form-input {
  border-radius: 4px;
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  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 (min-width: 768px) {
  .form-submit {
    margin-top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

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

.footer-text {
  font-size: 12px;
}
@media (min-width: 768px) {
  .footer-text {
    margin-top: 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;
}
@media (min-width: 768px) {
  .footer-nav-list {
    gap: 40px;
  }
}

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

.sns-img {
  width: 56px;
}

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

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

.return-button {
  color: #000;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}