@charset "UTF-8";
/*-----------------------------------------------
mixins
------------------------------------------------*/
/*-----------------------------------------------
# colors
------------------------------------------------*/
/*-----------------------------------------------
# fonts
------------------------------------------------*/
/*-----------------------------------------------
# width
------------------------------------------------*/
/*-----------------------------------------------
# body
------------------------------------------------*/
body {
  font-size: 18px;
  line-height: 1.6;
  color: #543A14;
  font-family: "Zen Old Mincho", serif;
  background: #FFF0DC;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 240, 220, 0.8117647059)), to(rgba(255, 240, 220, 0.8117647059))), url(/img/kiwihug-cqhXfrRHCPo-unsplash.jpg);
  background-image: linear-gradient(rgba(255, 240, 220, 0.8117647059), rgba(255, 240, 220, 0.8117647059)), url(/img/kiwihug-cqhXfrRHCPo-unsplash.jpg);
  background-repeat: repeat;
}
@media screen and (max-width:999px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

@media screen and (max-width:999px) {
  .inner {
    padding: 0 20px;
  }
}

/*-----------------------------------------------
# common   -    全体に共通するスタイル
------------------------------------------------*/
.inner {
  padding-inline: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width:999px) {
  .section-title {
    font-size: 35px;
  }
}

.section-subtitle {
  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;
  width: 100%;
  gap: 20px; /* テキストとの間隔 */
  font-size: 25px;
  position: relative;
}
@media screen and (max-width:999px) {
  .section-subtitle {
    font-size: 20px;
  }
}
.section-subtitle::before, .section-subtitle::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 残りの幅を自動で埋める */
  height: 1px;
  background-color: #543A14;
  opacity: 0.5;
  position: relative;
  top: 6px;
}
.common-btn {
  font-weight: 400;
  display: inline-block;
  border-radius: 20px;
  border: solid 2px #543A14;
  padding: 4px 22px 6px;
  color: #543A14;
  margin-left: 4px;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.common-btn:hover {
  background: #fff;
  color: #543A14;
}
@media screen and (min-width:1000px) {
  .common-btn {
    font-size: 14px;
  }
}

@media screen and (max-width:999px) {
  .pc-new-line {
    display: none;
  }
}

@media screen and (min-width:1000px) {
  .sp-new-line {
    display: none;
  }
}

.section-top {
  text-align: center;
}

.section-title-img {
  padding-bottom: 8px;
}
@media screen and (max-width:999px) {
  .section-title-img {
    padding-bottom: 6px;
  }
}
.section-title-img img {
  width: 48px;
}
@media screen and (max-width:999px) {
  .section-title-img img {
    width: 38px;
  }
}

/*-----------------------------------------------
# header
------------------------------------------------*/
.header {
  height: 60px;
  background: transparent;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  -webkit-transition: background-color 0.4s linear, -webkit-box-shadow 0.4s linear;
  transition: background-color 0.4s linear, -webkit-box-shadow 0.4s linear;
  transition: background-color 0.4s linear, box-shadow 0.4s linear;
  transition: background-color 0.4s linear, box-shadow 0.4s linear, -webkit-box-shadow 0.4s linear;
}

.header.scrolled {
  background-color: rgba(84, 58, 20, 0.9); /* ← スクロール後の色 */
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
}

.header-logo {
  font-family: "Courgette", serif;
}
.header-logo a {
  color: #fff;
  font-size: 18px;
}
.header-logo a span {
  font-size: 40px;
  padding-right: 20px;
}

.header-nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:999px) {
  .header-nav {
    display: none;
  }
}

.header-link {
  color: #fff;
  position: relative;
}
.header-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header-btn {
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  color: #fff;
  border: #fff solid 2px;
}
.drawer-icon {
  display: none;
}
@media screen and (max-width:999px) {
  .drawer-icon {
    margin-left: auto;
    display: block;
    width: 30px;
    height: 22px;
    background-color: transparent;
    z-index: 51;
    position: relative;
    -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;
  }
  .drawer-icon.is-checked .drawer-icon-ber:nth-child(1) {
    top: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon-ber:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon-ber:nth-child(3) {
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.drawer-icon-ber {
  position: absolute;
  content: "";
  height: 2px;
  left: 0;
  width: 30px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon-ber:nth-child(1) {
  top: 0px;
}
.drawer-icon-ber:nth-child(2) {
  top: 10px;
}
.drawer-icon-ber:nth-child(3) {
  top: 20px;
}

.drawer-content {
  background: rgba(84, 58, 20, 0.9);
  width: 100%;
  height: 100%;
  padding-top: 60px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 101;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 30px;
  font-size: 25px;
}

.drawer-content-item {
  color: #fff;
}

.drawer-btn {
  color: #fff;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.drawer-btn a {
  color: #3b3737;
  padding: 6px 40px;
  border-radius: 30px;
  background: #fff;
}

/*-----------------------------------------------
# fv
------------------------------------------------*/
.fv {
  position: relative;
  height: 100%;
}

.fv-inner {
  margin-left: auto;
  margin-right: auto;
}
.fv-texts {
  margin-left: auto;
  margin-right: auto;
  margin-top: 125px;
  z-index: 100;
  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:999px) {
  .fv-texts {
    min-width: calc(100% - 30px);
    text-align: center;
    top: 50%;
    left: 50%;
  }
}

.fv-main-title {
  font-size: 95px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-family: "Yuji Mai", serif;
}
@media screen and (max-width:999px) {
  .fv-main-title {
    font-size: 60px;
  }
}

.fv-subtitle {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media screen and (max-width:999px) {
  .fv-subtitle {
    font-size: 16px;
    text-align: center;
  }
}

.fv-btn {
  font-size: 20px;
  padding: 8px 35px;
  text-align: left;
  border-radius: 30px;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
@media screen and (max-width:999px) {
  .fv-btn {
    font-size: 14px;
    padding: 4px 20px;
    text-align: left;
    border-radius: 20px;
  }
}

.fade-bg {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  /* 背景画像暗くする */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.fade-bg__inner {
  position: relative;
  z-index: -100;
}

.fade-bg__inner div {
  opacity: 0;
  -webkit-transition: 4s;
  transition: 4s;
}

.fade-bg__inner div.show-img {
  opacity: 1;
}

.fade-bg__inner .bg-img {
  position: absolute;
  top: 50vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-height: initial;
  max-width: initial;
  min-height: 100vh;
  min-width: 100%;
}

/*-----------------------------------------------
# concept
------------------------------------------------*/
.concept {
  margin-top: 150px;
  margin-bottom: 80px;
}
@media screen and (max-width:999px) {
  .concept {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}

.concept-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 65px;
  padding-bottom: 40px;
}
@media screen and (max-width:999px) {
  .concept-content {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.concept-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.concept-img img {
  width: 100%;
  border-radius: 10px;
}

.concept-texts {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 30px;
}
@media screen and (max-width:999px) {
  .concept-texts {
    padding-left: 0;
  }
}

.concept-toptext {
  font-weight: 500;
  font-size: 40px;
  padding-bottom: 35px;
  line-height: 2;
}
@media screen and (max-width:999px) {
  .concept-toptext {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
  }
}

.concept-middletext {
  padding-bottom: 10px;
}
@media screen and (max-width:999px) {
  .concept-middletext {
    padding-bottom: 20px;
  }
}
.concept-middletext span {
  font-size: 25px;
}
@media screen and (max-width:999px) {
  .concept-middletext span {
    font-size: 20px;
  }
}

.concept-bottomtext {
  padding-bottom: 20px;
}
.concept-bottomtext span {
  font-size: 25px;
}
@media screen and (max-width:999px) {
  .concept-bottomtext span {
    font-size: 20px;
  }
}

/*-----------------------------------------------
# news
------------------------------------------------*/
.news-content {
  padding-inline: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width:999px) {
  .news-content {
    padding-top: 20px;
    padding-inline: 20px;
  }
}

.news-item {
  color: #543A14;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width:999px) {
  .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.news-item::before {
  background: rgba(84, 58, 20, 0.8);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.news-item:not(:first-child) {
  padding-top: 40px;
}
@media screen and (max-width:999px) {
  .news-item:not(:first-child) {
    padding-top: 20px;
  }
}
.news-item:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.news-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width:999px) {
  .news-item-meta {
    gap: 10px;
  }
}

.news-date {
  width: 95px;
  opacity: 0.7;
}
@media screen and (max-width:999px) {
  .news-date {
    width: 70px;
  }
}

.news-label {
  border: rgba(84, 58, 20, 0.5) solid 1px;
  border-radius: 5px;
  padding: 2px 5px;
}

/*-----------------------------------------------
# order
------------------------------------------------*/
.order {
  margin-bottom: 120px;
}

.order-content {
  padding-inline: 20px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.order-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  padding-top: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:999px) {
  .order-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
  }
}

.order-card {
  width: 33.3%;
  position: relative;
}
@media screen and (max-width:999px) {
  .order-card {
    width: 100%;
  }
}

.order-card-ico {
  border-radius: 50%;
  text-align: center;
  width: 100px;
  height: 100px;
  background-color: #543A14;
  color: #fff;
  position: absolute;
  content: "";
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:999px) {
  .order-card-ico {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.order-card-ico-name {
  font-size: 14px;
  padding-top: 5px;
  line-height: 1;
}
@media screen and (max-width:999px) {
  .order-card-ico-name {
    font-size: 10px;
  }
}

.order-card-ico-number {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width:999px) {
  .order-card-ico-number {
    font-size: 20px;
  }
}

.order-card-body {
  border: #543A14 solid 2px;
  border-radius: 10px;
  padding: 60px 30px;
  background: #fff;
  height: 495px;
}
@media screen and (max-width:999px) {
  .order-card-body {
    height: 350px;
    padding: 40px 20px 20px;
  }
}

.order-card-body-head {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width:999px) {
  .order-card-body-head {
    font-size: 22px;
  }
}

.order-card-body-text {
  padding-top: 18px;
  text-align: left;
}
@media screen and (max-width:999px) {
  .order-card-body-text {
    text-align: center;
  }
}

/*-----------------------------------------------
# access
------------------------------------------------*/
.access-container {
  padding-inline: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 75px;
  padding-bottom: 145px;
}
@media screen and (max-width:999px) {
  .access-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access-texts {
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width:999px) {
  .access-texts {
    padding-top: 30px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 0px;
  }
}

.access-texts-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width:999px) {
  .access-texts-row {
    gap: 15px;
  }
}
.access-texts-row:nth-child(1), .access-texts-row:nth-child(2), .access-texts-row:nth-child(3) {
  padding-bottom: 30px;
}

.access-text-term {
  width: 100px;
  font-size: 20px;
}
@media screen and (max-width:999px) {
  .access-text-term {
    width: 85px;
  }
}

.access-text-description {
  font-size: 20px;
}
.access-text-description a {
  color: #543A14;
  text-decoration: underline;
}

.access-map {
  width: 50%;
}
@media screen and (max-width:999px) {
  .access-map {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.iframe-wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/*-----------------------------------------------
# movies
------------------------------------------------*/
.movies {
  margin-bottom: 50px;
  position: relative;
}

.movies-frame video {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-----------------------------------------------
# menu
------------------------------------------------*/
.menu {
  margin-bottom: 175px;
}
@media screen and (max-width:999px) {
  .menu {
    margin-bottom: 100px;
  }
}

.menu-top-text {
  font-size: 20px;
  padding-top: 45px;
  padding-bottom: 25px;
  text-align: center;
}
@media screen and (max-width:999px) {
  .menu-top-text {
    font-size: 18px;
    padding-top: 25px;
  }
}

.shop-cards-box {
  position: relative;
}

.slide-card {
  overflow: hidden;
  min-width: 260px;
  border-radius: 10px;
  max-height: 650px;
}

.slide-card-img {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.slide-card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width:999px) {
  .slide-card-img img {
    height: 300px;
  }
}
.slide-card-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slide-card-head {
  text-align: left;
  font-size: 25px;
  padding-top: 15px;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (max-width:999px) {
  .slide-card-head {
    font-size: 20px;
    font-weight: 700;
  }
}

.slide-card-features {
  font-size: 16px;
  text-align: center;
  height: 45px;
}
@media screen and (max-width:999px) {
  .slide-card-features {
    font-size: 14px;
  }
}

.slide-card-tag {
  padding-top: 10px;
}

.slide-card-tag-head {
  text-align: center;
}

.slide-card-prises {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
}

.slide-card-prises-group {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.slide-card-prises-group:nth-child(2)::before, .slide-card-prises-group:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: rgba(84, 58, 20, 0.7);
  top: 10px;
  left: 0;
}

.slide-card-prises-weight {
  color: rgba(84, 58, 20, 0.8);
}

.slide-card-prises-prise {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width:999px) {
  .slide-card-prises-prise {
    font-size: 20px;
  }
}

.swiper-button-prev {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/card-prev-button.png) no-repeat center center/contain;
  top: 115%;
  left: 15%;
  z-index: 200;
}
@media screen and (max-width:999px) {
  .swiper-button-prev {
    display: none;
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/card-next-button.png) no-repeat center center/contain;
  top: 115%;
  right: 15%;
  z-index: 200;
}
.swiper-button-next::after {
  display: none;
}
@media screen and (max-width:999px) {
  .swiper-button-next {
    display: none;
  }
}

.shop-logo {
  padding-top: 155px;
  text-align: center;
  font-size: 40px;
  color: #543A14;
  opacity: 0.8;
}
@media screen and (max-width:999px) {
  .shop-logo {
    font-size: 25px;
    padding-top: 45px;
    padding-inline: 10px;
  }
}
.shop-logo a {
  color: #543A14;
  font-family: "Yuji Mai", serif;
}
.shop-logo a span {
  font-size: 90px;
  padding-left: 30px;
  padding-right: 15px;
}
@media screen and (max-width:999px) {
  .shop-logo a span {
    font-size: 50px;
  }
}

.swiper-scrollbar {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -105px !important;
  left: 50% !important;
  background: rgba(19, 16, 16, 0.3);
  width: 500px !important;
  position: relative;
}
@media screen and (max-width:999px) {
  .swiper-scrollbar {
    display: none;
  }
}

.swiper-scrollbar-drag {
  background: #543A14;
}

/*-----------------------------------------------
# contact
------------------------------------------------*/
.contact {
  padding-top: 60px;
}

.contact-from {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-inline: 20px;
}
@media screen and (max-width:999px) {
  .contact-from {
    padding-inline: 10px;
  }
}

.contact-from-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.contact-from-box-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width:999px) {
  .contact-from-box-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-from-head {
  font-size: 25px;
  width: 315px;
}
@media screen and (max-width:999px) {
  .contact-from-head {
    font-size: 20px;
  }
}

.contact-from-tag {
  background: #543A14;
  padding: 3px 6px;
  color: #3b3737;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-from-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact-from-text {
  width: 100%;
  padding: 8px 20px;
}
.contact-from-text textarea {
  width: 100%;
  padding: 20px;
  height: 150px;
}

.contact-from-textarea {
  padding: 8px 20px;
  width: 100%;
  height: 150px;
}

.contact-btn {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact-btn input {
  border-radius: 50px;
  padding: 10px 35px;
  font-weight: 700;
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #FFF0DC;
}
.contact-btn input:hover {
  background: #543A14;
  color: #fff;
}

/*-----------------------------------------------
# footer
------------------------------------------------*/
.footer {
  background: #3b3737;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 30px;
  color: #fff;
}
@media screen and (max-width:999px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}