/*==================================================================
# Base
==================================================================*/
body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

/*==================================================================
# Layout
==================================================================*/
.sect {
  margin-top: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sect {
    margin-top: 40px;
  }
}
.sect.sect--half {
  margin-top: 80px;
  padding-top: 0;
}
.sect.sect--bgc {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sect.sect--bgc {
    margin-top: 40px;
  }
}

.inner {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1040px;
}

.main {
  overflow: hidden;
}

/*==================================================================
# Modules
==================================================================*/
/* Block
------------------------------------------------------------------*/
/* Element
------------------------------------------------------------------*/
.btn {
  color: #333;
  line-height: 1;
  font-weight: 700;
  padding: 10px 30px;
  border: 2px solid currentColor;
  border-radius: 60px;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #fff;
}
.btn:hover {
  background: #9F764A;
  color: #fff;
}
.heading {
  text-align: center;
  font-size: 30px;
  padding-bottom: 15px;
  line-height: 1;
  position: relative;
  margin-bottom: 50px;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
.heading::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background-color: #f5810e;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.border-bottom-line {
  border-bottom: 1.5px solid #f5810e;
  padding-bottom: 5px;
}

/* Pagetop
------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  z-index: 20;
  bottom: 10px;
  right: 20px;
  width: 80px;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 60px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/*==================================================================
# Helper
==================================================================*/
@media screen and (min-width: 768px) {
  .md-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sm-hide {
    display: none !important;
  }
}

/*==================================================================
# Index
==================================================================*/
/* Main Visual
------------------------------------------------------------------*/
.mv {
  margin-top: 65px;
  padding-top: 85px;
}

.mv__inner {
  text-align: right;
  position: relative;
  max-width: 825px;
  margin-inline: auto;
}

.mv__img {
  display: inline-block;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 80%;
    padding-top: 80px;
  }
}

.mv_msg {
  position: absolute;
  top: 57%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 370px;
  text-align: left;
  font-family: "Kiwi Maru", serif;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .mv_msg {
    height: 240px;
    padding: 8px;
    left: 5%;
    top: 25%;
  }
}

.mv_msg-ttl {
  display: inline-block;
  margin-left: 10px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .mv_msg-ttl {
    font-size: 16px;
  }
}

.mv_msg-txt {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv_msg-txt {
    font-size: 14px;
  }
}

/* Concept
------------------------------------------------------------------*/
.concept__item + .concept__item {
  margin-top: 60px;
}

.concept-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8.3333333333%;
}
@media screen and (max-width: 767px) {
  .concept-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.concept-item.concept-item--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .concept-item.concept-item--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.concept-item__img {
  border-radius: 20px;
  overflow: hidden;
  max-width: 450px;
}
.concept-item__img img {
  width: 100%;
}

.concept-item__msg {
  width: 450px;
  max-width: 100%;
}

.concept-item__msg-ttl {
  font-size: 20px;
  font-weight: 700;
}

.concept-item__msg-txt {
  margin-top: 10px;
}

/* Products
------------------------------------------------------------------*/
.products {
  padding-top: 40px;
}

.products__wrap {
  background: url(../img/products-bread-rev.png) no-repeat left top/cover;
  padding-block: 120px;
  position: relative;
}
.products__wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.products__cont {
  position: relative;
  color: #fff;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  padding: 30px;
}
.products__cont::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(245, 129, 14, 0.5);
  border-radius: 20px;
  z-index: 2;
}

.products__cont-ttl {
  position: relative;
  font-size: 22px;
  z-index: 3;
}

.products__cont-txt {
  position: relative;
  margin-top: 25px;
  z-index: 3;
}

/* Menu
------------------------------------------------------------------*/
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  margin-inline: auto;
}
@media screen and (max-width: 990px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
.menu-item.menu-item--rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 990px) {
  .menu-item.menu-item--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu-item:hover .menu-item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.menu-item__img {
  overflow: hidden;
}
.menu-item__img img {
  width: 300px;
  max-width: 100%;
  height: 248px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 990px) {
  .menu-item__img img {
    width: 100%;
    height: auto;
  }
}

.menu-item__msg {
  width: 300px;
  max-width: 100%;
  height: 260px;
  padding: 20px;
  background-color: #eedcb3;
}
@media screen and (max-width: 990px) {
  .menu-item__msg {
    width: 100%;
    height: auto;
  }
}

.menu-item__msg-ttl {
  font-weight: 700;
  font-size: 18px;
  color: #9F764A;
  line-height: 1.2;
}
.menu-item__msg-ttl span {
  font-size: 14px;
}

.menu-item__msg-txt {
  margin-top: 5px;
}

.menu-item__msg-txt-sm {
  font-size: 12px;
}

.menu-item__btn {
  margin-top: 15px;
  text-align: center;
}

.menu__slide {
  margin-top: 50px;
  width: 1800px;
  height: 200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .menu__slide {
    width: 1200px;
    height: 100px;
  }
}

/* Review
------------------------------------------------------------------*/
.review {
  background: #eedcb3;
}

.review__inner {
  width: 886px;
  max-width: 100%;
}

.review__slide {
  width: 100%;
  height: 500px;
}

.review-item {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  padding: 40px;
}

.review-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.review-item__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.review-item__img img {
  width: 100%;
}

.review-item__meta-item {
  padding-left: 10px;
  position: relative;
  font-size: 18px;
}
.review-item__meta-item::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9F764A;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.review-item__body {
  margin-top: 35px;
}

.review-item__ttl {
  font-weight: 700;
  font-size: 18px;
}

.review-item__txt {
  margin-top: 10px;
}

/* FAQ
------------------------------------------------------------------*/
.faq__inner {
  max-width: 840px;
}

.faq__item + .faq__item {
  margin-top: 42px;
}

.faq-box {
  border: 3px solid #333;
  border-radius: 10px;
}

.faq-box__q {
  padding: 30px 75px 10px 20px;
  position: relative;
  text-align: left;
  display: block;
  width: 100%;
}

.faq-box__q-icon {
  display: block;
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 50%;
  background: #f5810e;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #333;
  position: absolute;
  top: -22px;
  left: 20px;
}

.faq-box__q-txt {
  position: relative;
  font-weight: 700;
  display: block;
  width: 100%;
}
.faq-box__q-txt::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 7.5px;
  top: 50%;
  left: calc(100% + 20px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.faq-box__q-txt.is-checked::after {
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
          clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.faq-box__a {
  padding: 10px 75px 10px 20px;
  display: none;
}

.faq-box__a-icon {
  display: block;
  text-align: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eedcb3;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #333;
}

.faq-box__a-txt {
  font-weight: 700;
  display: block;
  padding-top: 10px;
}

.faq__btn {
  text-align: center;
  margin-top: 30px;
}

/* News
------------------------------------------------------------------*/
.news__wrapper {
  background: #eedcb3;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.news__list {
  background-color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
}

.news__item + .news__item {
  border-top: 1px solid #9F764A;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
  padding-block: 20px;
}
@media screen and (max-width: 767px) {
  .news-card {
    -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;
    gap: 20px;
  }
}
.news-card:hover .news-card__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-card__img {
  border-radius: 10px;
  overflow: hidden;
}
.news-card__img img {
  width: 260px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.news-card__body {
  width: 610px;
  max-width: 100%;
}

.news-card__time {
  font-size: 14px;
  display: block;
}

.news-card__ttl {
  margin-top: 15px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
}

.news-card__txt {
  margin-top: 10px;
}

.news__btn {
  margin-top: 40px;
  text-align: center;
}

/* Store Info
------------------------------------------------------------------*/
.store-info__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .store-info__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .store-info__map {
    position: relative;
    width: 100%;
    padding-top: 100%;
  }
}
@media screen and (max-width: 767px) {
  .store-info__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.store-info__table {
  font-size: 18px;
}
.store-info__table tr {
  display: block;
  border-collapse: collapse;
  border-bottom: 0.5px solid #999;
}
.store-info__table tr th,
.store-info__table tr td {
  padding: 10px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.store-info__table tr th {
  width: 95px;
}
.store-info__table tr th {
  font-weight: 700;
}

.store-info__btn {
  margin-top: 30px;
  text-align: center;
}

/*==================================================================
# Reserve
==================================================================*/
.reserve {
  margin-top: 40px;
  background: #eedcb3;
}

.reserve__cont {
  padding: 60px 20px;
}

.reserve__form {
  margin-top: 30px;
}

.reserve__field-container {
  width: 100%;
  max-width: 612px;
  margin-left: auto;
  margin-right: auto;
}

.reserve__field-item + .reserve__field-item {
  margin-top: 30px;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.form-field__label {
  font-weight: 700;
}

.form-field__tag {
  padding: 6px 9px 5px 9px;
  background: #ee8013;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.98px;
}
.form-field__tag.form-field__tag--green {
  background: #43b549;
}

.form-field__body {
  margin-top: 15px;
}

.txt-field {
  width: 100%;
  padding: 15px 16px 14px 16px;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.txt-field:hover, .txt-field:focus {
  border-color: #fabe00;
  outline: none;
}

.email-field {
  width: 100%;
  padding: 15px 16px 14px 16px;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.email-field:hover, .email-field:focus {
  border-color: #fabe00;
  outline: none;
}

.radio-field__input {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.radio-field__input:checked + .radio-field__txt::after {
  opacity: 1;
}
.radio-field__input:focus + .radio-field__txt::before {
  border-color: #fabe00;
}

.radio-field__txt {
  padding-left: 28px;
  position: relative;
}
.radio-field__txt:hover::before {
  border-color: #fabe00;
}
.radio-field__txt::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.radio-field__txt::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5810e;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7px;
  opacity: 0;
}

.select-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 15px 16px 14px 16px;
  border: 3px solid #111;
  background: #fff;
  border-radius: 5px;
  background: url(../img/select-arrow.png) no-repeat right 15.15px center/9.451px auto;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.select-field:hover, .select-field:focus {
  border-color: #fabe00;
  outline: none;
}

.taxtarea-field {
  width: 100%;
  padding: 13px;
  border: 3px solid #111;
  background: #fff;
  border-radius: 5px;
  height: 180px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.taxtarea-field:hover, .taxtarea-field:focus {
  border-color: #fabe00;
  outline: none;
}

.reserve__privacy {
  margin-top: 30px;
  text-align: center;
}

.checkbox-field__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.checkbox-field__input:checked + .checkbox-field__txt::after {
  opacity: 1;
}
.checkbox-field__input:focus + .checkbox-field__txt::before {
  border-color: #fabe00;
}

.checkbox-field__txt {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.checkbox-field__txt:hover::before {
  border-color: #fabe00;
}
.checkbox-field__txt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #111;
  border-radius: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.checkbox-field__txt::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 17.5px;
  background: url(../img/check-icon.png) no-repeat center center/23px auto;
  bottom: 1.47px;
  left: -2px;
  opacity: 0;
}
.checkbox-field__txt a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.checkbox-field__txt a:hover {
  color: #fabe00;
}

.reserve__btn {
  margin-top: 30px;
  text-align: center;
}

/*==================================================================
# header
==================================================================*/
.header {
  padding-block: 10px;
  background: #eedcb3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a img {
  width: 180px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__nav-link {
  color: #333;
  padding-bottom: 5px;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
}
.header__nav-link:hover {
  border-bottom: 2px solid #f5810e;
}

.header__nav-btn {
  margin-left: 10px;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
}

.header__drawer-btn {
  width: 30px;
  height: 18px;
  position: relative;
}

.drawer-icon.is-checked {
  height: 30px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 15px;
}

.drawer-icon__bar {
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  left: 0;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

/* Drawer Menu
------------------------------------------------------------------*/
.drawer-menu {
  padding: 110px 15px;
  background: #9F764A;
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  z-index: 30;
}
.drawer-menu.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
}

.drawer-menu__item a {
  color: #fff;
  font-size: 18px;
}

/*==================================================================
# Footer
==================================================================*/
.footer {
  background: #9F764A;
  text-align: center;
  padding-block: 80px 40px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
}

.footer__logo a img {
  width: 200px;
}

.footer__nav {
  margin-top: 40px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 22px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    font-size: 14px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__nav-link {
  padding-bottom: 5px;
  font-family: "Kiwi Maru", serif;
}
.footer__nav-link:hover {
  border-bottom: 2px solid #f5810e;
}

.footer__sns-wrap {
  margin-top: 30px;
}

.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.footer__sns-item {
  width: 20px;
}

.sns-link img {
  width: 100%;
}

.footer__copyright {
  margin-top: 40px;
}
.footer__copyright small {
  color: #fff;
  font-family: "Kiwi Maru", serif;
}

/*==================================================================
# Swiper
==================================================================*/
/* Swiper Menu
------------------------------------------------------------------*/
.menu-swiper {
  width: 100%;
  height: 100%;
}

.menu-swiper__wrapper {
  -webkit-transition: linear;
  transition: linear;
}

.menu-swiper__slide img {
  width: 150px;
  display: block;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .menu-swiper__slide img {
    width: 100px;
  }
}

/* Swiper Review
------------------------------------------------------------------*/
.review-swiper {
  width: 100%;
  height: 100%;
}