@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;
  color: #3c301e;
  letter-spacing: 0.05em;
}

.pagetop-button {
  position: fixed;
  border-radius: 30px;
  height: 50px;
  width: 50px;
  border: solid 2px #fff;
  background-color: #fff;
  right: 20px;
  bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
}
.pagetop-button .pagetop-text {
  font-size: 12px;
  font-weight: bold;
}

/* 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 screen and (min-width: 768px) {
  .header {
    padding: 16px;
  }
}
@media screen and (min-width: 768px) {
  .header .header-inner {
    max-width: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 40px;
    margin: 0 auto;
  }
}
.header .header-inner .header-logo {
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header .header-inner .header-logo {
    margin: 0;
  }
}
.header .header-inner .header-nav {
  margin-top: 10px;
}
.header .header-inner .header-nav .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 screen and (min-width: 768px) {
  .header .header-inner .header-nav .header-nav-list {
    gap: 40px;
  }
}
.header .header-inner .header-nav .header-nav-list .header-nav-link {
  color: white;
}
@media screen and (min-width: 768px) {
  .header .header-inner .header-nav .header-nav-list .header-nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .header .header-inner .header-nav .header-nav-list .header-nav-link:hover {
    opacity: 0.7;
  }
}

#toggle {
  position: relative;
  cursor: pointer;
}

.drawer {
  position: absolute;
  overflow-y: auto;
  width: 90px;
  top: 37px;
  left: -20px;
  padding: 20px 10px 10px;
  background-color: rgba(23, 22, 20, 0.25);
  display: none;
}

.drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: white;
  padding: 5px 0;
}

/* 共通クラス */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading-l {
  color: white;
}

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

.inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1080px;
    margin: 0 auto;
  }
}

/* aboutセクション */
.about {
  background-color: #f1eee4;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 100px 0;
  }
}
@media screen and (min-width: 768px) {
  .about .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .about .about-contents .about-img {
    width: 300px;
  }
}
.about .about-contents .about-text-contents {
  margin-top: 0;
}
.about .about-contents .about-text-contents .about-text {
  line-height: 2;
  font-size: 15px;
}
.about .about-contents .about-text-contents .about-text + .about-text {
  margin: 30px 0 0;
}

/* menuセクション */
.menu {
  background-color: #f1eee4;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .menu {
    padding: 0 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .menu .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.menu .menu-list .menu-item + .menu-item {
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .menu .menu-list .menu-item + .menu-item {
    margin-top: 0;
  }
}
.menu .menu-list .menu-img {
  cursor: pointer;
}
.menu .menu-list .menu-text-contents {
  padding: 16px 10px;
  text-align: center;
}
.menu .menu-list .menu-text-contents .menu-name-main {
  display: block;
  font-size: 18px;
}
.menu .menu-list .menu-text-contents .menu-name-sub {
  display: block;
  font-size: 12px;
  color: #a98c5f;
  margin-top: 8px;
}
.menu .menu-list .menu-text-contents .menu-text {
  font-size: 14px;
  color: #a98c5f;
  margin-top: 16px;
}

.modal-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.7);
  z-index: 100;
  cursor: pointer;
}
.modal-window #modal-window-image {
  width: 500px;
  position: absolute;
  top: 20%;
  left: 30%;
}

.shop {
  background-image: url(../img/sp/bg-shop.png);
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .shop {
    background-image: url(../img/bg-shop.png);
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
  }
}
.shop .shop-inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .shop .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
.shop .shop-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 2;
}
.shop .form {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .shop .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.shop .form .form-input {
  width: 100%;
  border-radius: 4px;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 14px;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}
.shop .form .form-submit {
  display: block;
  padding: 12px 10px;
  border-radius: 4px;
  border: none;
  background-color: #a98c5f;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  margin: 10px auto 0;
  color: #fff;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .shop .form .form-submit {
    margin-top: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .shop .form .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

.footer {
  background-color: #3c301e;
  text-align: center;
  color: #fff;
  padding-top: 46px;
}
.footer .footer-logo {
  width: 200px;
  margin: 0 auto;
}
.footer .footer-text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer .footer-text {
    padding-top: 12px;
  }
}
.footer .footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 40px 20px 0;
}
@media screen and (min-width: 768px) {
  .footer .footer-nav-list {
    gap: 40px;
  }
}
.footer .footer-nav-list .sns-img {
  width: 56px;
}
.footer .footer-nav-list .footer-nav-link-text {
  font-size: 12px;
  margin: 12px 0 0;
}
.footer .footer-copy-wrapper {
  margin-top: 46px;
  padding: 12px;
  border-top: 1px solid rgba(241, 238, 228, 0.25);
}
.footer .footer-copy-wrapper .footer-copylight {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer .footer-copy-wrapper .footer-copylight {
    font-size: 13px;
  }
}