@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  background-color: #fdfaf7;
  color: #4a3a34;
}

.inner {
  padding-inline: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .inner {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}
@media (min-width: 1024px) {
  .inner {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section {
  padding-block: 120px;
  position: relative;
  overflow: hidden;
}

.button {
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid #c3aa44;
  background: #f3b7a3;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: bold;
  color: #4a3a34;
  min-width: 150px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover, .button:active {
  background: #c93a3e;
  color: #fdfaf7;
  -webkit-box-shadow: 0 8px 22px rgba(201, 58, 62, 0.22);
          box-shadow: 0 8px 22px rgba(201, 58, 62, 0.22);
}

.section__title {
  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;
  gap: 12px;
  font-size: 26px;
  color: #a66a3f;
}

.section__title-text {
  display: inline-block;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.1em;
  position: relative;
}
.section__title-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: #c3aa44;
}

.section__sub {
  margin-top: 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8a6e66;
}
@media (min-width: 1024px) {
  .section__sub {
    font-size: 15px;
  }
}

.icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.8);
          transform: rotate(0deg) scale(0.8);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-icon.is-active .icon {
  opacity: 1;
  -webkit-transform: rotate(360deg) scale(1);
          transform: rotate(360deg) scale(1);
}

.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*------------------------------
header
-------------------------------*/
.header {
  height: auto;
  padding: 6px 0;
  position: sticky;
  top: 0;
  background: #f6e7de;
  z-index: 50;
}

.header__inner {
  height: inherit;
  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;
  gap: 8px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .header__inner {
    padding-inline: 40px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__logo-image {
  width: 100px;
}

.logo-main {
  font-family: "Allura", cursive;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #4a3a34;
}

.logo-sub {
  font-size: 12px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__icon {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background: #c3aa44;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer-icon__bar:nth-child(2) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.drawer-icon__bar:nth-child(3) {
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
}

.drawer-content {
  background: #f2d9cf;
}

.header__nav {
  min-width: 270px;
  width: 70%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 112px;
  padding: 32px 20px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 1024px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  padding-block: 18px;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav-link {
    font-size: 16px;
    gap: 4px;
  }
}

.header__nav-icon {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.header__nav-link:active {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  opacity: 0.85;
  background-color: rgba(255, 255, 255, 0.3);
}
.header__nav-link:active .header__nav-icon {
  -webkit-transform: rotate(15deg) scale(1.05);
          transform: rotate(15deg) scale(1.05);
}

.header__nav-link:hover {
  color: #c93a3e;
}
.header__nav-link:hover .header__nav-icon {
  -webkit-transform: rotate(180deg) scale(1.08);
          transform: rotate(180deg) scale(1.08);
}

/*------------------------------
fv
-------------------------------*/
.fv {
  position: relative;
}

.fv__inner {
  position: relative;
}
.fv__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 231, 222, 0.1)), color-stop(55%, rgba(246, 231, 222, 0.35)), to(rgba(246, 231, 222, 0.6)));
  background: linear-gradient(to bottom, rgba(246, 231, 222, 0.1) 0%, rgba(246, 231, 222, 0.35) 55%, rgba(246, 231, 222, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.fv__image img {
  display: block;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .fv__image img {
    height: 80vh;
  }
}

.fv__catch {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding-inline: 20px;
  text-align: center;
  color: #a66a3f;
  opacity: 0;
  -webkit-animation: fvFadeUp 1.2s ease 0.3s forwards;
          animation: fvFadeUp 1.2s ease 0.3s forwards;
}

.fv__catch-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
}
@media (min-width: 1024px) {
  .fv__catch-sub {
    font-size: 16px;
  }
}

.fv__catch-main {
  margin-top: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 16px rgba(253, 250, 247, 0.7);
}
@media (min-width: 1024px) {
  .fv__catch-main {
    font-size: 52px;
  }
}

.fv__catch-lead {
  margin-top: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #4a3a34;
}
@media (min-width: 1024px) {
  .fv__catch-lead {
    font-size: 16px;
  }
}

.fv__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #a66a3f;
  text-decoration: none;
}

.fv__scroll-text {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.fv__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(195, 170, 68, 0.4);
  position: relative;
  overflow: hidden;
}
.fv__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c3aa44;
  -webkit-animation: fvScroll 2s ease-in-out infinite;
          animation: fvScroll 2s ease-in-out infinite;
}

@-webkit-keyframes fvFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, calc(-50% + 24px));
            transform: translate(-50%, calc(-50% + 24px));
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes fvFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, calc(-50% + 24px));
            transform: translate(-50%, calc(-50% + 24px));
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes fvScroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes fvScroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/*------------------------------
concept
-------------------------------*/
.concept {
  position: relative;
  background: #f6e7de;
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #c93a3e;
  border-radius: 50%;
  opacity: 0.1;
  top: -80px;
  right: -80px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept::before {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .concept::before {
    width: 400px;
    height: 400px;
  }
}
.concept::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 200px 200px 0;
  border-color: transparent transparent #c3aa44 transparent;
  bottom: 0;
  left: 0;
  opacity: 0.14;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept::after {
    border-width: 0 300px 300px 0;
  }
}
@media (min-width: 1024px) {
  .concept::after {
    border-width: 0 400px 400px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept {
    padding-top: 120px;
  }
}
@media (min-width: 1024px) {
  .concept {
    padding-top: 120px;
  }
}

.concept__contents {
  margin-top: 46px;
  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;
  max-width: 400px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .concept__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .concept__image {
    width: 55%;
  }
}
@media (min-width: 1024px) {
  .concept__image {
    width: 55%;
  }
}
.concept__image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .concept__text {
    width: 45%;
    max-width: 480px;
  }
}
@media (min-width: 1024px) {
  .concept__text {
    width: 45%;
    max-width: 480px;
  }
}

.concept__text-main {
  font-weight: 600;
}

.concept__text-sub {
  margin-top: 16px;
}

/*------------------------------
feature
-------------------------------*/
.feature {
  background: #f2d9cf;
}

.feature__contents {
  margin-top: 46px;
}

.feature__cards {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .feature__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .feature__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.feature__card {
  width: 100%;
  max-width: 367px;
  border-radius: 16px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fdfaf7;
  border: 1px solid rgba(166, 106, 63, 0.12);
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.feature__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 14px 34px rgba(166, 106, 63, 0.16);
          box-shadow: 0 14px 34px rgba(166, 106, 63, 0.16);
}

.feature__card-image img {
  width: 100%;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 12px 12px 0 0;
  display: block;
}

.feature__card-text {
  margin-top: 20px;
}

.feature__text-main {
  font-size: 18px;
  font-weight: bold;
}

.feature__text-sub {
  margin-top: 10px;
}

/*------------------------------
slide
-------------------------------*/
.gallery {
  background: #f6e7de;
}

.gallery__inner {
  padding-inline: 20px;
}

.gallery__slider {
  margin-top: 46px;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__slider {
    max-width: 75%;
  }
}
@media (min-width: 1024px) {
  .gallery__slider {
    max-width: 900px;
  }
}

.gallery__swiper {
  padding-bottom: 32px;
}

.gallery-card {
  border-radius: 16px;
  border: 1px solid rgba(195, 170, 68, 0.6);
  background: #fdfaf7;
  -webkit-box-shadow: 0 10px 28px rgba(166, 106, 63, 0.14);
          box-shadow: 0 10px 28px rgba(166, 106, 63, 0.14);
  padding: 12px;
}

.gallery-card__image {
  text-align: center;
}
.gallery-card__image img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0;
}
.gallery__pagination .swiper-pagination-bullet {
  background: #c3aa44;
}

.gallery__prev,
.gallery__next {
  color: #c3aa44;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 250, 247, 0.7);
  -webkit-box-shadow: 0 2px 10px rgba(166, 106, 63, 0.18);
          box-shadow: 0 2px 10px rgba(166, 106, 63, 0.18);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.gallery__prev::after,
.gallery__next::after {
  font-size: 18px;
  font-weight: bold;
}
.gallery__prev:hover,
.gallery__next:hover {
  background: #fdfaf7;
}

/*------------------------------
menu
-------------------------------*/
.menu {
  background: #f2d9cf;
}

.menu__contents {
  margin-top: 46px;
}

.menu__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.menu__item {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.menu__item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 32px rgba(139, 79, 56, 0.12);
          box-shadow: 0 12px 32px rgba(139, 79, 56, 0.12);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .menu__item {
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .menu__item {
    max-width: none;
  }
}

.menu__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #fdfaf7;
  border: 1px solid rgba(166, 106, 63, 0.15);
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.12);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.12);
}

.menu-item__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
}
.menu-item__image img {
  width: 100px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.menu__item:hover .menu-item__image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.menu-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.menu-item__text-title {
  font-size: 16px;
  font-weight: 500;
}

.menu-item__text-price {
  margin-top: 8px;
  font-size: 16px;
  color: #a66a3f;
}

.menu__button {
  text-align: center;
  margin-top: 42px;
}

.menu__more-button {
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  vertical-align: top;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.menu__more-button:hover, .menu__more-button:active {
  color: #c93a3e;
}

/*------------------------------
news&blog
-------------------------------*/
.news {
  background: #f6e7de;
}

.news__inner {
  max-width: 1080px;
}

.news__card {
  padding: 40px 20px;
  background: #fdfaf7;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.12);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.12);
}

.news__contents {
  margin-top: 46px;
}

.news__list {
  text-align: center;
}

.news__item {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.news__item:hover {
  background-color: rgba(166, 106, 63, 0.12);
}

.news__item + .news__item {
  border-top: 1px solid rgba(166, 106, 63, 0.12);
  padding-top: 8px;
}

.news-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 8px;
}

.news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.news-card__category {
  font-size: 12px;
  padding: 1px 10px 2px;
  color: #fdfaf7;
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
}
.news-card__category.is-news {
  background: #c3aa44;
}
.news-card__category.is-blog {
  background: #f3b7a3;
}

.news__button {
  text-align: right;
  margin-top: 24px;
}

.news__more-button {
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  vertical-align: top;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.news__more-button:hover, .news__more-button:active {
  color: #c93a3e;
}

/*------------------------------
reserve
-------------------------------*/
.reserve {
  background: #f2c8bc;
}

.reserve__contents {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .reserve__contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reserve__contents {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reserve-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 106, 63, 0.18);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  padding: 28px 20px;
  min-height: 168px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.reserve-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(166, 106, 63, 0.32);
  background: rgba(255, 255, 255, 0.55);
  -webkit-box-shadow: 0 10px 24px rgba(166, 106, 63, 0.12);
          box-shadow: 0 10px 24px rgba(166, 106, 63, 0.12);
}

.reserve-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
}

.reserve-card__icon--line .reserve-card__svg {
  width: 30px;
  height: 30px;
  fill: #a66a3f;
  -webkit-transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reserve-card:hover .reserve-card__icon--line .reserve-card__svg {
  fill: #06c755;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.reserve-card--web .reserve-card__svg {
  width: 30px;
  height: 30px;
  fill: #a66a3f;
  -webkit-transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reserve-card:hover .reserve-card__icon--web .reserve-card__svg {
  fill: #c93a3e;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.reserve-card__label {
  font-size: 12px;
  color: #c93a3e;
}

.reserve-card__main {
  margin-top: 8px;
}

.reserve-card__sub {
  margin-top: 8px;
  font-size: 14px;
  color: #8a6e66;
}

.reserve-contact {
  border: 1px solid rgba(166, 106, 63, 0.18);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  padding: 28px 20px;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .reserve-contact {
    grid-column: 1/-1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1024px) {
  .reserve-contact {
    grid-column: 1/-1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.reserve-contact:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(166, 106, 63, 0.32);
  background: rgba(255, 255, 255, 0.55);
  -webkit-box-shadow: 0 10px 24px rgba(166, 106, 63, 0.12);
          box-shadow: 0 10px 24px rgba(166, 106, 63, 0.12);
}

.reserve-card__icon--mail .reserve-card__svg {
  width: 30px;
  height: 30px;
  fill: #a66a3f;
  -webkit-transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease;
  transition: fill 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.reserve-contact:hover .reserve-card__icon--mail .reserve-card__svg {
  fill: #c93a3e;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.reserve-contact__text {
  font-size: 14px;
  color: #8a6e66;
  margin-top: 8px;
}

/*------------------------------
access
-------------------------------*/
.access {
  background: #f6e7de;
}

.access__contents {
  max-width: 460px;
  margin-top: 46px;
  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 (min-width: 768px) and (max-width: 1023px) {
  .access__contents {
    max-width: 560px;
  }
}
@media (min-width: 1024px) {
  .access__contents {
    max-width: 640px;
  }
}

.access__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 16px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .access__image img {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .access__image img {
    height: 500px;
  }
}

.access__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: 24px;
}

.access__item {
  padding-bottom: 12px;
  border-bottom: 2px solid #c3aa44;
}
@media (min-width: 1024px) {
  .access__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.access__item-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  background: #c3aa44;
  color: #fdfaf7;
  padding: 4px 16px;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .access__item-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.access__item-text {
  margin-top: 8px;
  padding-inline: 4px;
}
@media (min-width: 1024px) {
  .access__item-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

.access__map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 16px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .access__map iframe {
    height: 360px;
  }
}
@media (min-width: 1024px) {
  .access__map iframe {
    height: 380px;
  }
}

/*------------------------------
footer
-------------------------------*/
.footer {
  background: #8f6f67;
  padding: 56px 0 28px;
  text-align: center;
  color: #fdfaf7;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 72px 0 32px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 72px 0 32px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fdfaf7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.85;
}

.footer__logo-main {
  font-family: "Allura", cursive;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fdfaf7;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__logo-main {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  .footer__logo-main {
    font-size: 44px;
  }
}

.footer__logo-sub {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__logo-sub {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .footer__logo-sub {
    font-size: 12px;
  }
}

.footer__sns {
  margin-top: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fdfaf7;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.footer__sns:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #c3aa44;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__sns {
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .footer__sns {
    margin-top: 32px;
  }
}

.footer__logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.footer__logo-svg {
  width: 16px;
  height: 16px;
  fill: #fdfaf7;
}

.footer__logo-text {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fdfaf7;
}

.privacy-policy__text {
  font-size: 12px;
  margin-top: 28px;
}

.footer__copyright {
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__copyright {
    margin-top: 16px;
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .footer__copyright {
    margin-top: 16px;
    font-size: 12px;
  }
}

/*------------------------------
voice（お客様の声）
-------------------------------*/
.voice {
  background: #fdfaf7;
}

.voice__list {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .voice__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .voice__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.voice__card {
  position: relative;
  background: #fdfaf7;
  border: 1px solid rgba(166, 106, 63, 0.12);
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
  padding: 34px 22px 22px;
}
.voice__card::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 16px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
  color: #c3aa44;
  opacity: 0.5;
}

.voice__text {
  font-size: 14px;
  line-height: 1.9;
  color: #4a3a34;
  letter-spacing: 0.03em;
}

.voice__author {
  margin-top: 16px;
  text-align: right;
  font-size: 13px;
  color: #a66a3f;
  letter-spacing: 0.06em;
}

.voice__note {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: #8a6e66;
}
.voice__note a {
  color: #c3aa44;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*------------------------------
faq（よくある質問）
-------------------------------*/
.faq {
  background: #f6e7de;
}

.faq__list {
  margin-top: 46px;
  margin-inline: auto;
  max-width: 760px;
  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;
}

.faq__item {
  background: #fdfaf7;
  border: 1px solid rgba(166, 106, 63, 0.12);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 14px rgba(166, 106, 63, 0.06);
          box-shadow: 0 4px 14px rgba(166, 106, 63, 0.06);
  overflow: hidden;
}

.faq__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #a66a3f;
  letter-spacing: 0.04em;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c3aa44), to(#c3aa44)), -webkit-gradient(linear, left top, left bottom, from(#c3aa44), to(#c3aa44));
  background: linear-gradient(#c3aa44, #c3aa44), linear-gradient(#c3aa44, #c3aa44);
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item[open] .faq__q::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.faq__a {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #8a6e66;
  letter-spacing: 0.03em;
}

/*------------------------------
floating reserve（スマホ追従予約ボタン）
-------------------------------*/
.floating-reserve {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c93a3e;
  color: #fdfaf7;
  -webkit-box-shadow: 0 6px 18px rgba(201, 58, 62, 0.35);
          box-shadow: 0 6px 18px rgba(201, 58, 62, 0.35);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.floating-reserve:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(201, 58, 62, 0.45);
          box-shadow: 0 10px 24px rgba(201, 58, 62, 0.45);
}
@media (min-width: 1024px) {
  .floating-reserve {
    right: 24px;
    bottom: 24px;
    width: 66px;
    height: 66px;
  }
}

.floating-reserve__icon {
  width: 26px;
  height: 26px;
  fill: #fdfaf7;
}
@media (min-width: 1024px) {
  .floating-reserve__icon {
    width: 28px;
    height: 28px;
  }
}

.floating-reserve__text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.allmenu {
  padding-block: 80px;
  background: #fdfaf7;
}

.allmenu__icon {
  width: 36px;
  height: 36px;
}

.allmenu-section__title {
  font-size: 36px;
}

.allmenu__tabs {
  border-bottom: 1px solid #f2d9cf;
  margin-block: 40px;
}

.allmenu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.allmenu__lists::-webkit-scrollbar {
  display: none;
}

.allmenu__link {
  display: block;
  padding: 11px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #8a6e66;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
}
.allmenu__link:hover {
  color: #5b4742;
}
.allmenu__link.is-active {
  color: #c93a3e;
  border-bottom-color: #c93a3e;
  font-weight: 500;
}

.allmenu__contents {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .allmenu__contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .allmenu__contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.allmenu__content {
  width: 100%;
  max-width: 480px;
}
.allmenu__content.is-hidden {
  display: none;
}

.allmenu__card {
  background: #fdfaf7;
  border: 0.5px solid #f2d9cf;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.allmenu__card img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.allmenu__card-body {
  padding: 14px 16px 20px;
}

.menu-card__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #c93a3e;
  background: #f6e7de;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.menu-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #4a3a34;
  line-height: 1.5;
  margin-bottom: 8px;
}

.menu-card__text {
  font-size: 14px;
  color: #8a6e66;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.menu-card__time {
  font-size: 13px;
  color: #8a6e66;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.menu-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.menu-card__price-num {
  font-size: 16px;
  font-weight: 500;
  color: #a66a3f;
  letter-spacing: 0.05em;
}

.menu-card__price-tax {
  font-size: 11px;
  color: #8a6e66;
}

/*------------------------------
ticket（回数券）
-------------------------------*/
.allmenu__content--ticket {
  max-width: 760px;
  grid-column: 1/-1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.ticket-card {
  background: #fdfaf7;
  border: 1px solid rgba(195, 170, 68, 0.5);
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
  padding: 24px 20px;
}

.ticket-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(195, 170, 68, 0.3);
}

.ticket-card__name {
  font-size: 20px;
  font-weight: 600;
  color: #a66a3f;
  letter-spacing: 0.04em;
}

.ticket-card__min {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  color: #8a6e66;
  border: 1px solid #c3aa44;
  border-radius: 999px;
  padding: 2px 12px;
  white-space: nowrap;
}

.ticket-card__regular {
  margin-top: 12px;
  font-size: 13px;
  color: #8a6e66;
}

.ticket-card__rows {
  margin-top: 10px;
  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;
}

.ticket-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 14px;
  background: #f6e7de;
  border-radius: 10px;
}

.ticket-card__count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fdfaf7;
  background: #a66a3f;
  border-radius: 8px;
  padding: 4px 12px;
  min-width: 50px;
  text-align: center;
}

.ticket-card__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ticket-card__old {
  font-size: 13px;
  color: #8a6e66;
  text-decoration: line-through;
}

.ticket-card__new {
  font-size: 20px;
  font-weight: 700;
  color: #a66a3f;
  letter-spacing: 0.03em;
}

.ticket-card__save {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #c93a3e;
  background: #fdfaf7;
  border: 1px solid #c3aa44;
  border-radius: 999px;
  padding: 3px 12px;
}

/*------------------------------
option（オプションメニュー）
-------------------------------*/
.allmenu__content--option {
  max-width: 760px;
  grid-column: 1/-1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.option-card {
  background: #fdfaf7;
  border: 1px solid rgba(195, 170, 68, 0.5);
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
          box-shadow: 0 8px 20px rgba(166, 106, 63, 0.08);
  padding: 24px 20px;
}

.option-card__heading {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #a66a3f;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(195, 170, 68, 0.3);
}

.option-group {
  margin-top: 20px;
}

.option-group__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #a66a3f;
  background: #f6e7de;
  padding: 6px 14px;
  border-radius: 6px;
}

.option-list {
  margin-top: 4px;
}

.option-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px dotted rgba(166, 106, 63, 0.3);
}

.option-item__name {
  font-size: 15px;
  color: #4a3a34;
  letter-spacing: 0.04em;
}

.option-item__note {
  margin-left: 8px;
  font-size: 12px;
  color: #8a6e66;
}

.option-item__price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  color: #a66a3f;
  letter-spacing: 0.03em;
}

/*------------------------------
menu-flow（施術の流れ）
-------------------------------*/
.menu-flow {
  margin-top: 14px;
  padding: 12px 14px;
  background: #f6e7de;
  border-left: 3px solid #c3aa44;
  border-radius: 0 8px 8px 0;
}

.menu-flow__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a66a3f;
  margin-bottom: 6px;
}

.menu-flow__steps {
  font-size: 13px;
  line-height: 1.9;
  color: #4a3a34;
  letter-spacing: 0.03em;
}

.menu-flow__arrow {
  color: #c3aa44;
  margin-inline: 6px;
  font-weight: 700;
}

/*------------------------------
category head（カテゴリ章見出し）
-------------------------------*/
.allmenu__head {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 24px;
}

.allmenu__head--ticket {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.allmenu__head--option {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.allmenu__head-en {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #c3aa44;
}

.allmenu__head-jp {
  display: inline-block;
  position: relative;
  margin-top: 4px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a66a3f;
}
.allmenu__head-jp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #c3aa44;
}

/*------------------------------
page-hero（記事一覧・個別記事 共通）
-------------------------------*/
@-webkit-keyframes heroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes iconSpin {
  from {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.8);
            transform: rotate(0deg) scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}
@keyframes iconSpin {
  from {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.8);
            transform: rotate(0deg) scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}
.page-hero {
  background: #f2d9cf;
  text-align: center;
  padding: 56px 20px 48px;
  border-bottom: 1px solid rgba(195, 170, 68, 0.2);
}

.page-hero__title {
  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;
  gap: 12px;
  font-size: 26px;
  color: #a66a3f;
  -webkit-animation: heroFadeIn 0.7s ease both;
          animation: heroFadeIn 0.7s ease both;
}
.page-hero__title .icon {
  width: 32px;
  height: 32px;
  opacity: 1;
  -webkit-animation: iconSpin 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
          animation: iconSpin 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.page-hero__sub {
  margin-top: 10px;
  font-size: 13px;
  color: #8a6e66;
  letter-spacing: 0.1em;
  -webkit-animation: heroFadeIn 0.7s ease 0.2s both;
          animation: heroFadeIn 0.7s ease 0.2s both;
}

/*------------------------------
news-index（記事一覧ページ）
-------------------------------*/
.news-index {
  background: #fdfaf7;
}

.news-index__inner {
  max-width: 720px;
}

.news-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-filter__btn {
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 999px;
  border: 1px solid #c3aa44;
  color: #a66a3f;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  font-family: "Noto Serif JP", serif;
}
.news-filter__btn:hover, .news-filter__btn.is-active {
  background: #c3aa44;
  color: #fdfaf7;
}

.news-index__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-index__item {
  border-bottom: 1px solid rgba(166, 106, 63, 0.12);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.news-index__item:hover {
  background-color: rgba(166, 106, 63, 0.06);
}

.news-index-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 8px;
  gap: 8px;
}

.news-index-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.news-index-card__title {
  font-size: 15px;
  line-height: 1.7;
  color: #4a3a34;
}

/*------------------------------
post（個別記事ページ）
-------------------------------*/
.post {
  background: #fdfaf7;
}

.post__inner {
  max-width: 720px;
}

.post__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(195, 170, 68, 0.3);
}

.post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.post__title {
  font-size: 22px;
  font-weight: 700;
  color: #4a3a34;
  line-height: 1.7;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post__title {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .post__title {
    font-size: 26px;
  }
}

.post__body {
  line-height: 1.9;
  color: #4a3a34;
}
.post__body h2 {
  font-size: 18px;
  font-weight: 700;
  color: #a66a3f;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid #c3aa44;
}
.post__body p {
  margin-bottom: 24px;
}
.post__body img {
  width: 100%;
  border-radius: 12px;
  margin-block: 32px;
}

.post__nav {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(195, 170, 68, 0.3);
}

.post__nav-back {
  font-size: 14px;
  color: #a66a3f;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.post__nav-back:hover {
  color: #c93a3e;
}

.post__check-list {
  margin-bottom: 24px;
  padding-left: 8px;
  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;
}
.post__check-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.post__check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c3aa44;
  font-size: 12px;
  top: 4px;
}

.post__campaign-lead {
  font-size: 14px;
  color: #a66a3f;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px !important;
}

.post__price {
  margin-bottom: 20px !important;
}

.post__price-old {
  font-size: 14px;
  color: #8a6e66;
  text-decoration: line-through;
}

.post__price-new {
  font-size: 18px;
  font-weight: 700;
  color: #c93a3e;
}

.post__reserve-links {
  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;
  margin-top: 40px;
  margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post__reserve-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.post__reserve-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post__reserve-btn--line {
  background: #06c755;
  color: #fdfaf7;
}
.post__reserve-btn--line:hover {
  opacity: 0.85;
}
.post__reserve-btn--web {
  background: #c93a3e;
  color: #fdfaf7;
}
.post__reserve-btn--web:hover {
  opacity: 0.85;
}