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

/* ここから記述します。 */
/*******************************
変数の指定
*******************************/
/***header***/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
.header .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 .header__inner {
    padding: 16px 20px;
  }
}
.header .header__inner .header__logoLink {
  display: inline-block;
}
.header .header__inner .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header .header__inner .header__list {
    gap: 24px;
  }
}
.header .header__inner .header__list .header__link {
  font-family: "Noto Serif JP";
  font-weight: bold;
  color: #83776a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

/***concept***/
.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;
  }
}

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

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

.concept__text {
  margin-bottom: 40px;
}

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

/***menu***/
.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:nth-of-type(1)::before {
  content: "01";
}

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

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

.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__img {
  margin-bottom: 16px;
}

.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(3) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .menu__item:nth-of-type(3) {
    margin-top: 0;
  }
}

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

.u-readMoreBtn--center {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .u-readMoreBtn--center {
    margin: 0 auto;
  }
}

/***fixedBG***/
.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***/
.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***/
.footer {
  background: #fff;
}

.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__copy {
  font-size: 14px;
  color: #83776a;
}

.fixedBtn {
  display: inline-block;
  position: fixed;
  bottom: 65px;
  right: 0;
  z-index: 90;
}