@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-violet: #4d54c9;
  --color-violet-rgb: 77, 84, 201;
  --color-pale-navy: #6390df;
  --color-pale-navy-rgb: 99, 144, 223;
  --color-pale-blue: #4e89c2;
  --color-pale-blue-rgb: 78, 137, 194;
  --color-royal-blue: #365fc9;
  --color-royal-blue-rgb: 54, 95, 201;
  --color-violet-blue: #3f50cf;
  --color-violet-blue-rgb: 63, 80, 207;
  --color-tiffany-blue: #6edad1;
  --color-tiffany-blue-rgb: 110, 218, 209;
  --color-sky-blue: #00a4e1;
  --color-sky-blue-rgb: 0, 164, 225 --color-navy-white: #dfe3ef;
  --color-navy-white-rgb: 223, 227, 239;
  --color-blue-white: #f4f6fc;
  --color-blue-white-rgb: 244, 246, 252;
  --color-blue-grey-light: #bdc1cd;
  --color-blue-grey-light-rgb: 189, 193, 205;
  --color-blue-grey-dark: #333;
  --color-blue-grey-dark-rgb: 51, 51, 51;
  --color-yellow: #f4cf00;
  --color-yellow-rgb: 244, 207, 0;
  --color-yellow-green: #b8e26f;
  --color-yellow-green-rgb: 184, 226, 111;
  --color-cobalt-green: #4dd38b;
  --color-cobalt-green-rgb: 77, 211, 139;
  --color-peacock-green: #0ca18d;
  --color-peacock-green-rgb: 12, 161, 141;
  --color-emerald: #30c898;
  --color-emerald-rgb: 48, 200, 152;
  --color-grass: #18a711;
  --color-grass-rgb: 24, 167, 17;
  --color-mint: #0f9b60;
  --color-mint-rgb: 15, 155, 96;
  --color-mint-white: #e1efea;
  --color-mint-white-rgb: 225, 239, 234;
  --color-green-white: #f3fcf9;
  --color-green-white-rgb: 243, 252, 249;
  --color-green-grey-light: #bdcdc2;
  --color-green-grey-light-rgb: 189, 205, 194;
  --color-green-grey-dark: #4c5650;
  --color-green-grey-dark-rgb: 76, 86, 80;
  --color-lavender: #9b87e6;
  --color-lavender-rgb: 155, 135, 230;
  --color-cherry: #eb64b4;
  --color-cherry-rgb: 235, 100, 180;
  --color-peach: #f0e3ea;
  --color-peach-rgb: 240, 227, 234;
  --color-peach-white: #fff7fb;
  --color-peach-white-rgb: 255, 247, 251;
  --color-cherry-red: #d03767;
  --color-cherry-red-rgb: 208, 55, 103;
  --color-ruby: #b82054;
  --color-ruby-rgb: 184, 32, 84;
  --color-rose: #cc4874;
  --color-rose-rgb: 204, 72, 116;
  --color-raspberry: #c841a1;
  --color-raspberry-rgb: 200, 65, 161;
  --color-pink-grey-light: #cdbdc6;
  --color-pink-grey-light-rgb: 205, 189, 198;
  --color-pink-grey-dark: #555053;
  --color-pink-grey-dark-rgb: 85, 80, 83;
}

body:where([data-theme=aqua]) {
  --color-bg: var(--color-white);
  --color-bg-rgb: var(--color-navy-white-rgb);
  --color-bg-light: var(--color-blue-white);
  --color-bg-light-rgb: var(--color-blue-white-rgb);
  --color-bg-accent: var(--color-sky-blue);
  --color-bg-accent-rgb: var(--color-sky-blue-rgb);
  --color-text: var(--color-blue-grey-dark);
  --color-text-rgb: var(--color-blue-grey-dark-rgb);
  --color-text-accent: var(--color-sky-blue);
  --color-text-accent-rgb: var(--color-sky-blue-rgb);
  --color-text-accent2: var(--color-yellow);
  --color-text-accent2-rgb: var(--color-yellow-rgb);
  --color-text-contrast: var(--color-white);
  --color-text-contrast-rgb: var(--color-white-rgb);
  --color-gradation-primary-start: var(--color-tiffany-blue);
  --color-gradation-primary-start-rgb: var(--color-tiffany-blue-rgb);
  --color-gradation-primary-end: var(--color-pale-navy);
  --color-gradation-primary-end-rgb: var(--color-pale-navy-rgb);
  --color-gradation-secondary-start: var(--color-violet);
  --color-gradation-secondary-start-rgb: var(--color-violet-rgb);
  --color-gradation-secondary-end: var(--color-pale-navy);
  --color-gradation-secondary-end-rgb: var(--color-pale-navy-rgb);
  --color-gradation-tertiary-start: var(--color-pale-blue);
  --color-gradation-tertiary-start-rgb: var(--color-pale-blue-rgb);
  --color-gradation-tertiary-end: var(--color-violet-blue);
  --color-gradation-tertiary-end-rgb: var(--color-violet-blue-rgb);
  --color-shadow-light-side: var(--color-white);
  --color-shadow-light-side-rgb: var(--color-white-rgb);
  --color-shadow-dark-side: var(--color-blue-grey-light);
  --color-shadow-dark-side-rgb: var(--color-blue-grey-light-rgb);
}

:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-number: "Jost", sans-serif;
  --font-jost: "Jost", sans-serif;
  --font-mincho: "Noto Serif JP", serif;
  --font-icon: "icomoon";
  --font-size-xxs: 1rem;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

:root {
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  --main-column-width: 100%;
  --follow-bar-height: 67px;
  --shadow-size-sm: 2.5px;
  --shadow-size-md: 5px;
  --shadow-size-lg: 10px;
  --shadow-light-side-sm: calc(var(--shadow-size-sm) * -1) calc(var(--shadow-size-sm) * -1) calc(var(--shadow-size-sm) * 2) calc(var(--shadow-size-sm) * 0.5) rgba(var(--color-shadow-light-side-rgb), 0.85);
  --shadow-dark-side-sm: var(--shadow-size-sm) var(--shadow-size-sm) calc(var(--shadow-size-sm) * 2) calc(var(--shadow-size-sm) * 0.5) rgba(var(--color-shadow-dark-side-rgb), 0.95);
  --shadow-light-side-md: calc(var(--shadow-size-md) * -1) calc(var(--shadow-size-md) * -1) calc(var(--shadow-size-md) * 2) calc(var(--shadow-size-md) * 0.5) rgba(var(--color-shadow-light-side-rgb), 0.85);
  --shadow-dark-side-md: var(--shadow-size-md) var(--shadow-size-md) calc(var(--shadow-size-md) * 2) calc(var(--shadow-size-md) * 0.5) rgba(var(--color-shadow-dark-side-rgb), 0.95);
  --shadow-light-side-lg: calc(var(--shadow-size-lg) * -1) calc(var(--shadow-size-lg) * -1) calc(var(--shadow-size-lg) * 2) calc(var(--shadow-size-lg) * 0.5) rgba(var(--color-shadow-light-side-rgb), 0.85);
  --shadow-dark-side-lg: var(--shadow-size-lg) var(--shadow-size-lg) calc(var(--shadow-size-lg) * 2) calc(var(--shadow-size-lg) * 0.5) rgba(var(--color-shadow-dark-side-rgb), 1);
  --box-shadow-in-sm: inset var(--shadow-light-side-sm), inset var(--shadow-dark-side-sm);
  --box-shadow-in-md: inset var(--shadow-light-side-md), inset var(--shadow-dark-side-md);
  --box-shadow-in-lg: inset var(--shadow-light-side-lg), inset var(--shadow-dark-side-lg);
  --box-shadow-out-sm: var(--shadow-light-side-sm), var(--shadow-dark-side-sm);
  --box-shadow-out-md: var(--shadow-light-side-md), var(--shadow-dark-side-md);
  --box-shadow-out-lg: var(--shadow-light-side-lg), var(--shadow-dark-side-lg);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  color: var(--color-text);
  font-size: var(--font-size-md);
  font-family: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: var(--color-bg);
}

@media (max-width: 525px) {
  body {
    font-size: var(--font-size-sm);
  }
}
.wow {
  animation-duration: 1.15s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

.wow.fadeIn,
.wow.fadeInUp,
.wow.fadeInLeft,
.wow.fadeInRight {
  opacity: 0;
}

.slick-slide {
  outline: none;
}

.simplebar-content-wrapper {
  outline: none;
}

.c-anchor {
  --header-height: 0px;
  --anchor-space: 0px;
  padding-top: calc(var(--header-height) + var(--anchor-space));
  margin-top: calc((var(--header-height) + var(--anchor-space)) * -1);
}

.c-board {
  --board-color: var(--color-bg);
  background-color: var(--board-color);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-out-sm);
}

.c-board--light {
  --board-color: var(--color-bg-light);
}

.c-board--half-light {
  background-image: linear-gradient(to bottom, rgba(var(--color-bg-light-rgb), 0.55), rgba(var(--color-bg-light-rgb), 0.55)), linear-gradient(to bottom, var(--color-bg), var(--color-bg));
}

.c-board--top-cut {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-board--bottom-cut {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-box {
  padding: calc(16px + var(--shadow-size-md)) calc(17px + var(--shadow-size-md)) calc(18px + var(--shadow-size-md));
  background-color: rgba(var(--color-bg-rgb), 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-in-md);
}

.c-box--out {
  box-shadow: var(--box-shadow-out-md);
}

.c-box--half-light {
  background-color: none;
  background-image: linear-gradient(to bottom, rgba(var(--color-bg-light-rgb), 0.45), rgba(var(--color-bg-light-rgb), 0.45)), linear-gradient(to bottom, var(--color-bg), var(--color-bg));
}

.c-box--light {
  background-color: rgba(var(--color-bg-light-rgb), 1);
}

.c-box__heading01 {
  margin-bottom: 0.5em;
  font-size: var(--font-size-lg);
  color: var(--color-text-accent);
  text-align: center;
}

.c-box__heading02 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1em 0.3em;
  margin-bottom: 1em;
  font-size: var(--font-size-lg);
  line-height: 1.3;
  text-align: center;
  background-color: var(--color-bg);
  border-radius: 10em;
  box-shadow: var(--box-shadow-out-md);
}

.c-box__heading03 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 8.75em;
  min-height: 2.25em;
  padding: 0.4em 2em 0.2em;
  margin-right: auto;
  margin-bottom: 1em;
  margin-left: auto;
  font-size: var(--font-size-lg);
  line-height: 1.3;
  color: var(--color-text-contrast);
  text-align: center;
  background-image: linear-gradient(to right, var(--color-gradation-secondary-start), var(--color-gradation-secondary-end));
  border-radius: 10em;
  box-shadow: var(--box-shadow-out-md);
}

.c-button-primary {
  position: relative;
  z-index: 0;
  display: block;
  padding: 0.75em 1em;
  overflow: hidden;
  font-size: var(--font-size-sm);
  line-height: 1;
  color: var(--color-text-contrast);
  text-align: center;
  background-color: #886d5d;
}

@media (min-width: 1025px) {
  .c-button-primary {
    font-size: var(--font-size-md);
  }
}
.c-button-primary--square {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
}

.c-list {
  --gradation-direction: to right;
  --gradation-color1: var(--color-gradation-secondary-start);
  --gradation-color2: var(--color-gradation-secondary-end);
  width: fit-content;
  line-height: 1.8;
}

.c-list--ordered {
  counter-reset: list;
}

.c-list__item {
  position: relative;
  padding-left: 1.7em;
}

.c-list__item:where(:nth-of-type(n + 2)) {
  margin-top: 0.25em;
}

.c-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gradation-color1);
}

:where(.c-list--dot > .c-list__item)::before {
  font-size: 1.25em;
  line-height: 1.35;
  content: "・";
}

:where(.c-list--ordered > .c-list__item) {
  counter-increment: list;
}

:where(.c-list--ordered > .c-list__item)::before {
  margin-left: 0.25em;
  line-height: 1.5;
  content: counter(list) ".";
}

:where(.c-list--check > .c-list__item)::before {
  font-family: var(--font-icon);
  font-size: 1.25em;
  line-height: 1.2;
  content: "\e919";
}

:where(.c-list--note > .c-list__item)::before {
  margin-left: 0.1em;
  font-size: 1.12em;
  line-height: 1.4;
  content: "※";
}

.c-list__text {
  display: block;
  color: transparent;
  background-image: linear-gradient(var(--gradation-direction), var(--gradation-color1), var(--gradation-color2));
  -webkit-background-clip: text;
  background-clip: text;
}

.c-heading-primary {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-heading-primary--vertical {
  writing-mode: vertical-rl;
}

.c-heading-primary__text {
  --gradation-direction: to right;
  position: relative;
  line-height: 1;
}

.c-heading-primary__text--to-top {
  --gradation-direction: to top;
}

.c-heading-primary__text--to-left {
  --gradation-direction: to left;
}

.c-heading-primary__text--to-bottom {
  --gradation-direction: to bottom;
}

.c-heading-primary__text--en {
  display: inline-block;
  font-size: 6.4rem;
  font-family: var(--font-jost);
  font-weight: var(--font-weight-extralight);
  background: linear-gradient(135deg, #f9da00 0%, #def7d2 50%, #2e8ecf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  line-height: 1.3;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.15));
}

@media (min-width: 1025px) {
  .c-heading-primary__text--en {
    font-size: 12rem;
  }
}
.c-heading-primary__text--ja {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #4c2c0d;
  font-size: 2.7rem;
  font-family: var(--font-mincho);
  line-height: 1.5;
}

@media (min-width: 1025px) {
  .c-heading-primary__text--ja {
    font-size: 4.6rem;
  }
}
.c-heading-primary__text--ja:where(:not(:last-child)) {
  margin-block-end: -0.4em;
}

.c-heading-primary__text--ja:where(:not(:first-child)) {
  margin-block-start: 0.6em;
}

.c-history {
  max-width: 100%;
}

.c-history__year {
  padding-right: 1em;
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.c-image-card {
  overflow: hidden;
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-out-md);
}

.c-image-card__image {
  width: 100%;
  height: auto;
}

.c-image-card__body {
  padding: 16px 22px 24px;
  background-color: rgba(var(--color-bg-light-rgb), 0.75);
}

.c-image-card__heading {
  margin-bottom: 0.2em;
  font-size: var(--font-size-lg);
  color: var(--color-text-accent);
  text-align: center;
}

.c-image {
  --border-width: 10px;
  border: var(--border-width) solid transparent;
  border-radius: var(--image-border-radius, var(--radius-md));
  box-shadow: var(--box-shadow-out-md);
}

.c-image--thin {
  --border-width: 5px;
}

.c-image--no-border {
  --border-width: 0;
}

.c-image--square {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-image--circle {
  --image-border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-image--shadow-lg {
  box-shadow: var(--box-shadow-out-lg);
}

.c-menu-list {
  --column-count: 2;
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
  gap: calc(var(--shadow-size-sm) * 4) calc(var(--shadow-size-sm) * 3);
}

.c-menu-list__link {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5em;
  align-items: center;
  min-height: 4.2em;
  padding: 0.65em;
  padding-right: 1em;
  background-color: var(--color-white);
  border: 1px solid #b2a694;
}

.c-menu-list__link::before {
  width: 11px;
  height: 11px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #b2a694;
}

.c-menu-list__icon {
  --icon-size: 1.35em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
}
.c-menu-list__icon img {
  width: 100%;
}

.c-menu-list__text {
  position: relative;
  display: block;
  flex: 1;
  padding-left: 0.65em;
  margin-top: 0.2em;
  line-height: 1.3;
  font-size: var(--font-size-sm);
}

@media (min-width: 1025px) {
  .c-menu-list__text {
    font-size: 2rem;
  }
}
.c-menu-list__icon + .c-menu-list__text {
  padding-left: 0;
}

.c-paragraph {
  line-height: 1.85;
}

:where(.c-paragraph + .c-paragraph) {
  margin-top: 1em;
}

.c-slider-nav {
  --arrow-button-size: 2.8rem;
  --dot-size: 8px;
  --inactive-color: #c4c4c4;
  --active-color: var(--color-bg-accent);
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (min-width: 1025px) {
  .c-slider-nav {
    --arrow-button-size: 6rem;
    --dot-size: 16px;
    gap: 20px;
  }
}
.c-slider-nav button {
  vertical-align: unset;
}

.c-slider-nav__dots {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--dot-size) * 1);
  align-items: center;
  justify-content: center;
}

.c-slider-nav__dots ul,
.c-slider-nav__dots li {
  display: contents;
}

.c-slider-nav__dots li {
  --dot-color: var(--inactive-color);
}

.c-slider-nav__dots li.slick-active {
  --dot-color: var(--active-color);
}

.c-slider-nav__dots button {
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  font-size: 0;
  background-color: var(--dot-color);
  border-radius: 50%;
  transition: background-color 0.15s;
}

.c-slider-nav__dots button:hover {
  --dot-color: var(--active-color);
}

.c-slider-nav__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
  padding: 0;
  font-size: 10px;
  border-radius: 50%;
}

@media (min-width: 1025px) {
  .c-slider-nav__arrow {
    font-size: 18px;
  }
}
.c-step-list {
  --badge-width: 47px;
  --badge-y-gap: 10px;
  --badge-x-gap: 16px;
  --border: linear-gradient(to bottom, var(--color-gradation-secondary-start), var(--color-gradation-secondary-start));
  counter-reset: step-list;
  container-type: inline-size;
}

.c-step-list__item {
  position: relative;
  z-index: 1;
  counter-increment: step-list;
}

@container (width <=360px) {
  .c-step-list__item {
    --badge-width: 37px;
  }
}
.c-step-list__header {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--badge-x-gap);
  align-items: center;
  padding: 12px 0;
}

.c-step-list__header::before {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--badge-width);
  height: var(--badge-width);
  padding-top: 0.15em;
  font-size: calc(var(--badge-width) * 0.46);
  line-height: 1;
  color: var(--color-text-contrast);
  text-align: center;
  content: counter(step-list);
  background-image: linear-gradient(to right, var(--color-gradation-secondary-start), var(--color-gradation-secondary-end));
  border-radius: 50%;
}

.c-step-list__header::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--badge-width);
  content: "";
  background-repeat: no-repeat;
  background-size: 1px calc(50% - (var(--badge-width) / 2 + var(--badge-y-gap)));
}

.c-step-list__item:first-of-type .c-step-list__header::after {
  background-image: var(--border);
  background-position: center bottom;
}

.c-step-list__item:last-of-type .c-step-list__header::after {
  background-image: var(--border);
  background-position: center top;
}

.c-step-list__item:not(:first-of-type, :last-of-type) .c-step-list__header::after {
  background-image: var(--border), var(--border);
  background-position: center top, center bottom;
}

.c-step-list__heading {
  position: relative;
  flex: 1;
  padding-top: 0.1em;
  font-size: var(--font-size-lg);
  line-height: 1.5;
  color: var(--color-text-accent);
}

.c-step-list__image {
  display: block;
  aspect-ratio: 1/0.65;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-out-md);
}

.c-step-list__body {
  position: relative;
  padding-left: calc(var(--badge-width) + var(--badge-x-gap));
}

.c-step-list__item:not(:last-of-type) .c-step-list__body {
  padding-bottom: 16px;
}

.c-step-list__item:not(:last-of-type) .c-step-list__body::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: var(--badge-width);
  content: "";
  background-image: var(--border);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1px 100%;
}

.c-table {
  --padding: var(--container-padding);
  --border-color: rgba(var(--color-text-accent-rgb), 0.35);
  --scroll-bar-height: 12px;
  max-width: 100%;
  padding: calc(var(--shadow-size-md) * 3) 0 calc(var(--shadow-size-md) * 3 + var(--scroll-bar-height));
  overflow: scroll;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 var(--padding), #000 calc(100% - var(--padding)), transparent), linear-gradient(to top, #000 var(--scroll-bar-height), transparent var(--scroll-bar-height));
  mask-image: linear-gradient(to right, transparent, #000 var(--padding), #000 calc(100% - var(--padding)), transparent), linear-gradient(to top, #000 var(--scroll-bar-height), transparent var(--scroll-bar-height));
}

.c-table__inner {
  width: fit-content;
  padding: 0 var(--padding);
}

.c-table__content {
  position: relative;
  width: fit-content;
  min-width: 100%;
  padding: 1em;
  background-color: rgba(var(--color-bg-light-rgb), 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-out-md);
}

.c-table__content > table {
  min-width: 100%;
}

.c-table__content > table > thead > tr > th {
  padding: 1em;
}

.c-table__content > table > thead > tr > th > span {
  display: block;
  width: fit-content;
  min-width: 8.75em;
  min-height: 2.25em;
  padding: 0.35em 1.5em 0.2em;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--font-size-md);
  color: var(--color-text-contrast);
  text-align: center;
  letter-spacing: 0.05em;
  background-image: linear-gradient(to right, var(--color-gradation-secondary-start), var(--color-gradation-secondary-end));
  border-radius: 10em;
  box-shadow: var(--box-shadow-out-sm);
}

.c-table__content > table > tbody > tr > th,
.c-table__content > table > tbody > tr > td {
  border-top: 1px solid var(--border-color);
}

.c-table__content > table > tbody > tr > th {
  min-width: 7em;
  padding: 1em;
  font-size: var(--font-size-md);
  color: var(--color-text-accent);
  white-space: nowrap;
  vertical-align: middle;
}

.c-table__content > table > tbody > tr > td {
  min-width: 16em;
  padding: 1em 1.75em;
}

.c-tel-link {
  display: flex;
  gap: 0.25em;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  font-size: 3.1rem;
  font-family: var(--font-jost);
  line-height: 1;
  color: var(--color-text-accent);
  transition: opacity 0.2s;
}

.c-tel-link:hover {
  opacity: 0.8;
}

.c-term-list {
  --separator-color: rgba(var(--color-text-rgb), 0.35);
  display: grid;
  gap: 0;
}

.c-term-list__item {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45em;
}

.c-term-list__item::after {
  flex-shrink: 0;
  order: 2;
  width: 1.15em;
  height: 1.5em;
  content: "";
  background-image: linear-gradient(to left, var(--separator-color), var(--separator-color) 100%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 1px;
}

.c-term-list__term {
  flex-shrink: 0;
  order: 1;
  width: var(--term-width, 4em);
  color: var(--color-text-accent);
  text-align-last: justify;
}

.c-term-list__description {
  flex-shrink: 1;
  order: 3;
}

.c-text-gradation {
  --gradation-color1: var(--color-gradation-secondary-start);
  --gradation-color2: var(--color-gradation-secondary-end);
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(var(--gradation-direction, to right), var(--gradation-color1), var(--gradation-color2));
  -webkit-background-clip: text;
  background-clip: text;
}

.c-text-gradation--primary {
  --gradation-color1: var(--color-gradation-primary-start);
  --gradation-color2: var(--color-gradation-primary-end);
}

.c-text-gradation--tertiary {
  --gradation-color1: var(--color-gradation-tertiary-start);
  --gradation-color2: var(--color-gradation-tertiary-end);
}

.c-text-gradation--vertical {
  --gradation-direction: to bottom;
  writing-mode: vertical-rl;
}

.c-text-link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.2s;
}

.c-text-link:hover {
  opacity: 0.7;
}

.c-two-column {
  --wrapper-padding: var(--container-padding);
  display: grid;
  gap: 72px;
}

.c-two-column__item {
  --invisible-width: 8.5%;
  --negative-margin: calc((var(--invisible-width) + var(--wrapper-padding)) * -1);
  --image-width: 1.05fr;
  display: grid;
  gap: 6%;
}

.c-two-column__item:nth-child(odd) {
  grid-template-areas: "sub main";
  grid-template-columns: var(--image-width) 1fr;
  margin-left: var(--negative-margin);
}

.c-two-column__item:nth-child(even) {
  grid-template-areas: "main sub";
  grid-template-columns: 1fr var(--image-width);
  margin-right: var(--negative-margin);
}

.c-two-column__main {
  grid-area: main;
}

.c-two-column__sub {
  grid-area: sub;
}

.c-two-column__heading {
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-size: var(--font-size-md);
}

.c-two-column__heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-image: linear-gradient(to right, var(--color-gradation-primary-start), var(--color-gradation-primary-end));
}

:root {
  --container-padding: 19px;
  --container-padding-md: 38px;
}

@media (min-width: 450px) and (max-width: 1024px) {
  :root {
    --container-padding: 8vw;
    --container-padding-md: 16vw;
  }
}
.l-container {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.l-container--md {
  padding-right: var(--container-padding-md);
  padding-left: var(--container-padding-md);
}

:root {
  --follow-z-index: 100;
}

.l-follow {
  --menu-button-width: min(25cqw, 60px);
  container-type: inline-size;
  position: fixed;
  z-index: var(--follow-z-index);
  width: var(--main-column-width);
}

@media (min-width: 1241px) {
  .l-follow {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
@media (max-width: 1240px) {
  .l-follow {
    right: 0;
    top: auto;
    bottom: 0;
  }
}
.l-follow__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .l-follow__list {
    display: none;
  }
}
.l-follow__list::before,
.l-follow__list::after {
  position: absolute;
  inset: 0;
  content: "";
}

.l-follow__list::before {
  z-index: -2;
  background-color: var(--color-bg);
}

.l-follow__list::after {
  z-index: -1;
}

.l-follow__item {
  container-type: inline-size;
  position: relative;
  flex: 1;
  width: 240px;
}

.l-follow__item:not(:first-child)::before {
  --gap: 6px;
  position: absolute;
  top: var(--gap);
  bottom: var(--gap);
  width: 1.5px;
  content: "";
  background-color: #a59586;
  transform: translateX(-50%);
}

.l-follow__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--follow-bar-height);
  padding: 10px 6px;
  line-height: 1;
  white-space: nowrap;
}

.l-follow__icon {
  display: inline-block;
  font-size: min(2.5rem, 42cqw);
  color: #886d5d;
  transition: opacity 0.25s;
}

.l-follow__button:hover .l-follow__icon {
  opacity: 0.7;
}

.l-follow__text {
  color: #886d5d;
  font-size: min(var(--font-size-xs), 19cqw);
  transition: color 0.25s;
}

.l-follow__button:hover .l-follow__text {
  color: #886d5d;
  opacity: 0.7;
}

.l-follow__schedule {
  position: absolute;
  right: 0;
  bottom: calc(var(--follow-bar-height) + 28%);
  left: 0;
  z-index: 3;
  padding: 0 var(--container-padding);
  opacity: 0;
}

.l-follow__schedule__inner {
  display: grid;
  padding: 20px 12px 24px;
  background-color: var(--color-white);
}

.l-follow__schedule__button {
  width: 80%;
  max-width: 240px;
  margin: 24px auto 0;
}

.l-follow__schedule__close {
  position: relative;
  transform: scaleX(1.5);
  transform-origin: center;
}

.l-follow__menu {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.l-follow__menu-button {
  position: fixed;
  right: 0;
  bottom: calc(100dvh - 60px);
  z-index: 4;
  width: var(--menu-button-width);
  aspect-ratio: 1/1;
  padding: calc(var(--shadow-size-md) * 3);
  overflow: hidden;
  display: none;
}

@media (max-width: 1800px) {
  .l-follow__menu-button {
    display: block;
  }
}
@media (min-width: 1025px) and (max-width: 1800px) {
  .l-follow__menu-button {
    bottom: calc(100dvh - 100px);
    width: 100px;
  }
}
.l-follow__sns {
  display: none;
}

@media (max-width: 1024px) {
  .l-follow__sns {
    height: 60px;
    position: fixed;
    top: 0;
    right: 70px;
    display: flex;
    align-items: center;
    column-gap: 10px;
  }
  .l-follow__sns img {
    width: 40px;
  }
}
@media (max-width: 525px) {
  .l-follow__sns img {
    width: 30px;
    margin-top: 10px;
  }
}
.l-footer {
  position: relative;
  padding-top: 12px;
  margin-top: calc(var(--radius-md) * -1.5);
  overflow: hidden;
  background: #f3efe6;
}

.l-footer a {
  color: inherit;
}

.l-footer address {
  font-style: normal;
}

.l-footer__main {
  padding: 46px 0;
}

@media (min-width: 1025px) {
  .l-footer__main {
    display: flex;
    justify-content: space-between;
    max-width: 1273px;
    margin: 0 auto;
    padding: 100px 0;
  }
  .l-footer__main .l-container {
    padding: 0;
  }
  .l-footer__main .l-container:first-child {
    width: 360px;
  }
  .l-footer__main .l-container:last-child {
    width: 719px;
  }
}
@media (min-width: 721px) and (max-width: 1310px) {
  .l-footer__main {
    margin: 0 19px;
  }
}
.l-footer__to-top {
  display: block;
  width: fit-content;
  max-width: 320px;
  margin: auto;
  transition: opacity 0.18s;
}

@media (min-width: 1025px) {
  .l-footer__to-top {
    max-width: none;
    width: 100%;
  }
}
.l-footer__to-top:hover {
  opacity: 0.8;
}

.l-footer__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.l-footer__catch {
  font-size: var(--font-size-sm);
  text-align: center;
}

@media (min-width: 1025px) {
  .l-footer__catch {
    font-size: 1.55rem;
    letter-spacing: 0;
    white-space: nowrap;
    margin-top: 20px;
  }
}
.l-footer__information {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #b2a694;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.l-footer__information a {
  transition: all 0.2s;
}
.l-footer__information a:hover {
  color: var(--color-text-accent);
}

@media (min-width: 1025px) {
  .l-footer__information {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-direction: row;
    row-gap: 0;
    column-gap: 65px;
  }
}
.l-footer__title {
  color: #4b2c0d;
  font-weight: var(--font-weight-medium);
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .l-footer__title {
    margin-bottom: 10px;
  }
}
.l-footer__body {
  font-size: var(--font-size-sm);
  margin: 0;
}

@media (min-width: 1025px) {
  .l-footer__body {
    font-size: var(--font-size-md);
    line-height: 1.8;
  }
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
}

@media (min-width: 1025px) {
  .l-footer__list {
    flex-direction: column;
  }
}
.l-footer__copyright {
  display: block;
  color: var(--color-text-contrast);
  font-size: var(--font-size-xs);
  text-align: center;
  background: linear-gradient(to right, #b99352 0%, #d8c075 50%, #c2a167 100%);
  height: 60px;
  line-height: 60px;
}

@media (max-width: 1024px) {
  .l-footer__copyright {
    min-height: 117px;
    padding: 20px;
    line-height: 1;
  }
}
.l-gallery {
  --slides-to-show: 2.5;
  max-width: 450px;
  height: 100%;
  margin: auto;
  overflow: hidden;
  opacity: 0;
}

.l-gallery.slick-initialized {
  opacity: 1;
  transition: opacity 1.35s 0.35s;
}

.l-gallery .slick-list {
  overflow: visible;
}

.l-gallery__item {
  position: relative;
  height: calc(100vh / var(--slides-to-show)) !important;
  min-height: 220px;
}

.l-gallery__image {
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  max-width: 80%;
  max-height: 80%;
}

.l-gallery__image[data-position="1"] {
  right: 0;
}

.l-gallery__image[data-position="2"] {
  left: 50%;
  transform: translateX(-66%);
}

.l-gallery__image[data-position="3"] {
  left: 50%;
  transform: translateX(-35%);
}

.l-gallery__image[data-position="4"] {
  left: 0;
}

.l-gallery__image[data-position="5"] {
  left: 12%;
}

:root {
  --header-height: 94px;
}

.l-header {
  width: var(--main-column-width);
  height: 60px;
  background-color: rgba(var(--color-white-rgb), 0.8);
  margin: 0 auto;
  position: fixed;
  z-index: 3;
}

@media (min-width: 1025px) {
  .l-header {
    height: 100px;
  }
}
.l-header__inner {
  container-type: inline-size;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .l-header__inner {
    padding: 0 19px;
  }
}
.l-header__heading {
  font-size: 0.8rem;
  line-height: 1.4;
  position: absolute;
  left: 15px;
  top: 5px;
}

.l-header__to-top {
  display: block;
  width: fit-content;
  max-width: 123px;
  height: 100%;
  transition: opacity 0.18s;
  padding-top: 10px;
}
.l-header__to-top:hover {
  opacity: 0.8;
}

@media (min-width: 1025px) {
  .l-header__to-top {
    max-width: 482px;
  }
}
.l-header__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-header__inner .l-menu__sns {
  font-size: 1.8rem;
  align-items: center;
  margin: 0 auto 0 0.75em;
}

@media (max-width: 1024px) {
  .l-header__inner .l-menu__sns {
    display: none;
  }
}
.l-header__inner .l-menu__sns .l-menu__sns__item > a {
  height: auto;
}

.l-header__button {
  margin-right: 60px;
}

.l-header__button-inner {
  display: flex;
  align-items: center;
  gap: 0.25em;
  position: relative;
}
.l-header__button-inner::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #b99352 0%, #d8c075 50%, #c2a167 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.l-header__button-text {
  color: #4c2c0d;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
}

.l-header__icon {
  width: 14px;
}
.l-header__icon img {
  filter: invert(13%) sepia(50%) saturate(1641%) hue-rotate(344deg) brightness(91%) contrast(92%);
}

.l-header__nav {
  white-space: nowrap;
  margin: 0 auto;
}

@media (max-width: 1800px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__reservation {
  width: 500px;
  height: 100%;
  margin-right: -19px;
}
.l-header__reservation .l-reservation {
  height: 100%;
}
.l-header__reservation .l-reservation__icon {
  position: absolute;
  left: 20px;
  top: 35px;
}
.l-header__reservation .l-reservation__icon img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.l-header__reservation .l-reservation__icon.icon-cal {
  width: 29px;
}
.l-header__reservation .l-reservation__icon.icon-tel {
  width: 20px;
}
.l-header__reservation .l-reservation__buttons {
  height: 100%;
  gap: 0;
  justify-content: flex-end;
}
.l-header__reservation .l-reservation__buttons .l-reservation__button {
  max-width: 250px;
  width: 100%;
}
.l-header__reservation .l-reservation__buttons .l-reservation__button--line {
  display: none;
}
.l-header__reservation .l-reservation__buttons .l-reservation__button--tel .l-reservation__heading {
  font-size: 2.5rem;
}
.l-header__reservation .l-reservation__buttons .l-reservation__button--tel .l-reservation__text {
  display: none;
}
.l-header__reservation .l-reservation__buttons .l-reservation__button--tel .l-reservation__heading__tel-number {
  font-size: var(--font-size-lg);
  display: block;
}

@media (max-width: 1800px) {
  .l-header__reservation {
    margin-right: 11px;
  }
  .l-header__reservation .l-reservation__buttons {
    justify-content: center;
  }
  .l-header__reservation .l-reservation__buttons .l-reservation__button {
    max-width: 180px;
  }
  .l-header__reservation .l-reservation__button-inner {
    height: 100%;
    padding: 20px;
  }
  .l-header__reservation .l-reservation__body {
    display: none;
  }
  .l-header__reservation .l-reservation__icon {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .l-header__reservation {
    display: none;
  }
}
.l-info {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
}

.l-info .simplebar-content {
  height: 100%;
}

.l-info__inner {
  display: flex;
  flex-direction: column;
  gap: max(20px, min(4vh, 32px));
  align-items: center;
  justify-content: center;
  max-width: 380px;
  min-height: 100%;
  padding: 24px 0;
  margin-right: auto;
  margin-left: auto;
  container-type: inline-size;
}

.l-info__to-top {
  display: block;
  width: fit-content;
  height: max(120px, min(18vh, 200px));
  margin: 0 auto;
  transition: opacity 0.18s;
}

.l-info__to-top:hover {
  opacity: 0.8;
}

.l-info__logo {
  display: block;
  height: 100%;
  object-fit: contain;
}

.l-info__tel {
  margin: 0 auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.l-info__icon {
  display: flex;
  align-items: center;
}
.l-info__icon.icon-tel {
  width: 15px;
}
.l-info__icon.icon-tel img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(80%) saturate(2972%) hue-rotate(167deg) brightness(98%) contrast(102%);
}

.l-info__address {
  font-size: var(--font-size-md);
  text-align: center;
}

.l-info__grid {
  display: grid;
  gap: calc(var(--shadow-size-md) * 4);
  width: 100%;
}

.l-info__reservation {
  width: 100%;
}

.l-info__reservation .l-reservation__intro {
  display: none;
}

.l-info__reservation .l-reservation__buttons {
  display: grid;
  gap: var(--shadow-size-lg);
  justify-content: unset;
}

.l-info__reservation .l-reservation__button {
  width: 100%;
  max-width: unset;
  aspect-ratio: initial;
  container-type: inline;
}

.l-info__reservation .l-reservation__button-inner {
  display: grid;
  grid-template-areas: "icon heading body";
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 1fr;
  gap: min(16px, 2.5cqw);
  align-items: center;
  height: unset;
  min-height: 4.5em;
  padding: 0.85em 0.35em 0.75em;
  word-break: keep-all;
}

.l-info__reservation .l-reservation__icon-container {
  container-type: unset;
  grid-area: icon;
  height: fit-content;
  margin-left: 3.5cqw;
}

.l-info__reservation .l-reservation__icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-info__reservation .l-reservation__icon img {
  filter: brightness(0) invert(1);
}
.l-info__reservation .l-reservation__icon.icon-cal img {
  width: 20px;
}
.l-info__reservation .l-reservation__icon.icon-tel img {
  width: 14px;
}

.l-info__reservation .l-reservation__heading {
  display: flex;
  flex-direction: column;
  grid-area: heading;
  gap: 6px;
  font-size: min(2.2rem, 6.5cqw);
}

.l-info__reservation .l-reservation__heading__tel-number {
  display: block;
}

.l-info__reservation .l-reservation__body {
  grid-area: body;
}

.l-info__reservation .l-reservation__text--sm {
  font-size: min(1.3rem, 4.25cqw);
}

.l-info__reservation .l-reservation__text--xs {
  font-size: min(1.1rem, 3cqw);
}

.l-info__schedule {
  width: 100%;
}

.l-main {
  padding-top: 50px;
  margin-top: -50px;
  overflow: hidden;
}

.l-menu-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  color: var(--color-text-contrast);
  background: linear-gradient(135deg, #b99352 0%, #d8c075 50%, #c2a167 100%);
}

.l-menu-button__inner {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  line-height: 1;
  container-type: inline-size;
}

@media (min-width: 1025px) and (max-width: 1800px) {
  .l-menu-button__inner {
    top: 25px;
    left: 25px;
    width: 50px;
  }
}
.l-menu-button__inner--close > * {
  opacity: 0;
}

.l-menu-button__icon {
  width: 100%;
}
.l-menu-button__icon img {
  filter: brightness(0) invert(1);
}

.l-menu-button__text {
  font-size: min(var(--font-size-sm), 25cqw);
  white-space: nowrap;
}

.l-menu {
  --menu-bg-color: var(--color-white);
  --fade-height: 42px;
  width: 100%;
  height: 100dvh;
  background-color: rgba(var(--color-white-rgb), 0.9);
}

.l-menu .simplebar-content-wrapper {
  overscroll-behavior: contain;
}

.l-menu__inner {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.l-menu__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.l-menu__to-top {
  display: contents;
}

.l-menu__logo {
  max-width: 123px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s;
}

.l-menu__logo:hover {
  opacity: 0.75;
}

.l-menu__body {
  position: relative;
  overflow: hidden;
}

.l-menu__scroll-area {
  --padding-width: var(--container-padding);
  position: relative;
  height: 100%;
  padding-top: var(--fade-height);
  padding-bottom: calc(var(--menu-button-width) * 1.28);
  -webkit-mask-image: linear-gradient(to top, transparent, transparent var(--follow-bar-height), #000 calc(var(--follow-bar-height) + var(--fade-height)), #000 calc(100% - var(--fade-height)), transparent), linear-gradient(to left, #000 var(--padding-width), transparent var(--padding-width));
  mask-image: linear-gradient(to top, transparent, transparent var(--follow-bar-height), #000 calc(var(--follow-bar-height) + var(--fade-height)), #000 calc(100% - var(--fade-height)), transparent), linear-gradient(to left, #000 var(--padding-width), transparent var(--padding-width));
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: 0 0, 100% 0;
  mask-position: 0 0, 100% 0;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.l-menu__content {
  width: 100%;
  max-width: 380px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.l-menu__list {
  display: grid;
  gap: 1.2em;
  font-size: var(--font-size-lg);
}

.l-menu__link {
  position: relative;
  display: block;
  padding-bottom: 0.65em;
  line-height: 1.3;
}

.l-menu__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #a59586;
}

.l-menu__text {
  display: inline-block;
  color: var(--color-text);
  transition: all 0.2s;
}

.l-menu__link:hover .l-menu__text {
  color: var(--color-text-accent);
}

.l-menu__submenu {
  --link-padding: 0.6em;
  --line-height: 1.35;
  display: grid;
  grid-template-columns: calc(50% - 1em) 1fr;
  gap: 0 0.5em;
  padding-left: 2px;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: var(--font-size-sm);
  line-height: var(--line-height);
}

.l-menu__submenu__item {
  display: flex;
  gap: 0.5em;
}

.l-menu__submenu__item::before {
  flex-shrink: 0;
  width: 0.5em;
  height: calc(1em * var(--line-height) + var(--link-padding) * 2);
  content: "";
  background-image: linear-gradient(to right, var(--color-text), var(--color-text));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 1.5px;
  transition: all 0.2s;
}

.l-menu__submenu__item:hover::before {
  background-image: linear-gradient(to right, var(--color-text-accent), var(--color-text-accent));
}

.l-menu__submenu__link {
  display: block;
  flex: 1;
  padding: var(--link-padding) 0;
}

.l-menu__submenu__text {
  display: inline-block;
  color: var(--color-text);
  transition: all 0.2s;
}

.l-menu__submenu__link:hover .l-menu__submenu__text {
  color: var(--color-text-accent);
}

.l-menu__schedule {
  margin-top: 42px;
}

.l-menu__sns {
  display: flex;
  gap: 0.75em;
  justify-content: center;
  margin-top: 20px;
  font-size: 2.4rem;
}

.l-menu__sns__item > a {
  --size: 1.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  padding: 0;
  font-size: inherit;
  background: none;
}

.l-gnav__list {
  display: flex;
  gap: 2em;
}

.l-gnav__text {
  color: #4c2c0d;
  font-size: var(--font-size-lg);
  position: relative;
  display: block;
}
.l-gnav__text:hover:before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #b99352 0%, #d8c075 50%, #c2a167 100%);
  position: absolute;
  left: 0;
  bottom: -0.1em;
}

.l-gnav__item.is-current .l-gnav__text:before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #b99352 0%, #d8c075 50%, #c2a167 100%);
  position: absolute;
  left: 0;
  bottom: -0.1em;
}

.l-gnav__submenu {
  width: 100%;
  height: 0;
  background-color: rgba(var(--color-white-rgb), 0.8);
  position: absolute;
  left: 0;
  top: 2em;
  opacity: 0;
}

.l-gnav__item {
  position: relative;
}
.l-gnav__item:hover .l-gnav__submenu {
  opacity: 1;
  height: auto;
}

.l-gnav__submenu__link {
  color: #4c2c0d;
  display: block;
  padding: 5px 10px;
}

.l-mv {
  --mv-content-width: 80px;
  display: grid;
  grid-template-rows: 410px;
  gap: 24px;
  padding-top: var(--shadow-size-md);
  margin-bottom: 80px;
}

.l-mv:where(:not(.l-mv--reverse)) {
  grid-template-areas: "content visual";
  grid-template-columns: var(--mv-content-width) 1fr;
  padding-left: var(--container-padding);
  margin-right: calc(var(--radius-md) * -1);
}

.l-mv--reverse {
  grid-template-areas: "visual content";
  grid-template-columns: 1fr var(--mv-content-width);
  padding-right: var(--container-padding);
  margin-left: calc(var(--radius-md) * -1);
}

.l-mv__visual {
  display: block;
  grid-area: visual;
  height: 100%;
}

.l-mv__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.l-mv__content {
  grid-area: content;
}

.l-nap__standard__list {
  --prefix: "・";
  --row-gap: 0;
  --padding: 1.3em;
}

.l-nap__standard__item {
  position: relative;
  padding-left: var(--padding);
}

.l-nap__standard__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: var(--prefix);
}

.l-nap__standard__link {
  display: block;
  width: fit-content;
  margin-top: 0.75em;
}

.l-reservation__intro {
  margin-bottom: 1em;
  font-size: var(--font-size-md);
}

.l-reservation__buttons {
  --column-count: 2;
  --gap: var(--shadow-size-lg);
  display: flex;
  gap: calc(var(--gap));
  justify-content: center;
}

.l-reservation__button {
  width: calc((100% - var(--gap) * (var(--column-count) - 1)) / var(--column-count));
  max-width: 205px;
  padding: 0 !important;
  text-align: center;
  container-type: inline-size;
  background-color: #886d5d;
}
.l-reservation__button--web {
  color: #503f37;
  background-color: #fedc5e;
}
.l-reservation__button--web::before {
  background-color: #503f37 !important;
}
.l-reservation__button--web .l-reservation__icon img {
  filter: invert(24%) sepia(19%) saturate(687%) hue-rotate(334deg) brightness(91%) contrast(87%) !important;
}
.l-reservation__button::before {
  content: "";
  width: 7px;
  height: 10px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

@media (min-width: 1025px) {
  .l-reservation__button::before {
    width: 9px;
    height: 14px;
  }
}
.l-reservation__button--line {
  background-color: #65664b;
}

.l-reservation__button--tel {
  background-color: #503f37;
}

.l-reservation__button-inner {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 10px;
  font-size: 1.2rem;
}

@media (min-width: 1025px) {
  .l-reservation__button-inner {
    font-size: var(--font-size-md);
    row-gap: 10px;
  }
}
.l-reservation__heading {
  font-size: 1.8rem;
}

@media (min-width: 1025px) {
  .l-reservation__heading {
    font-size: 2.4rem;
  }
}
.l-reservation__heading__tel-number {
  font-family: var(--font-jost);
  font-weight: var(--font-weight-medium);
}

.l-reservation__icon-container {
  display: flex;
  height: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  container-type: inline-size;
}

.l-reservation__icon {
  display: block;
}

.l-reservation__text--sm {
  font-size: min(15px, 8cqw);
}

.l-reservation__text--xs {
  font-size: min(13px, 6.5cqw);
}

.l-schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.l-schedule__table thead,
.l-schedule__table tbody {
  border-bottom: 1px solid #a59586;
}

.l-schedule__table th,
.l-schedule__table td {
  padding: 0.25em 0.2em 0.1em;
  font-weight: var(--font-weight-regular);
}

.l-schedule__table th:first-child,
.l-schedule__table td:first-child {
  white-space: nowrap;
}

.l-schedule__table th:not(:first-child),
.l-schedule__table td:not(:first-child) {
  width: 8.75%;
  text-align: center;
}

.l-schedule__table th {
  font-size: 1.3rem;
}

.l-schedule__note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  justify-content: flex-start;
  margin-top: 0.5em;
  line-height: 1.3;
}

.l-schedule__note {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1.3rem;
}

.l-schedule__note-name {
  white-space: nowrap;
  font-weight: var(--font-weight-regular);
}

.l-schedule__note-name::after {
  content: "：";
}

.l-top {
  position: fixed;
  right: 10px;
  bottom: 77px;
  z-index: 2;
  background: #886d5d;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1025px) {
  .l-top {
    bottom: 10px;
  }
}
.l-top__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-top__icon {
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.l-top__text {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-family: var(--font-jost);
}

.l-wrapper {
  position: relative;
  display: grid;
  grid-template-areas: "left center right";
  grid-template-columns: 1fr var(--main-column-width) 1fr;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1240px) {
  .l-wrapper {
    grid-template-areas: "left center";
    grid-template-columns: 1fr var(--main-column-width);
  }
}
@media (max-width: 1024px) {
  .l-wrapper {
    grid-template-areas: "center";
    grid-template-columns: var(--main-column-width);
  }
}
.l-wrapper__left {
  position: sticky;
  top: 0;
  z-index: 0;
  grid-area: left;
  height: 100vh;
}

@media (max-width: 1024px) {
  .l-wrapper__left {
    display: none;
  }
}
.l-wrapper__right {
  position: sticky;
  top: 0;
  z-index: 0;
  grid-area: right;
  height: 100vh;
}

@media (max-width: 1240px) {
  .l-wrapper__right {
    display: none;
  }
}
.l-wrapper__center {
  position: relative;
  z-index: 1;
  grid-area: center;
  min-height: 100vh;
}

.p-contact {
  background: url(../images/common/contact-bg01.jpg) no-repeat center top;
  background-size: cover;
  padding: 60px 0;
}
.p-contact .l-reservation__button-inner {
  height: 100%;
  padding: 20px;
}
.p-contact .l-reservation__button--web .l-reservation__button-inner, .p-contact .l-reservation__button--tel .l-reservation__button-inner {
  padding: 20px 20px 45px;
}
.p-contact .l-reservation__button--web::before, .p-contact .l-reservation__button--tel::before {
  right: 50%;
  transform: translateX(50%);
  top: auto;
  bottom: 20px;
}
.p-contact .l-reservation__icon img {
  filter: brightness(0) invert(1);
}
.p-contact .l-reservation__icon-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  position: relative;
}
.p-contact .l-reservation__icon.icon-cal {
  width: 34px;
}
.p-contact .l-reservation__icon.icon-line {
  width: 44px;
}
.p-contact .l-reservation__icon.icon-tel {
  width: 25px;
}
.p-contact .l-reservation__heading__tel-number {
  font-size: 2.3rem;
}

@media (min-width: 1025px) {
  .p-contact {
    background: url(../images/common/contact-bg02.jpg) no-repeat center top;
    background-size: cover;
    padding: 120px 0;
  }
  .p-contact .l-reservation__buttons {
    --gap: 20px;
    justify-content: space-between;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  .p-contact .l-reservation__button {
    max-width: none;
    width: 33.3%;
  }
  .p-contact .l-reservation__button--web, .p-contact .l-reservation__button--line {
    aspect-ratio: auto;
  }
  .p-contact .l-reservation__button--tel {
    max-width: none;
    width: 33.3%;
  }
  .p-contact .l-reservation__button--tel::before {
    right: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(50%);
  }
  .p-contact .l-reservation .l-reservation__button-inner {
    padding: 35px 20px 65px;
  }
  .p-contact .l-reservation__icon img {
    filter: brightness(0) invert(1);
  }
  .p-contact .l-reservation__icon-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    position: relative;
  }
  .p-contact .l-reservation__icon.icon-cal {
    width: 40px;
  }
  .p-contact .l-reservation__icon.icon-line {
    width: 60px;
  }
  .p-contact .l-reservation__icon.icon-tel {
    width: 35px;
    position: static;
  }
  .p-contact .l-reservation__heading__tel-number {
    font-size: 3.2rem;
  }
}
.p-contact__main-heading {
  margin-bottom: 20px;
}

@media (min-width: 1025px) {
  .p-contact__main-heading {
    margin-bottom: 50px;
  }
}
.p-access {
  background: #f6f4ee;
  padding: 50px 0;
}

.p-access a {
  color: inherit;
}

.p-access address {
  font-style: normal;
}

@media (min-width: 1025px) {
  .p-access {
    padding: 100px 0;
  }
  .p-access .l-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    max-width: 1225px;
    margin: 0 auto;
  }
  .p-access .p-access__list {
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 2;
    margin-right: 30px;
  }
  .p-access .p-access__map {
    grid-row: span 3/span 3;
    grid-column-start: 2;
    grid-row-start: 1;
    margin-bottom: 0;
  }
  .p-access .p-access__map iframe {
    height: 100%;
  }
}
.p-access__main-heading {
  margin-bottom: 30px;
}
.p-access__main-heading .c-heading-primary__text--ja {
  line-height: 1.8;
}
.p-access__main-heading .c-heading-primary__text--ja span {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 8px;
}
.p-access__main-heading .c-heading-primary__text--ja span::after {
  content: "";
  background: linear-gradient(135deg, #f9da00 0%, #def7d2 50%, #2e8ecf 100%);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
}
.p-access__main-heading .c-heading-primary__text--ja em {
  font-size: 3.2rem;
  font-style: normal;
}
.p-access__main-heading .c-heading-primary__text--ja small {
  font-size: var(--font-size-lg);
  display: block;
  margin-top: 5px;
}

@media (min-width: 1025px) {
  .p-access__main-heading {
    margin-right: auto;
  }
  .p-access__main-heading .c-heading-primary__text--ja span {
    font-size: 4.6rem;
  }
  .p-access__main-heading .c-heading-primary__text--ja em {
    font-size: 6rem;
  }
  .p-access__main-heading .c-heading-primary__text--ja small {
    font-size: 3.1rem;
  }
}
.p-access__map {
  margin-bottom: 30px;
}

.p-access__list {
  display: grid;
  row-gap: 10px;
}

.p-access__item {
  display: flex;
  column-gap: 15px;
}

.p-access__icon {
  width: 36px;
  height: 36px;
  background: #4b2c0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-access__icon img {
  filter: brightness(0) invert(1);
}
.p-access__icon .icon-map img {
  width: 22px;
}
.p-access__icon .icon-car img {
  width: 22px;
}
.p-access__icon .icon-cal img {
  width: 21px;
}
.p-access__icon .icon-tel img {
  width: 17px;
}

@media (min-width: 1025px) {
  .p-access__icon {
    width: 48px;
    height: 48px;
  }
  .p-access__icon .icon-map img {
    width: 29px;
  }
  .p-access__icon .icon-car img {
    width: 29px;
  }
  .p-access__icon .icon-cal img {
    width: 28px;
  }
  .p-access__icon .icon-tel img {
    width: 22px;
  }
}
.p-access__body {
  width: calc(100% - 48px - 15px);
  padding-top: 4px;
}
.p-access__body address,
.p-access__body .c-paragraph {
  font-size: var(--font-size-sm);
}
.p-access__body address .is-tel,
.p-access__body .c-paragraph .is-tel {
  font-family: var(--font-jost);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 1025px) {
  .p-access__body address,
  .p-access__body .c-paragraph {
    font-size: var(--font-size-lg);
  }
  .p-access__body address .is-tel,
  .p-access__body .c-paragraph .is-tel {
    font-size: 2.5rem;
  }
}
.p-access__heading {
  color: #4b2c0d;
  font-weight: var(--font-weight-medium);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-access__heading a {
  font-size: var(--font-size-sm);
  display: inline-block;
  margin-left: auto;
}

@media (min-width: 1025px) {
  .p-access__heading {
    font-size: 2.2rem;
  }
}
.p-qa {
  padding: 60px 0;
}

@media (min-width: 1025px) {
  .p-qa {
    padding: 120px 0;
  }
}
.p-qa__question {
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px;
}
.p-qa__question::before {
  color: #4b2c0d;
  font-size: var(--font-size-lg);
  font-family: var(--font-jost);
  font-weight: var(--font-weight-medium);
  content: "Q.";
}
.p-qa__question i {
  position: relative;
  margin-left: auto;
}
.p-qa__question i::before, .p-qa__question i::after {
  content: "";
  width: 10px;
  height: 2px;
  background: #b2a694;
  position: absolute;
  right: 10px;
}
.p-qa__question i::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

@media (min-width: 1025px) {
  .p-qa__question {
    padding: 20px;
  }
  .p-qa__question::before {
    font-size: 2rem;
  }
}
.p-qa__answer {
  height: 0;
  overflow: hidden;
  transition: height ease 0.3s;
}
.p-qa__answer span {
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: #e5f6fc;
  padding: 10px;
}
.p-qa__answer span::before {
  color: #00a4e1;
  font-size: var(--font-size-lg);
  font-family: var(--font-jost);
  font-weight: var(--font-weight-medium);
  content: "A.";
}

@media (min-width: 1025px) {
  .p-qa__answer span {
    padding: 20px;
  }
  .p-qa__answer span::before {
    font-size: 2rem;
  }
}
.p-qa__list {
  font-size: var(--font-size-sm);
}

@media (min-width: 1025px) {
  .p-qa__list {
    font-size: var(--font-size-md);
    max-width: 1055px;
    margin: 0 auto;
  }
}
.p-qa__item {
  border-bottom: 1px solid #b2a694;
}
.p-qa__item.is-active .p-qa__question i::after {
  transform: rotate(180deg);
}

.p-qa__item:first-child {
  border-top: 1px solid #b2a694;
}

.p-qa__main-heading {
  margin-bottom: 30px;
}

@media (min-width: 1025px) {
  .p-qa__main-heading {
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=common.css.map */