@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 {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  background-color: #ffffff;
}
.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__logo {
  display: inline-block;
}
.header .header__inner .header__logo img {
  max-width: 100%;
  display: 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;
}
.main .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) {
  .main .firstview {
    margin-left: 0;
  }
}
.main .firstview .firstview__title {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #83776A;
  top: 219.5px;
  bottom: 80.5px;
  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) {
  .main .firstview .firstview__title {
    width: 200px;
    height: 200px;
    top: 100px;
    bottom: 300px;
    right: 95px;
    left: 95px;
    margin: 0 auto;
    font-size: 24px;
  }
}

.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-container .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) {
  .u-container .concept__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.u-container .concept__inner img {
  max-width: 100%;
  display: block;
}
.u-container .u-sectionTitle {
  color: #83776A;
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .u-container .u-sectionTitle {
    margin-bottom: 40px;
  }
}
.u-container .u-sectionTitle .u-sectionTitleEn {
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: bold;
}
.u-container .u-sectionTitle .u-sectionTitleja {
  display: block;
  position: relative;
  padding-left: 45px;
}
.u-container .u-sectionTitle .u-sectionTitleja::before {
  position: absolute;
  content: "";
  background-color: #83776A;
  width: 35px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.u-container .concept__text {
  margin-bottom: 40px;
}
.u-container .u-readMorebtn {
  display: block;
  width: 179px;
  padding: 10px 0;
  background-color: #ffffff;
  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-container .u-readMorebtn {
    margin: 0 auto;
  }
}
.u-container .u-readMorebtn:hover {
  background-color: #83776A;
  color: #ffffff;
}
.u-container .u-readMorebtn:hover::after {
  right: -45px;
}
.u-container .u-readMorebtn::after {
  position: absolute;
  content: "";
  background-color: #83776A;
  width: 70px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -35px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10;
}

.menu {
  background-color: #f9f5ed;
}
.menu .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 .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 .menu__list .menu__item {
  position: relative;
}
.menu .menu__list .menu__item:nth-child(1)::before {
  position: absolute;
  content: "01";
  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 .menu__list .menu__item:nth-child(2) {
  margin-top: 40px;
}
.menu .menu__list .menu__item:nth-child(2)::before {
  position: absolute;
  content: "02";
  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 .menu__list .menu__item:nth-child(3) {
  margin-top: 80px;
}
.menu .menu__list .menu__item:nth-child(3)::before {
  position: absolute;
  content: "03";
  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 .menu__list .menu__item img {
  max-width: 100%;
  display: block;
  margin-bottom: 16px;
}
.menu .menu__list .menu__item .menu__price {
  font-family: "Noto Serif JP";
  font-weight: bold;
  color: #83776A;
}

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

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

.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__inner .shop__desc {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.shop__inner .shop__desc .shop__title {
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: bold;
  color: #83776A;
}
.shop__inner .shop__desc .shop__dlInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}
.shop__inner .shop__desc .shop__dlInner .shop__dlTitle {
  width: 70px;
  font-weight: normal;
}
.shop__inner .shop__desc .shop__dlInner .shop__dlData {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.shop__inner .img {
  max-width: 100%;
  display: block;
}

.footer {
  background-color: #f9f5ed;
}
.footer .footer__inner {
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .footer__inner {
    padding: 40px 20px;
  }
}
.footer .footer__inner .footer__logoLink {
  display: inline-block;
  margin: 0 auto 16px;
}
.footer .footer__inner .footer__logoLink img {
  max-width: 100%;
  display: block;
}
.footer .footer__inner .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 .footer__inner .footer__list {
    gap: 16px;
  }
}
.footer .footer__inner .footer__list .footer__link {
  font-family: "Noto Serif JP";
  font-weight: bold;
  color: #83776A;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer .footer__inner .footer__copy {
  font-size: 14px;
  color: #83776A;
}

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