@charset "UTF-8";
/**
  * @format
 */
/*******************************
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: 1080px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .u-container {
    max-width: 390px;
    padding: 80px 20px;
  }
}

.u-sectionTitle {
  color: #83776a;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .u-sectionTitle {
    margin-bottom: 40px;
  }
}

.u-sectionTitleEn {
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: bold;
}

.u-sectionTitleJp {
  display: block;
  padding-left: 45px;
  position: relative;
}

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

.u-readMoreBtn {
  display: block;
  width: 180px;
  padding: 10px 0;
  background-color: #fff;
  border: 1px solid #83776a;
  color: #83776a;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .u-readMoreBtn {
    margin: 0 auto;
  }
}

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

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

.u-readMoreBtn:hover::after {
  right: -45px;
}

.u-readMoreBtn--center {
  margin: 0 auto;
}

/*******************************
ヘッダー
*******************************/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 16px 20px;
  }
}

.header__logoLink {
  display: inline-block;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header__list {
    gap: 24px;
  }
}

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

.header__link:hover {
  opacity: 0.7;
}

/*******************************
ファーストビュー
*******************************/
.main {
  margin-top: 80px;
}

.firstView {
  padding: 300px 0;
  margin-left: 280px;
  background-image: url(../image/fv.png);
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media screen and (max-width: 768px) {
  .firstView {
    margin-left: 0;
  }
}

.firstView__title {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #83776a;
  bottom: 80px;
  left: -140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-weight: bold;
  color: #83776a;
}
@media screen and (max-width: 768px) {
  .firstView__title {
    width: 200px;
    height: 200px;
    top: 100px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 24px;
  }
}

.firstView__img {
  margin-left: auto;
}

/*******************************
コンセプト
*******************************/
.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@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 {
  background-color: #f9f5ed;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu__item {
  position: relative;
}

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

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

.menu__item:nth-of-type(2) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-of-type(2) {
    margin-top: 0;
  }
}

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

.menu__item:nth-of-type(3) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-of-type(3) {
    margin-top: 0;
  }
}

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

.menu__img {
  margin-bottom: 16px;
}

.menu__price {
  font-family: "Noto Serif JP";
  font-weight: bold;
  color: #83776a;
}

.menu__linkWrap {
  text-align: center;
}

/*******************************
固定背景
*******************************/
.fixedBg {
  height: 500px;
  background-image: url(../image/fixed_bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .fixedBg {
    height: 350px;
    background-attachment: scroll;
    background-size: cover;
  }
}

/*******************************
店舗情報
*******************************/
.shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

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

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

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

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

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

/*******************************
フッター
*******************************/
.footer {
  background: #f9f5ed;
}

.footer__inner {
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 40px 20px;
  }
}

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

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__list {
    gap: 16px;
  }
}

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

.footer__link:hover {
  opacity: 0.7;
}

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

/*******************************
固定予約ボタン
*******************************/
.fixedBtn {
  display: inline-block;
  position: fixed;
  bottom: 65px;
  right: 0;
  z-index: 90;
}

/* on-load slide-in */
.slide-in {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-animation: slideIn 0.6s ease-out 0.15s forwards;
          animation: slideIn 0.6s ease-out 0.15s forwards;
}

@-webkit-keyframes slideIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 動きを苦手な人の設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .slide-in {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* 初期は隠す */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.reveal.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ちょいディレイを付けたいとき（任意） */
.reveal[data-delay="1"] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}/*# sourceMappingURL=style.css.map */