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

/* ここから記述します。 *//*# sourceMappingURL=style.css.map */

/***共通パーツ部分***/

.section_container {
  max-width: 1080px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section_container {
    max-width: 390px;
    padding: 80px 20px;
  }
}

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

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

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

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

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

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

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

.readmorebtn:hover::after {
  right: -45px;
}

.readmorebtn--center {
  margin: 0 auto;
}


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

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

.header_logo {
  display: inline-block;
}

.header_list {
  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;
  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 {
  display: flex;
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #83776a;
  bottom: 80px;
  left: -140px;
  align-items: 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: flex;
  justify-content: space-between;
  gap: 60px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 40px;
  }
}

.concept_text {
  margin-bottom: 40px;
}


/*メニュー*/
.menu {
  background-color: #f9f5ed;
}

.menu_list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .menu_list {
    flex-direction: column;
    align-items: center;
  }
}

.menu_item {
  position: relative;
}

.menu_item::before {
  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;
  position: absolute;
  content: " ";
  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: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .shop_inner {           /*スペルミス  修正箇所*/
    flex-direction: column;
    gap: 40px;
  }
}

.shop_about {
  flex-grow: 1;
}

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

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

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

.shop_dldata {
  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_logo {
  display: inline-block;
  margin: 0 auto 16px;
}

.footer_list {
  display: flex;
  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;
  transition: 0.2s;
}

.footer_link:hover {
  opacity: 0.7;
}

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


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

