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

/* ここから記述します。 */
.header-fix {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*レスポンシブ　ヘッダー
--------------------------------*/
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
  }
}
.header-nav-list {
  display: flex;
  gap: 40px;
  list-style-type: none;
}

.header-nav-link {
  text-decoration: none;
  font-family: serif;
  font-weight: bold;
  color: #83776a;
  transition: 0.2s;
}
.header-nav-link:hover {
  opacity: 0.8;
}

/*レスポンシブ　ヘッダー
--------------------------------*/
@media screen and (max-width: 768px) {
  .header-nav-list {
    gap: 24px;
  }
}
.main {
  margin-top: 80px;
}

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

.fv .fv-title {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: -140px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #83776a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: serif;
  font-size: 40px;
  color: #83776a;
}

/*レスポンシブ　メイン
--------------------------------*/
@media screen and (max-width: 768px) {
  .fv .fv-title{
    margin-left: 0;
  }
}


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

.concept-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

img {
  max-width: 100%;
}

/*レスポンシブ　メニュー
--------------------------------*/
@media screen and (max-width: 768px) {
  .concept-inner {
    flex-direction: column;
    gap: 30px;
  }
}

.section-title {
  color: #83776a;
  margin-bottom: 64px;
}
.section-title .section-title-En {
  font-family: serif;
  font-size: 32px;
  font-weight: bold;
}
.section-title .section-title-Jp {
  display: block;
  padding-left: 45px;
  font-size: 20px;
  font-weight: normal;
  position: relative;
}
.section-title .section-title-Jp::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  background-color: #83776a;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.concept-text {
  margin-bottom: 40px;
}

a {
  text-decoration: none;
}

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

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

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

.menu {
  background-color: #f9f5ed;
}

.menu-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  list-style-type: none;
}

/*レスポンシブ　メニューリスト
--------------------------------*/
@media screen and (max-width: 768px) {
  .menu-list {
  display: block;
  }
}

.menu-list-item {
  position: relative;
}

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

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

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

.menu-list-item::before {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: serif;
  font-size: 32px;
  font-weight: bold;
  color: #83776a;
  text-align: center;
  line-height: 60px;
}

.menu-img {
  margin-bottom: 16px;
}

h3.menu-title {
  margin: 0;
}

p.menu-price {
  margin: 0;
  font-family: serif;
  font-weight: bold;
  color: #83776a;
}

.menu-btn {
  display: flex;
  justify-content: center;
}

.bg-img-fixed {
  height: 500px;
  background-image: url(../image/fixed_bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.shop-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .shop-inner {
    flex-direction: column;
  }
}
.shop-inner-textBox {
  flex-grow: 1;
}

.shop-title {
  font-family: serif;
  font-size: 20px;
  font-weight: bold;
  color: #83776a;
}

.shop-dl-inner {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.shop-dl-title {
  width: 70px;
  font-weight: normal;
}

.footer {
  background-color: #f9f5ed;
}

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

.footer-logo-link {
  display: inline-block;
  margin: 0 auto 16px;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  list-style-type: none;
}

.footer-nav-link {
  font-family: serif;
  font-weight: bold;
  color: #83776a;
  transition: 0.2s;
}
.footer-nav-link:hover {
  opacity: 0.8;
}

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

.fixed-btn {
  display: inline-block;
  position: fixed;
  bottom: 65px;
  right: 0;
  z-index: 90;
}/*# sourceMappingURL=style.css.map */