@charset "UTF-8";
html {
  scroll-behavior: smooth; /* ページ内リンクのスムーススクロール */
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #222222;
  background: #f3efeb;
  overflow-x: clip;
}
body.is-fixed {
  overflow: hidden;
}

img {
  display: block; /* インライン画像の余白を消す */
  max-width: 100%; /* はみ出し防止（推奨） */
  height: auto;
}

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

@media screen and (min-width: 1000px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .inner {
    padding-inline: 30px;
    max-width: 1340px;
  }
}

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5;
  padding-block: 24px;
  background: #222222;
  color: #ffffff;
  min-width: 290px;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.btn::before {
  content: "";
  display: block;
  background: url(../img/btn__arrow-white-sp.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 24px;
  right: 23px;
}
.btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  position: absolute;
  top: 6px;
  left: 6px;
}

.heading {
  text-align: center;
}

.heading__en {
  text-align: center;
  font-family: "Amatic SC", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5; /* 60px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 52px;
    letter-spacing: 10.4px;
    text-transform: uppercase;
  }
}

.heading__ja {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 14px;
    line-height: 1.5; /* 18px */
  }
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.drawer__bg.is-checked {
  pointer-events: auto;
  opacity: 1;
}

.mv {
  height: 32vw;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .mv {
    width: 100%;
    max-height: 320px;
  }
}
.mv::before {
  content: "";
  width: calc(100% - 11px);
  height: calc(100% - 11px);
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .mv::before {
    width: calc(100% - 18px);
    height: calc(100% - 18px);
  }
}
.mv::after {
  content: "";
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .mv::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}

.mv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv__title-en {
  color: #ffffff;
  text-align: center;
  font-family: "Amatic SC", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3; /* 41.6px */
  letter-spacing: 6.4px;
  text-transform: uppercase;
  padding-left: 6px;
}
@media screen and (min-width: 1000px) {
  .mv__title-en {
    font-size: 72px;
    letter-spacing: 14.4px;
  }
}

.mv__title-ja {
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  letter-spacing: 0.96px;
}
@media screen and (min-width: 1000px) {
  .mv__title-ja {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.header {
  position: fixed;
  width: 100%;
  max-width: 375px;
  right: 0;
  z-index: 20;
}
.header.is-checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header__container {
  padding: 10px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.drawer__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #382620;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .drawer__icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .drawer__icon.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.drawer__icon.is-checked {
  background: #ffffff;
  z-index: 20;
}
.drawer__icon.is-checked .drawer__icon-bar {
  background: #382620;
  width: 27.413px;
  height: 2.284px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
  top: 28.75px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(3) {
  top: 28.75px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer__icon-wrap {
  width: 27px;
  height: 15.75px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__icon-bar {
  width: 27px;
  height: 2.25px;
  background: #ffffff;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer__icon-bar:nth-of-type(1) {
  top: 22px;
}
.drawer__icon-bar:nth-of-type(2) {
  top: 28.75px;
}
.drawer__icon-bar:nth-of-type(3) {
  top: 35.5px;
}

.drawer-content {
  background: #382620;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 375px;
  opacity: 0;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 50px;
  -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;
}
.drawer-content.is-checked {
  display: block;
  opacity: 1;
  z-index: 3;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__title-box {
  position: relative;
  top: 10px;
  left: 10px;
}

.drawer__title {
  width: 119.999px;
}

.drawer-content__menu {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.drawer-content__link {
  display: inline-block;
  color: #ffffff;
  font-family: "Patua One", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5; /* 36px */
  letter-spacing: 2.88px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-content__link:hover {
  opacity: 0.7;
}
.drawer-content__link span {
  padding-left: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5; /* 15px */
}
.drawer-content__link p {
  display: inline;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5; /* 15px */
}

.drawer__sns-box {
  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: 24px;
}

.drawer__sns-twitter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer__sns-twitter:hover {
  opacity: 0.7;
}

.drawer__sns-instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer__sns-instagram:hover {
  opacity: 0.7;
}

.drawer__sns-youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer__sns-youtube:hover {
  opacity: 0.7;
}

.title__logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5;
}
@media screen and (min-width: 1000px) {
  .title__logo {
    display: none;
  }
}

.header__title {
  width: 119.999px;
}

.fv {
  overflow-x: clip;
}
@media screen and (min-width: 1000px) {
  .fv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1000px) {
  .fv__menu {
    width: 15.625%;
    min-width: 200px;
    padding-top: 18px;
  }
}

.fv__menu-inner {
  padding-inline: 17px;
}

.fv__menu-title {
  width: 166px;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__menu-title:hover {
  opacity: 0.7;
}

.fv__menu-list {
  margin-top: 60px;
  text-align: center;
}

.fv__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;
  gap: 32px;
}

.fv__menu-item-link {
  color: #222222;
  text-align: center;
  font-family: "Patua One", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5; /* 24px */
  letter-spacing: 1.92px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__menu-item-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .fv__menu-item-link {
    letter-spacing: 2px;
  }
}
.fv__menu-item-link p {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.fv__menu-sns-box {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.fv__menu-sns-twitter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__menu-sns-twitter a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__menu-sns-twitter a:hover {
  opacity: 0.7;
}

.fv__menu-sns-instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__menu-sns-instagram a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__menu-sns-instagram a:hover {
  opacity: 0.7;
}

.fv__menu-sns-youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fv__menu-sns-youtube a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__menu-sns-youtube a:hover {
  opacity: 0.7;
}

.fv__main {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .fv__main {
    width: 84.375%;
    aspect-ratio: 1080/735;
    height: auto;
  }
  .fv__main::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -60px;
    z-index: -1;
    width: 91.1111111111%;
    height: 100%;
    background-color: #eae0d5;
  }
}

.fv__concept-message {
  position: absolute;
  bottom: 447px;
  left: 20px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__concept-message {
    bottom: 53px;
    left: 50px;
  }
}

.message__text {
  color: #ffffff;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 2; /* 200% */
  letter-spacing: 2.24px;
}
@media screen and (min-width: 1000px) {
  .message__text {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 2.8px;
  }
}

.fv__slider {
  position: relative;
}

.swiper-pagination {
  text-align: left !important;
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: 16px !important;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin-inline: 8px !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  /*アクティブなドットの透過度を1にする*/
  background-color: #d59b71 !important;
  opacity: 1;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .fv-card__image,
.swiper-slide-duplicate-active .fv-card__image,
.swiper-slide-prev .fv-card__image {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.fv__pick {
  position: absolute;
  right: 50%;
  bottom: 32px;
  z-index: 2;
  width: 89.3333333333%;
  max-width: 335px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .fv__pick {
    width: 50.5208333333%;
    max-width: 388px;
    right: 215px;
    bottom: 20px;
  }
}

.fv__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.85);
}
.fv__link::before {
  content: "";
  background: url(../img/fv_category-badge-sp.png) no-repeat center center/contain;
  width: 120px;
  height: 26px;
  top: 8px;
  left: -8px;
  position: absolute;
  z-index: 1;
}
.fv__link:hover .fv__pick-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .fv__link {
    padding: 16px;
  }
}

.fv__pick-decoration {
  position: absolute;
  right: 0;
  top: -44px;
}
@media screen and (min-width: 768px) {
  .fv__pick-decoration {
    top: -52px;
  }
}
.fv__pick-decoration img {
  width: 126px;
  height: 82px;
}
@media screen and (min-width: 768px) {
  .fv__pick-decoration img {
    width: 168px;
    height: 109px;
  }
}

.fv__pick-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.fv__pick-image img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 1000px) {
  .fv__pick-image img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 1000px) {
  .fv__pick-image {
    width: 120px;
  }
}

.fv__pick-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.pick-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5; /* 18px */
}

.pick-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
}
@media screen and (min-width: 768px) {
  .pick-text {
    font-size: 14px;
  }
}

.concept {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.concept::before {
  content: "";
  background: url(../img/concept_deco1-sp.png) no-repeat center center/contain;
  position: absolute;
  top: -20px;
  right: 0;
  -webkit-transform: translateX(17px);
          transform: translateX(17px);
  width: 145px;
  height: 130px;
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .concept::before {
    background: url(../img/concept_deco1-pc.png) no-repeat center center/contain;
    width: 296px;
    height: 265px;
    aspect-ratio: 86/77;
    top: 20px;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}

.concept__container {
  padding-block: 60px;
  position: relative;
}
.concept__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: calc(100% - 20px);
  height: 100px;
  background-color: #eae0d5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .concept__container::after {
    width: calc(100% - 90px);
    height: 300px;
    bottom: 57px;
  }
}
@media screen and (min-width: 1000px) {
  .concept__container {
    padding-top: 140px;
    padding-bottom: 135px;
  }
}

.concept__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .concept__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1280px;
    margin-inline: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-inline: 0;
  }
}

.concept__content {
  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;
}
@media screen and (min-width: 1000px) {
  .concept__content {
    margin-top: 0;
    width: 45.9459459459%;
    max-width: 510px;
    gap: 48px;
    padding-top: 32px;
  }
}

.concept__title-en {
  text-align: left;
}

.concept__title-ja {
  text-align: left;
}

.concept__title-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 2; /* 40px */
}
@media screen and (min-width: 1000px) {
  .concept__title-sub {
    font-size: 28px;
  }
}

.concept__description {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 2; /* 28px */
}

.concept__description-text2 {
  margin-top: 14px;
}

.concept__button {
  text-align: center;
  margin-right: 6px;
}
.concept__button:hover .concept__btn {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.concept__button:hover .concept__btn::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}
@media screen and (min-width: 1000px) {
  .concept__button {
    text-align: left;
  }
}

.concept__btn {
  max-width: 290px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.concept__btn::before {
  right: 22px;
}
.concept__btn::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.concept__image {
  margin-top: 66px;
  width: 94.0298507463%;
  margin-left: -20px;
}
@media screen and (min-width: 1000px) {
  .concept__image {
    margin-top: 0;
    margin-left: 0;
    width: 56.0747663551%;
    max-width: 600px;
  }
}

.lunch {
  margin-top: 120px;
  background: #eae0d5;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 1000px) {
  .lunch {
    margin-top: 105px;
  }
}
.lunch::before {
  content: "";
  background: url(../img/lunch_deco1-sp.png) no-repeat center center/contain;
  width: 119px;
  height: 135px;
  position: absolute;
  top: -170px;
  right: 0;
  -webkit-transform: translateX(33px);
          transform: translateX(33px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .lunch::before {
    background: url(../img/lunch_deco1-pc.png) no-repeat center center/contain;
    width: 201px;
    height: 228px;
    aspect-ratio: 67/76;
    top: -130px;
  }
}

.lunch__container {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .lunch__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1000px) {
  .lunch__title-en {
    letter-spacing: 10.4px;
  }
}

.lunch__contents {
  margin-top: 60px;
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 23px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .lunch__contents {
    padding-top: 60px;
    padding-inline: 40px;
    padding-bottom: 40px;
    max-width: 1200px;
    margin-inline: auto;
  }
}
.lunch__contents::before {
  content: "";
  background: url(../img/lunch_deco2-sp.png) no-repeat center center/contain;
  width: 206px;
  height: 107px;
  position: absolute;
  top: -244px;
  right: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .lunch__contents::before {
    background: url(../img/lunch_deco2-pc.png) no-repeat center center/contain;
    width: 308px;
    height: 160px;
    top: -60px;
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
}

.contents__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -25px;
}
@media screen and (min-width: 1000px) {
  .contents__title {
    top: -22px;
  }
}

.contents__title-text {
  color: #ffffff;
  background: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  padding: 8px 10px;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .contents__title-text {
    font-size: 18px;
    padding-block: 6px;
  }
}
.contents__title-text::before {
  content: "";
  background: url(../img/lunch_ribbon-left-sp.png) no-repeat center center/contain;
  width: 31px;
  height: 37px;
  position: absolute;
  top: 7px;
  left: -20px;
}
@media screen and (min-width: 1000px) {
  .contents__title-text::before {
    top: 10px;
  }
}
.contents__title-text::after {
  content: "";
  background: url(../img/lunch_ribbon-right-sp.png) no-repeat center center/contain;
  width: 31px;
  height: 37px;
  position: absolute;
  top: 7px;
  right: -19px;
}
@media screen and (min-width: 1000px) {
  .contents__title-text::after {
    top: 10px;
  }
}

.lunch__menu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
  }
}

@media screen and (min-width: 1000px) {
  .lunch__menu-card {
    max-width: 260px;
  }
  .lunch__menu-card:nth-of-type(1) {
    padding-bottom: 35px;
  }
  .lunch__menu-card:nth-of-type(2) {
    padding-top: 40px;
  }
  .lunch__menu-card:nth-of-type(3) {
    padding-bottom: 35px;
  }
  .lunch__menu-card:nth-of-type(4) {
    padding-top: 40px;
  }
}

.lunch__menu-card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.lunch__menu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-title {
    gap: 12px;
  }
}

.lunch__menu-initial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #222222;
  color: #ffffff;
  text-align: center;
  font-family: "Patua One", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1; /* 19px */
  letter-spacing: 2.28px;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-initial {
    width: 49px;
    height: 49px;
    font-size: 32px;
    letter-spacing: 3.84px;
    padding-inline: 13px;
  }
}

.lunch__menu-title-text {
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 21px */
}
@media screen and (min-width: 1000px) {
  .lunch__menu-title-text {
    font-size: 18px;
  }
}

.lunch__menu-sets {
  margin-top: 20px;
  padding-block: 20px;
  background: #f7f6f4;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-sets {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1000px) {
  .lunch__menu-set-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-inline: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .lunch__menu-set-image {
    max-width: 700px;
  }
}

.lunch__menu-set-description {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-set-description {
    margin-top: 0;
  }
}

.lunch__menu-set-description-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
}
@media screen and (min-width: 1000px) {
  .lunch__menu-set-description-title {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    margin-top: 3px;
  }
}

.lunch__menu-set-description-price {
  text-align: center;
  font-family: "Damion", cursive;
  font-size: 40px;
  font-weight: 400;
  line-height: 1; /* 40px */
  position: relative;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-set-description-price {
    font-size: 60px;
    font-weight: 400;
    margin-top: 14px;
    padding-left: 4px;
  }
}
.lunch__menu-set-description-price::after {
  content: "";
  background: url(../img/lunch_dods-sp.png) no-repeat center center/contain;
  position: absolute;
  width: 148px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1000px) {
  .lunch__menu-set-description-price::after {
    background: url(../img/lunch_dods-pc.png) no-repeat center center/contain;
    width: 213px;
    bottom: -14px;
  }
}

.lunch__menu-set-description-hours {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  margin-top: 26px;
}
@media screen and (min-width: 1000px) {
  .lunch__menu-set-description-hours {
    margin-top: 27px;
    text-align: right;
    font-size: 14px;
    line-height: normal;
  }
}

.menu {
  position: relative;
  overflow-x: clip;
}
.menu::before {
  content: "";
  background: url(../img/menu_deco1-sp.png) no-repeat center center/contain;
  width: 190px;
  height: 190px;
  position: absolute;
  top: -90px;
  left: 0;
  -webkit-transform: translateX(-42px);
          transform: translateX(-42px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .menu::before {
    background: url(../img/menu_deco1-pc.png) no-repeat center center/contain;
    width: 395px;
    height: 395px;
    top: -140px;
    -webkit-transform: translateX(-105px);
            transform: translateX(-105px);
  }
}
.menu::after {
  content: "";
  background: #eae0d5;
  width: 274px;
  height: 1565px;
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .menu::after {
    width: 1024px;
    height: 2196px;
  }
}

.menu__container {
  padding-block: 60px;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 1000px) {
  .menu__container {
    padding-block: 80px;
  }
}
.menu__container::before {
  content: "";
  background: url(../img/menu_deco2-sp.png) no-repeat center center/contain;
  width: 168px;
  height: 143px;
  position: absolute;
  bottom: -105px;
  right: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .menu__container::before {
    width: 390px;
    height: 330px;
    bottom: -128px;
    -webkit-transform: translateX(90px);
            transform: translateX(90px);
  }
}

.menu__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .menu__inner {
    padding-inline: 90px;
  }
}

.menu__contents {
  margin-top: 40px;
  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;
}
@media screen and (min-width: 1000px) {
  .menu__contents {
    margin-top: 60px;
    gap: 100px;
    max-width: 1100px;
    margin-inline: auto;
  }
}

.menu__content-head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
  position: relative;
  padding-inline: 10px;
  padding-block: 4px;
}
@media screen and (min-width: 1000px) {
  .menu__content-head {
    font-size: 24px;
    padding-inline: 20px;
    padding-block: 7px;
  }
}
.menu__content-head::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #222222;
  top: 2px;
}
.menu__content-head::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #222222;
  bottom: 2px;
}

.menu__content-body {
  padding-top: 20px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 19px;
}
@media screen and (min-width: 1000px) {
  .menu__content-body {
    padding-top: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 34px;
  }
}

.menu__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.menu__card-image {
  width: 100%;
  max-width: 344px;
  aspect-ratio: 1/1;
  border: 5px solid #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .menu__card-image {
    border: 8px solid #ffffff;
  }
}
.menu__card-image picture,
.menu__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu__card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
}
@media screen and (min-width: 1000px) {
  .menu__card-title {
    font-size: 20px;
  }
}

.menu__card-price {
  font-family: "Damion", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5; /* 36px */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 7px;
}
@media screen and (min-width: 1000px) {
  .menu__card-price {
    font-size: 32px;
  }
}
.menu__content-body-drink {
  padding-top: 18px;
}
@media screen and (min-width: 1000px) {
  .menu__content-body-drink {
    padding-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .menu__card-drink-image {
    width: 29.7272727273%;
  }
}

.menu__drink-lists {
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
}
@media screen and (min-width: 1000px) {
  .menu__drink-lists {
    width: 62.4545454545%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
    padding-inline: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.menu__drink-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 1000px) {
  .menu__drink-list {
    width: 28.6754002911%;
    gap: 18px;
  }
}

.menu_drink-list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  padding-bottom: 5px;
  border-bottom: 1px solid #222222;
}

.menu__drink-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.menu__drink-list-item {
  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;
}

.menu_drink-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  display: inline-block;
}

.menu_drink--price {
  font-family: "Damion", cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5; /* 30px */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: -2px;
}
.menu__button {
  margin-top: 40px;
  padding-inline: 20px;
  margin-right: 6px;
}
.menu__button:hover .menu__btn {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.menu__button:hover .menu__btn::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}
@media screen and (min-width: 1000px) {
  .menu__button {
    width: 330px;
    margin-inline: auto;
    margin-top: 60px;
  }
}

.menu__btn {
  max-width: 290px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu__btn::before {
  right: 22px;
}
.menu__btn::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.gallery {
  margin-top: 126px;
  background: #eae0d5;
  position: relative;
  overflow-x: clip;
}
.gallery::before {
  content: "";
  background: url(../img/gallery_deco1-sp.png) no-repeat center center/contain;
  width: 200px;
  height: 104px;
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .gallery::before {
    background: url(../img/gallery_deco1-pc.png) no-repeat center center/contain;
    width: 266px;
    height: 138px;
    top: -60px;
    left: 0;
    -webkit-transform: translateX(297px);
            transform: translateX(297px);
  }
}
@media screen and (min-width: 1000px) {
  .gallery {
    margin-top: 165px;
  }
}

.gallery__container {
  padding-top: 60px;
  padding-bottom: 67px;
}
@media screen and (min-width: 1000px) {
  .gallery__container {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

.gallery__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .gallery__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.gallery__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}
@media screen and (min-width: 1000px) {
  .gallery__content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}

.gallery__button {
  margin-top: 40px;
  text-align: center;
}
.gallery__button:hover .gallery__btn {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.gallery__button:hover .gallery__btn::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}
@media screen and (min-width: 1000px) {
  .gallery__button {
    margin-top: 60px;
  }
}

.gallery__btn {
  width: 290px;
  margin-right: 6px;
  max-width: 290px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.gallery__btn::before {
  right: 22px;
}
.gallery__btn::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.news {
  background: #f3efeb;
  position: relative;
  overflow-x: clip;
}
.news::before {
  content: "";
  background: url(../img/news_deco1-sp.png) no-repeat center center/contain;
  width: 204px;
  height: 185px;
  position: absolute;
  top: -40px;
  left: 0;
  -webkit-transform: translateX(-70px);
          transform: translateX(-70px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .news::before {
    background: url(../img/news_deco1-pc.png) no-repeat center center/contain;
    width: 354px;
    height: 320px;
    aspect-ratio: 177/160;
    top: -140px;
    left: 0;
    -webkit-transform: translateX(-87px);
            transform: translateX(-87px);
  }
}

.news__container {
  padding-top: 60px;
  padding-bottom: 67px;
}
@media screen and (min-width: 1000px) {
  .news__container {
    padding-top: 80px;
    padding-bottom: 88px;
  }
}

.news__contents {
  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;
}
@media screen and (min-width: 1000px) {
  .news__contents {
    gap: 58px;
    max-width: 1100px;
    margin-inline: auto;
  }
}

.news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .news__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.news__card-large {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .news__card-large {
    width: 46.3636363636%;
  }
}

.news__card-large-link:hover .news__card-large-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.news_card-large-category {
  position: absolute;
  top: 19px;
  left: -8px;
}

.news_card-large-category-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #382620;
  position: relative;
  z-index: 1;
}
.news_card-large-category-text::before {
  content: "";
  position: absolute;
  background: url(../img/news_category-badge-bottom-sp.png) no-repeat center center/contain;
  width: 8px;
  height: 4px;
  bottom: -4px;
  left: 0px;
  z-index: 1;
}
.news_card-large-category-text::after {
  content: "";
  position: absolute;
  background: url(../img/news_category-badge-right-sp.png) no-repeat center center/contain;
  width: 5px;
  height: 28px;
  right: -5px;
  top: 0;
  z-index: 2;
}

.news__card-large-image {
  overflow: hidden;
}
.news__card-large-textbox {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.news__card-large-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 1000px) {
  .news__card-large-title {
    font-size: 20px;
  }
}

.news__card-large-description {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 18px */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 1000px) {
  .news__card-large-description {
    font-size: 14px;
  }
}

.news__card-large-date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* 21px */
}

.news_card-common {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}
@media screen and (min-width: 1000px) {
  .news_card-common {
    width: 50.9090909091%;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
  }
}

.news__card {
  position: relative;
}

.news__card-link:hover .news__card-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.news_card-category {
  position: absolute;
  top: 10px;
  left: -8px;
  z-index: 1;
}

.news_card-category-text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #382620;
  z-index: 2;
}
.news_card-category-text::before {
  content: "";
  position: absolute;
  background: url(../img/news_category-badge-bottom-sp.png) no-repeat center center/contain;
  width: 8px;
  height: 4px;
  bottom: -4px;
  left: 0px;
  z-index: 2;
}
.news_card-category-text::after {
  content: "";
  position: absolute;
  background: url(../img/news_category-badge-right-sp.png) no-repeat center center/contain;
  width: 5px;
  height: 22px;
  right: -4px;
  top: 0;
  z-index: 2;
}

.news__card-image {
  overflow: hidden;
}
.news__card-textbox {
  margin-top: 8px;
}
@media screen and (min-width: 1000px) {
  .news__card-textbox {
    margin-top: 12px;
  }
}

.news__card-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .news__card-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.news__card-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5; /* 21px */
}
@media screen and (min-width: 1000px) {
  .news__card-date {
    font-size: 14px;
  }
}

.news__button {
  text-align: center;
}
.news__button:hover .news__btn {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.news__button:hover .news__btn::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}
.news__btn {
  width: 290px;
  margin-right: 6px;
  max-width: 290px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news__btn::before {
  right: 22px;
}
.news__btn::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.access {
  margin-top: 120px;
  background: #eae0d5;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 1000px) {
  .access {
    margin-top: 0;
    overflow-x: clip;
  }
}
.access::before {
  content: "";
  background: url(../img/access_deco1-sp.png) no-repeat center center/contain;
  width: 194px;
  height: 179px;
  position: absolute;
  top: -95px;
  right: 0;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .access::before {
    background: url(../img/access_deco1-pc.png) no-repeat center center/contain;
    width: 389px;
    height: 359px;
    top: -171px;
    right: 0;
    -webkit-transform: translateX(91px);
            transform: translateX(91px);
  }
}
.access::after {
  content: "";
  background: url(../img/access_deco2-sp.png) no-repeat center center/contain;
  width: 204px;
  height: 185px;
  position: absolute;
  top: -50px;
  left: 0;
  -webkit-transform: translateX(-33px);
          transform: translateX(-33px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .access::after {
    background: url(../img/access_deco2-pc.png) no-repeat center center/contain;
    width: 233px;
    height: 200.002px;
    top: -50px;
    left: 0;
    -webkit-transform: translateX(336px);
            transform: translateX(336px);
  }
}

.access__container {
  padding-block: 80px;
}

@media screen and (min-width: 1000px) {
  .access__inner {
    max-width: 688px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

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

.access__address-map {
  border: 5px solid #ffffff;
  position: relative;
  aspect-ratio: 335/184;
}
@media screen and (min-width: 1000px) {
  .access__address-map {
    aspect-ratio: 688/377;
  }
}
.access__address-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  border: none;
}

.access__detail {
  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 (min-width: 1000px) {
  .access__detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.access__detail-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 1000px) {
  .access__detail-left {
    gap: 19px;
    width: 47.0930232558%;
  }
}

.access__detail-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  margin-top: 17px;
}
@media screen and (min-width: 1000px) {
  .access__detail-right {
    margin-top: 0;
    gap: 19px;
    width: 47.0930232558%;
  }
}

.access__detail-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 6px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid #222222;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.access__detail-term {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  width: 56px;
}

.access__detail-description {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
}

.footer {
  background: #382620;
  position: relative;
  overflow-x: clip;
}
.footer::before {
  content: "";
  background: url(../img/footer_deco1-sp.png) no-repeat center center/contain;
  width: 128px;
  height: 108px;
  position: absolute;
  top: -60px;
  left: 0;
  -webkit-transform: translateX(-36px);
          transform: translateX(-36px);
  z-index: 6;
}
@media screen and (min-width: 1000px) {
  .footer::before {
    background: url(../img/footer_deco1-pc.png) no-repeat center center/contain;
    width: 341px;
    height: 288px;
    position: absolute;
    top: -150px;
    left: 0;
    -webkit-transform: translateX(-85px);
            transform: translateX(-85px);
  }
}

.container {
  padding: 40px 20px 14px;
}

.footer_icon-box {
  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: 24px;
}

.footer_icon-twitter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_icon-twitter a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer_icon-twitter a:hover {
  opacity: 0.7;
}
.footer_icon-twitter img {
  width: 19.5px;
  height: 15.838px;
}

.footer_icon-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_icon-insta a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer_icon-insta a:hover {
  opacity: 0.7;
}
.footer_icon-insta img {
  width: 18px;
  height: 17.996px;
}

.footer_icon-youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_icon-youtube a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer_icon-youtube a:hover {
  opacity: 0.7;
}
.footer_icon-youtube img {
  width: 21px;
  height: 14.766px;
}

.footer__bottom-bg {
  margin-top: 39px;
  text-align: center;
}

.footer__copyright {
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5; /* 18px */
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 22px;
  background: #ffffff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1000px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}
.pagetop img {
  width: 22px;
  height: 12px;
}

.mv-concept {
  background: url(../img/page-concept-mv_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-concept {
    background: url(../img/page-concept-mv_pc.jpg) no-repeat center center/cover;
  }
}

.breadcrumb {
  margin-top: 6px;
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .breadcrumb {
    margin-top: 16px;
    padding-inline: 90px;
  }
}

.breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow: auto;
}
@media screen and (min-width: 1000px) {
  .breadcrumb-item {
    gap: 15px;
  }
}
.breadcrumb-item span {
  color: #382620;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .breadcrumb-item span {
    font-size: 14px;
  }
}

.page-concept__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-concept__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.page-concept__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 1000px) {
  .page-concept__contents {
    gap: 200px;
  }
}

.page-concept__content1 {
  position: relative;
}
.page-concept__content1::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 89.3333333333%;
  height: 100px;
  background-color: #eae0d5;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .page-concept__content1::after {
    width: 76.875%;
    height: 200px;
    bottom: -100px;
  }
}

.page-concept__content1-inner {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .page-concept__content1-inner {
    max-width: 1100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}

.page-concept__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .page-concept__content-head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 36px;
    width: 37.7669902913%;
    margin-left: -6px;
    padding-right: 2px;
  }
}

.page-concept__content-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 2; /* 40px */
}
@media screen and (min-width: 1000px) {
  .page-concept__content-title {
    font-size: 28px;
  }
}

.page-concept__content-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .page-concept__content-description {
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) {
  .page-concept__content1-body {
    width: 62.1359223301%;
    padding-right: 4px;
  }
}

.content1-body__image-box {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
@media screen and (min-width: 1000px) {
  .content1-body__image-box {
    margin-top: 20px;
    gap: 20px;
  }
}

.page-concept__content2 {
  position: relative;
}
.page-concept__content2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 75.7333333333%;
  height: 227px;
  background-color: #eae0d5;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .page-concept__content2::after {
    width: 45.3125%;
    height: 437px;
    left: -4px;
    bottom: -61px;
  }
}

.page-concept__content2-inner {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .page-concept__content2-inner {
    max-width: 1100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 70px;
  }
}

.page-concept__content2-body {
  position: relative;
  min-height: 281px;
}
@media screen and (min-width: 1000px) {
  .page-concept__content2-body {
    width: 62.1359223301%;
    height: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .content2-body__image {
    padding-right: 5px;
  }
}

.page-concept__content3 {
  position: relative;
}
.page-concept__content3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 49.0666666667%;
  height: 195px;
  background-color: #eae0d5;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .page-concept__content3::after {
    right: 2px;
    bottom: -80px;
    width: 31.25%;
    height: 520px;
  }
}

.page-concept__content3-inner {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .page-concept__content3-inner {
    max-width: 1100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}

@media screen and (min-width: 1000px) {
  .page-concept__content3-body {
    width: 62.1359223301%;
    padding-right: 4px;
  }
}

.mv-archive-menu {
  background: url(../img/archive-menu_mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-archive-menu {
    background: url(../img/archive-menu_mv-pc.png) no-repeat center center/cover;
  }
}

.archive-menu__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .archive-menu__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.archive-menu__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .archive-menu__inner {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.archive-menu__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 59px;
}
@media screen and (min-width: 1000px) {
  .archive-menu__contents {
    gap: 80px;
  }
}

.archive-menu__title-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 15px;
}
@media screen and (min-width: 1000px) {
  .archive-menu__title-lists {
    grid-template-columns: repeat(4, minmax(auto, 200px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.archive-menu__title-link {
  display: grid;
  place-content: center;
  height: 64px;
  background-color: #888;
  -webkit-transition: all 0.3s, opacity 0.3s;
  transition: all 0.3s, opacity 0.3s;
  z-index: 1;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.archive-menu__title-link:hover {
  background-color: #382620;
  opacity: 1;
}
.archive-menu__title-link.is-active {
  background-color: #382620;
  opacity: 1;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .archive-menu__title-link {
    height: 69px;
  }
}
.archive-menu__title-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  pointer-events: none;
  border: 1px solid #ffffff;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.archive-menu__title-text {
  font-size: 15px;
  line-height: 1.25;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}

.archive-menu__food-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 19px;
}
@media screen and (min-width: 1000px) {
  .archive-menu__food-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.archive-menu__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.archive-menu__card-image {
  aspect-ratio: 1/1;
}
.archive-menu__card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.archive-menu__card-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Damion", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .archive-menu__content-body-drink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mv-page-news {
  background: url(../img/home_mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-page-news {
    background: url(../img/home_mv-pc.png) no-repeat center center/cover;
  }
}

.page-news__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-news__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

@media screen and (min-width: 1000px) {
  .page-news__inner {
    max-width: 1160px;
    padding-inline: 30px;
  }
}

.page-news__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 1000px) {
  .page-news__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.page-news__content {
  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;
}
@media screen and (min-width: 1000px) {
  .page-news__content {
    width: 65.4545454545%;
    gap: 60px;
  }
}

@media screen and (min-width: 1000px) {
  .relation__content {
    width: 100%;
    gap: 60px;
  }
}

.page-news__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 19px;
}
@media screen and (min-width: 1000px) {
  .page-news__cards {
    gap: 40px;
  }
}

.related-articles__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 19px;
}
@media screen and (min-width: 1000px) {
  .related-articles__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.page-news__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagenation-link {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #382620;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagenation-link:hover {
  background-color: #382620;
  color: #ffffff;
}

.current {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: #ffffff;
  background-color: #382620;
  border: 1px solid #382620;
}

.pagenation-link-prev {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #382620;
  position: relative;
}
.pagenation-link-prev:hover {
  background-color: #382620;
  color: #ffffff;
}
.pagenation-link-prev:hover::before {
  background: url(../img/home_news-arrow-next-light.svg) center center no-repeat;
  background-size: 100% auto;
  -webkit-transform: translate(50%, -50%) rotate(180deg);
          transform: translate(50%, -50%) rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagenation-link-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 6px;
  height: 12px;
  background: url(../img/home_news-arrow-next1.svg) center center no-repeat;
  background-size: 100% auto;
  -webkit-transform: translate(50%, -50%) rotate(180deg);
          transform: translate(50%, -50%) rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pagenation-link-next {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #382620;
  position: relative;
}
.pagenation-link-next:hover {
  background-color: #382620;
  color: #ffffff;
}
.pagenation-link-next:hover::before {
  background: url(../img/home_news-arrow-next-light.svg) center center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagenation-link-next::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 6px;
  height: 12px;
  background: url(../img/home_news-arrow-next1.svg) center center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

@media screen and (min-width: 1000px) {
  .page-news__sidebar {
    width: 29.0909090909%;
  }
}

.page-news__sidebar-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.sidebar-section__posts {
  background: #f8f8f8;
}

.sidebar__posts-container {
  padding-block: 20px;
}

.sidebar__posts-inner {
  padding-inline: 20px;
}

.sidebar-heading {
  padding-bottom: 21px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.sidebar-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: #222222;
}

.sidebar__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.sidebar__post-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar__post-link:hover .sidebar__post-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.sidebar__post-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.sidebar__post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.sidebar__post-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.sidebar__post-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sidebar__post-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.sidebar-section__category {
  background: #f8f8f8;
}

.sidebar__category-container {
  padding-block: 20px;
}

.sidebar__category-inner {
  padding-inline: 20px;
}

.sidebar__category-content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.sidebar__category-link {
  display: block;
  padding-left: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar__category-link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/Icon_metro.png) no-repeat center center/contain;
}
.sidebar__category-link:hover {
  opacity: 0.7;
}

.page-news__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
  margin-bottom: 24px;
}
@media screen and (min-width: 1000px) {
  .page-news__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.page-news-category__content {
  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 (min-width: 1000px) {
  .page-news-category__content {
    width: 65.4545454545%;
  }
}

.page-single__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-single__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.page-single__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (min-width: 1000px) {
  .page-single__contents {
    max-width: 688px;
    margin-inline: auto;
    gap: 120px;
  }
}

.page-single__article {
  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;
}

.article__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.article__head-img img {
  max-width: 335px;
  height: 176px;
  aspect-ratio: 335/176;
}
@media screen and (min-width: 1000px) {
  .article__head-img img {
    max-width: 688px;
    height: 361px;
    aspect-ratio: 688/361;
  }
}

.article__head-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
}
@media screen and (min-width: 1000px) {
  .article__head-title {
    font-size: 28px;
  }
}

.article__head-category-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__head-date {
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  position: relative;
}
.article__head-date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: #382620;
  left: 93px;
}

.article__head-category {
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
}

.article__body {
  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;
}
@media screen and (min-width: 1000px) {
  .article__body {
    gap: 39px;
  }
}

.article__body-title-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: 14px;
}
@media screen and (min-width: 1000px) {
  .article__body-title-box {
    gap: 16px;
  }
}

.article__body-title {
  color: #382620;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5; /* 27px */
  padding-left: 9px;
  border-left: 6px solid #382620;
}
@media screen and (min-width: 1000px) {
  .article__body-title {
    font-size: 24px;
    padding-left: 9px;
  }
}

.article__body-title-description {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .article__body-title-description {
    font-size: 16px;
  }
}

.article__body-paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 1000px) {
  .article__body-paragraph {
    gap: 16px;
  }
}

.paragraph__title {
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  padding-bottom: 12px;
  border-bottom: 1px solid #382620;
}
@media screen and (min-width: 1000px) {
  .paragraph__title {
    font-size: 20px;
  }
}

.paragraph__description1 {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .paragraph__description1 {
    font-size: 16px;
  }
}

.paragraph__description-quote {
  padding: 20px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1000px) {
  .paragraph__description-quote {
    padding: 40px;
    gap: 17px;
  }
}

.quote__text1 {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .quote__text1 {
    font-size: 16px;
  }
}

.quote__text2 {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}

.paragraph__description2 {
  color: #382620;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
}
@media screen and (min-width: 1000px) {
  .paragraph__description2 {
    font-size: 16px;
  }
}

.paragraph__description-lists1 {
  margin-left: 1.5em;
  list-style: disc;
}
.paragraph__description-lists1::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  -moz-text-align-last: auto !important;
       text-align-last: auto !important;
}

.paragraph__description-lists2 {
  margin-left: 1.5em;
  list-style: decimal;
}
.paragraph__description-lists2::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  -moz-text-align-last: auto !important;
       text-align-last: auto !important;
}

.paragraph__description-list {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .paragraph__description-list {
    font-size: 16px;
  }
}

.paragraph__description3 {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .paragraph__description3 {
    font-size: 16px;
  }
}
.paragraph__description3 span {
  font-weight: 700;
}

.article__pagenation {
  display: grid;
  grid-template-columns: minmax(72px, auto) auto minmax(72px, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .article__pagenation {
    grid-template-columns: minmax(80px, auto) auto minmax(80px, auto);
  }
}

.prev__button {
  color: #382620;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  position: relative;
  display: inline-block;
  padding: 7px 0 7px 16px;
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.prev__button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1000px) {
  .prev__button {
    font-size: 16px;
    padding: 11.5px 0 11.5px 16px;
  }
}
.prev__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url(../img/icon-left.png) no-repeat left top;
  background-size: 100% auto;
}

.article-list__button {
  color: #382620;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid #222;
}

.next__button {
  color: #382620;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  position: relative;
  display: inline-block;
  padding: 7px 16px 7px 0px;
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.next__button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1000px) {
  .next__button {
    font-size: 16px;
    padding: 11.5px 16px 11.5px 0;
  }
}
.next__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url(../img/icon-right.png) no-repeat left top;
  background-size: 100% auto;
}

.page-single__relation {
  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;
}
@media screen and (min-width: 1000px) {
  .page-single__relation {
    gap: 60px;
  }
}

.relation__title {
  color: #382620;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
}
@media screen and (min-width: 1000px) {
  .relation__title {
    font-size: 28px;
  }
}

.mv-page-shop {
  background: url(../img/page-shop_mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-page-shop {
    background: url(../img/page-shop_mv-pc.png) no-repeat center center/cover;
  }
}

.page-shop__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-shop__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.page-shop__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 63px;
}
@media screen and (min-width: 1000px) {
  .page-shop__contents {
    max-width: 688px;
    margin-inline: auto;
    padding-inline: 0;
    gap: 118px;
  }
}

.page-shop__content-title {
  color: #382620;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5; /* 27px */
  padding-left: 9px;
  border-left: 6px solid #382620;
}
@media screen and (min-width: 1000px) {
  .page-shop__content-title {
    font-size: 24px;
    padding-left: 9px;
  }
}

.page-shop_content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .page-shop_content-body {
    margin-top: 24px;
    gap: 40px;
  }
}

.mv-page-products {
  background: url(../img/page-products_mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-page-products {
    background: url(../img/page-products_mv-pc.png) no-repeat center center/cover;
  }
}

.page-products__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-products__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.page-products__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
}
@media screen and (min-width: 1000px) {
  .page-products__contents {
    gap: 95px;
    max-width: 1100px;
    margin-inline: auto;
  }
}

.page-products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 1000px) {
  .page-products__content {
    gap: 40px;
  }
}

.page-products__cards1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1000px) {
  .page-products__cards1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.page-products__cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media screen and (min-width: 1000px) {
  .page-products__cards2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.page-products__card-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .page-products__card-large {
    width: 51.9607843137%;
  }
}

.page-products-card-large__img {
  width: 100%;
}
.page-products-card-large__img picture,
.page-products-card-large__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 1000px) {
  .page-products-card-large__img {
    aspect-ratio: 1/1;
  }
}

.page-products-card-large__title {
  color: #222222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .page-products-card-large__title {
    font-size: 24px;
  }
}

.page-products-card-large__price {
  color: #222222;
  text-align: center;
  font-family: "Damion", cursive;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5; /* 42px */
}
@media screen and (min-width: 1000px) {
  .page-products-card-large__price {
    font-size: 32px;
  }
}

.page-products-card-large__link {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  padding: 6px 12px;
  background: #382620;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #382620;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-products-card-large__link:hover {
  color: #382620;
  border: 1px solid #382620;
  background: #ffffff;
}
@media screen and (min-width: 1000px) {
  .page-products-card-large__link {
    font-size: 14px;
    padding: 8px 24px;
  }
}

.page-products__card-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 20px;
}
@media screen and (min-width: 1000px) {
  .page-products__card-box {
    gap: 40px;
    width: 51.9607843137%;
  }
}

.page-products__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-products-card__title {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  width: 100%;
}

.page-products-card__price {
  color: #222222;
  text-align: center;
  font-family: "Damion", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5; /* 36px */
}

.page-products-card__link {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5; /* 18px */
  padding: 6px 12px;
  background: #382620;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #382620;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-products-card__link:hover {
  color: #382620;
  border: 1px solid #382620;
  background: #ffffff;
}
@media screen and (min-width: 1000px) {
  .page-products-card__link {
    font-size: 14px;
    padding: 8px 24px;
  }
}

.page-products__wrapping {
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  border: 4px solid #382620;
  background: #ffffff;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .page-products__wrapping {
    padding: 79px 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
.page-products__wrapping::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  z-index: 2;
  border: 1px solid #382620;
}

.page-products__wrapping-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .page-products__wrapping-heading {
    gap: 36px;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-products__wrapping-title {
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  padding-bottom: 24px;
  background: url(../img/dotted.png) left bottom repeat-x;
  background-size: 175% auto;
}
@media screen and (min-width: 1000px) {
  .page-products__wrapping-title {
    font-size: 24px;
    background-size: 100% auto;
  }
}

.page-products__wrapping-text {
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .page-products__wrapping-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1000px) {
  .page-products__wrapping-img {
    width: 50%;
  }
}

.mv-page-contact {
  background: url(../img/page-contact_mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .mv-page-contact {
    background: url(../img/page-contact_mv-pc.png) no-repeat center center/cover;
  }
}

.page-contact__container {
  padding-top: 56px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-contact__container {
    padding-top: 78px;
    padding-bottom: 160px;
  }
}

.page-contact__content {
  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 (min-width: 1000px) {
  .page-contact__content {
    max-width: 680px;
    margin-inline: auto;
  }
}

.page-contact__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
@media screen and (min-width: 1000px) {
  .page-contact__heading {
    gap: 24px;
  }
}

.page-contact__title {
  color: #382620;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
}
@media screen and (min-width: 1000px) {
  .page-contact__title {
    font-size: 28px;
  }
}

.page-contact__title-sub {
  color: #382620;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .page-contact__title-sub {
    font-size: 16px;
  }
}

.page-contact__fields {
  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;
  margin-top: 60px;
}
@media screen and (min-width: 1000px) {
  .page-contact__fields {
    margin-top: 80px;
  }
}

.contact__filed-head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__filed-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 170px;
}

.form-field__label {
  color: #382620;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5; /* 24px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-filed__tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 6px;
  font-size: 11px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #f07317;
  border-radius: 2px;
}

@media screen and (min-width: 1000px) {
  .form-field__item {
    min-width: 490px;
  }
}

.your-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.form-text,
.form-textarea {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .form-text,
  .form-textarea {
    display: block;
    min-width: 490px;
  }
}

input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 6px;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

::-moz-placeholder {
  color: #ccc;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

:-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

::-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

::placeholder {
  color: #ccc;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5; /* 24px */
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1.5;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  cursor: pointer;
}
.wpcf7-list-item-label::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: 0;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #222;
  border-radius: 50%;
}
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #f07317;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

textarea {
  max-height: 200px;
  resize: vertical;
}
@media screen and (min-width: 1000px) {
  textarea {
    max-height: 240px;
  }
}

.form-field__caution {
  color: #382620;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; /* 21px */
}

.submit-wrap {
  max-width: 290px;
  margin-inline: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.submit-wrap::before {
  right: 22px;
}
.submit-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .submit-wrap {
    text-align: left;
  }
}
.submit-wrap:hover .form-field-submit {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.submit-wrap:hover .form-field-submit::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}

.form-field-submit {
  margin-inline: auto;
  cursor: pointer;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 3;
}
.form-field-submit::before {
  content: "";
  display: block;
  background: url(../img/btn__arrow-white-sp.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 24px;
  right: 22px;
  z-index: 5;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5;
  padding-block: 24px;
  background: #222222;
  color: #ffffff;
  min-width: 290px;
  width: 100%;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 4;
}

span.wpcf7-spinner {
  display: none;
}

.page-thanks__container {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .page-thanks__container {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.page-thanks__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
@media screen and (min-width: 1000px) {
  .page-thanks__content {
    max-width: 688px;
    margin-inline: auto;
  }
}

.page-thanks__title {
  color: #382620;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
}
@media screen and (min-width: 1000px) {
  .page-thanks__title {
    font-size: 28px;
  }
}

.page-thanks__text {
  color: #382620;
  font-size: 14px;
  font-weight: 500;
  line-height: 2; /* 28px */
}
@media screen and (min-width: 1000px) {
  .page-thanks__text {
    font-size: 16px;
  }
}