@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: "Noto Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #3c301e;
  background-color: #f1eee4;
}

img {
  width: 100%;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading--light {
  color: #ffffff;
}

.section-heading__main {
  font-family: "Josefin Sans", sans-serif;
  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;
}

.header {
  position: fixed; /* ヘッダーを上部に固定 */
  top: 0; /* ヘッダーを上部に固定 */
  left: 0; /* ヘッダーを上部に固定 */
  width: 100%;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
}
@media screen and (min-width: 768px) {
  .header {
    padding: 16px;
  }
}

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

.header__nav {
  margin-top: 10px;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .header__list {
    gap: 40px;
  }
}

.header__link {
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .header__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__link:hover {
    opacity: 0.7;
  }
}

.about {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 100px 0;
  }
}

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

@media screen and (min-width: 768px) {
  .about__img {
    width: 300px;
  }
}

.about__text-wrap {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about__text-wrap {
    margin-top: 0;
  }
}

.about__text {
  line-height: 2;
}
.about__text + .about__text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 15px;
  }
  .about__text + .about__text {
    margin-top: 30px;
  }
}

.menu {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .menu {
    padding: 0 0 100px;
  }
}

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

.menu__item + .menu__item {
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .menu__item + .menu__item {
    margin-top: 0;
  }
}

.menu__text-wrap {
  text-align: center;
  padding: 16px 10px;
}

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

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

.menu__text {
  color: #a98c5f;
  margin-top: 16px;
}

.shop {
  background-image: url("../img/sp/bg-shop.png");
  background-size: cover;
  background-position: center center;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .shop {
    background-image: url("../img/bg-shop.png");
    padding: 60px 0;
  }
}

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

.shop__text {
  color: #ffffff;
  text-align: center;
  line-height: 2;
}

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

.form__input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.7);
  font-family: "Josefin Sans", sans-serif;
}

.form__button {
  display: block;
  margin: 10px auto 0;
  width: 120px;
  padding: 12px 10px;
  border: none;
  border-radius: 4px;
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  background-color: #a98c5f;
}
@media screen and (min-width: 768px) {
  .form__button {
    margin-top: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .form__button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

.footer__logo {
  width: 200px;
  margin: 0 auto;
}

.footer__text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__text {
    margin-top: 12px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    gap: 40px;
  }
}

.footer__sns-img {
  width: 56px;
}

.footer__item-text {
  font-size: 12px;
  margin-top: 12px;
}

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

.footer__copyright {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}