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

img {
  width: 100%;
}

ul li a:hover {
  opacity: 0.8;
}

ul li a img {
  width: 200px;
}

/*header*/
.header {
  padding: 12px;
  top: 0;
  left: 0;
  text-align: center;
  position: fixed;
  border-bottom: 1px solid rgba(241, 238, 228, 0.25);
  width: 100%;
}

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

.hedear-nav {
  margin-top: 10px;
}

.hedear-nav-list {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
  color: #fff;
}

.header-nav-link {
  letter-spacing: 1px;
  position: relative;
}

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

.drawer {
  display: none;
  position: absolute;
  top: 100%;
  font-size: 10px;
  color: #fff;
  background-color: rgba(48, 48, 48, 0.25);
  padding: 15px 10px 10px 10px;
  width: 60px;
  line-height: 20px;
  text-align: center;
}

/* 共通クラス */
.inner {
  padding: 0 40px;
  background-color: #f1eee4;
}

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

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

/* FV */
.fv-picture img {
  width: 100%;
}

/* aboutクラス */
.about {
  padding: 40px 0;
  background-color: #f1eee4;
}

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

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

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

.about-text {
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

/* menuクラス */
.menu {
  padding: 80px 0;
  background-color: #f1eee4;
}

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

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

.menu-name {
  text-align: center;
}

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

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

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.bigimg {
  position: absolute;
  width: 80%;
  max-width: 800px;
  top: 80px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
}

.close-btn {
  color: #fff;
  font-size: 40px;
  position: absolute;
  right: 20px;
  top: 0;
}

.close-btn a {
  color: #fff;
  text-decoration: none;
}

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

.shop-inner {
  padding: 0 20px;
}

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

.form {
  margin-top: 40px;
}

.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 {
  display: block;
  border-radius: 4px;
  border: none;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  background-color: #a98c5f;
  color: #fff;
  padding: 12px 10px;
  display: block;
  margin: 10px auto 0;
  width: 120px;
}

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

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

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

.footer-nav-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav-link-text {
  font-size: 12px;
  color: #fff;
  margin: 12px 0 0;
}

.sns-img {
  width: 56px;
}

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

.footer-copylight {
  color: #fff;
  font-size: 12px;
}

.button {
  /* padding: 0;
    border: 0; */
  position: fixed;
  right: 50px;
  bottom: 40px;
  /* background-color: transparent; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 1000;
}

/* .top-img {
    width: 50px;

  } */
/* タブレット、PCサイズの表示 */
@media screen and (min-width: 768px) {
  .body {
    letter-spacing: 0.05em;
  }
  .header {
    background-image: url("img\fv.png");
    background-size: cover;
    height: 100hv;
  }
  .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 {
    margin: 0;
  }
  .header-nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header-nav-link:hover {
    opacity: 0.7;
  }
  .header-nav-item {
    position: relative;
  }
  .inner {
    max-width: 1080px;
    padding: 0 40px;
    margin: 0 auto;
  }
  .hedear-nav-list {
    gap: 40px;
  }
  .drawer {
    position: absolute;
    top: 100%;
  }
  .about {
    padding: 100px 0;
  }
  .section-heading-main {
    font-size: 64px;
  }
  .section-heading-sub {
    font-size: 12px;
  }
  .about-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-text-contents {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    color: #3c301e;
  }
  .about-text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .about-text + .about-text {
    margin-top: 30px;
  }
  .about-img {
    width: 300px;
  }
  .menu {
    padding: 0 0 80px;
  }
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .menu-item + .menu-item {
    margin: 0;
  }
  .shop {
    background-image: url(../img/bg-shop.png);
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
  }
  .shop-inner {
    max-width: 600px;
    margin: 0 auto;
  }
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .form-submit {
    margin: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .form-submit:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .footer-text {
    margin-top: 12px;
  }
  .footer-nav-list {
    gap: 45px;
  }
  .footer-copylight {
    font-size: 14px;
  }
}
.parennt {
  width: 300px;
  height: 300px;
  background-color: #ccc;
  position: relative;
}

.box {
  width: 100px;
  height: 100px;
}

.box01 {
  background: blue;
}

.box02 {
  background: red;
  position: absolute;
  bottom: 10px;
  right: 10px;
  /* top: ; */
  /* left: ; */
}

.box03 {
  background: green;
}