@charset "UTF-8";
/*******************************
Webサイト全体の指定
*******************************/
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.5;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

/* ここから記述します。 */
/*******************************
変数の指定
*******************************/
/*******************************
共通パーツの指定
*******************************/
.u-container {
  max-width: 1000px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .u-container {
    max-width: 390px;
    padding: 80px 30px;
  }
}

.u-title {
  color: #83776a;
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto Serif JP";
}

.u-subtitle {
  color: #83776a;
  padding-left: 45px;
  position: relative;
}

.u-subtitle::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  background-color: #83776a;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.u-titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 64px;
}

.u-button {
  display: block;
  border: 1px solid #83776a;
  background-color: #fff;
  color: #83776a;
  padding: 10px 0;
  width: 180px;
  text-align: center;
  position: relative;
}

.u-button:hover {
  background-color: #83776a;
  color: #fff;
}

.u-button::after {
  background-color: #83776a;
  position: absolute;
  content: "";
  width: 70px;
  height: 1px;
  margin: auto;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: -35px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.u-button:hover::after {
  right: -45px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 768px) {
  .u-button {
    margin: 0 auto;
  }
}
.header {
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  margin: 0 auto;
  top: 0;
}

.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;
  margin: 0 auto;
  padding: 16px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header__link {
  color: #83776a;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-family: "Noto Serif JP";
}

.header__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px 20px;
  }
}
/*
firstview
 */
.main {
  margin-top: 80px;
}

.firstview {
  background-image: url(../image/fv.png);
  margin-left: 280px;
  background-size: cover;
  padding: 300px 0;
  position: relative;
  background-position: bottom;
}

.firstview__title {
  font-size: 40px;
  font-weight: bold;
  width: 300px;
  height: 300px;
  border: 1px solid #83776a;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  color: #83776a;
  bottom: 80px;
  left: -140px;
  font-family: "Noto Serif JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .firstview {
    margin-left: 0;
  }
  .firstview__title {
    width: 200px;
    height: 200px;
    font-size: 24px;
    top: 100px;
    left: 0;
    right: 0;
  }
}
/* concept */
.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .concept__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.concept__text {
  margin-bottom: 40px;
}

/* menu */
.menu {
  background-color: #f9f5ed;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.menu__item:nth-child(2) {
  margin-top: 40px;
}

.menu__item:nth-child(3) {
  margin-top: 80px;
}

.menu__price {
  color: #83776a;
}

.menu-button {
  margin: 0 auto;
}

.menu__img {
  margin-bottom: 16px;
}

.menu__item {
  position: relative;
}

.menu__item::before {
  position: absolute;
  width: 60px;
  height: 60px;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  color: #83776a;
  font-size: 32px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: bold;
}

.menu__item:nth-child(1)::before {
  content: "01";
}

.menu__item:nth-child(2)::before {
  content: "02";
}

.menu__item:nth-child(3)::before {
  content: "03";
}

@media screen and (max-width: 768px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
/* fixedBg  */
.fixedBg {
  background-image: url(../image/fixed_bg.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
}

@media screen and (max-width: 768px) {
  .fixedBg {
    background-attachment: scroll;
    height: 350px;
  }
}
/* shop */
.shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.shop__title {
  color: #83776a;
  font-weight: bold;
  font-size: 20px;
  font-family: "Noto Serif JP";
}

.shop__dlinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  gap: 24px;
  padding: 16px 0;
}

.shop__dltitle {
  width: 70px;
  font-weight: normal;
}

.img {
  display: block;
}

.shop__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.dldate {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* footer */
.footer {
  background-color: #f9f5ed;
}

.footer__inner {
  padding: 40px;
  text-align: center;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  font-family: "Noto Serif JP";
  margin-bottom: 24px;
  font-weight: bold;
  color: #83776a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__logo {
  margin: 0 auto 16px;
  display: inline-block;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copy {
  color: #83776a;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer__list {
    gap: 16 px;
  }
}
/* reserve */
.reserve {
  display: inline-block;
  position: fixed;
  bottom: 65px;
  right: 0;
  z-index: 90;
}