@charset "UTF-8";
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
/* CSS Mode */
.swiper-css-mode  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
  }
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }
.swiper-css-mode  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
.swiper-css-mode.swiper-horizontal  > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
.swiper-css-mode.swiper-vertical  > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
.swiper-css-mode.swiper-free-mode  > .swiper-wrapper {
      scroll-snap-type: none;
    }
.swiper-css-mode.swiper-free-mode  > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
.swiper-css-mode.swiper-centered  > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
.swiper-css-mode.swiper-centered  > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
.swiper-css-mode.swiper-centered.swiper-horizontal  > .swiper-wrapper > .swiper-slide:first-child {
      margin-left: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-horizontal  > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
.swiper-css-mode.swiper-centered.swiper-vertical  > .swiper-wrapper > .swiper-slide:first-child {
      margin-top: var(--swiper-centered-offset-before);
    }
.swiper-css-mode.swiper-centered.swiper-vertical  > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: 44px;

  width: var(--swiper-navigation-size);
  height: 44px;
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-disabled.swiper-button-prev,.swiper-button-disabled.swiper-button-next {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
.swiper-button-hidden.swiper-button-prev,.swiper-button-hidden.swiper-button-next {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next {
    display: none !important;
  }
.swiper-button-prev svg,.swiper-button-next svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (44px / 2));
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: 4px;
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
    transform: rotate(180deg);
  }
.swiper-button-next {
  right: 4px;
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev,.swiper-horizontal .swiper-button-next,.swiper-horizontal  ~ .swiper-button-prev,.swiper-horizontal  ~ .swiper-button-next {
    top: 50%;
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (44px / 2));
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
.swiper-horizontal .swiper-button-prev,.swiper-horizontal ~ .swiper-button-prev,.swiper-horizontal.swiper-rtl .swiper-button-next,.swiper-horizontal.swiper-rtl ~ .swiper-button-next {
    left: 4px;
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
.swiper-horizontal .swiper-button-next,.swiper-horizontal ~ .swiper-button-next,.swiper-horizontal.swiper-rtl .swiper-button-prev,.swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
    right: 4px;
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
.swiper-horizontal .swiper-button-prev:not(.does-not-exist) .swiper-navigation-icon,.swiper-horizontal ~ .swiper-button-prev:not(.does-not-exist) .swiper-navigation-icon,.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,.swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
      transform: rotate(180deg);
    }
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,.swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
      transform: rotate(0deg);
    }
.swiper-vertical .swiper-button-prev,.swiper-vertical .swiper-button-next,.swiper-vertical  ~ .swiper-button-prev,.swiper-vertical  ~ .swiper-button-next {
    left: 50%;
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (44px / 2));
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
.swiper-vertical .swiper-button-prev,.swiper-vertical  ~ .swiper-button-prev {
    top: 4px;
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
  }
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
.swiper-vertical .swiper-button-next,.swiper-vertical  ~ .swiper-button-next {
    bottom: 4px;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
  }
.swiper-vertical .swiper-button-next .swiper-navigation-icon,.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
      transform: rotate(90deg);
    }
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
.swiper-pagination-disabled > .swiper-pagination,.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
  }
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
.swiper-pagination-bullet:only-child {
    display: none !important;
  }
.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-bullets-dynamic.swiper-pagination-vertical.swiper-pagination-bullets {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-bullets-dynamic.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform, 200ms top;
    }
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-bullets-dynamic.swiper-pagination-horizontal.swiper-pagination-bullets {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-bullets-dynamic.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
      transition:
        200ms transform, 200ms left;
    }
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform, 200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
.swiper-horizontal > .swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
.swiper-vertical > .swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: 10px;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: rgba(0, 0, 0, 0.1);
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
  }
.swiper-horizontal > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: 4px;
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: auto;
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: 4px;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * 1%);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
.swiper-vertical > .swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: auto;
    left: var(--swiper-scrollbar-left, auto);
    right: 4px;
    right: var(--swiper-scrollbar-right, 4px);
    top: 1%;
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: 4px;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * 1%);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: 10px;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container  > img,.swiper-zoom-container  > svg,.swiper-zoom-container  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-thumbs .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
      transition-timing-function: ease-out;
    }
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
.swiper-fade .swiper-slide .swiper-slide {
      pointer-events: none;
    }
.swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
.swiper-fade .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
.swiper-cube .swiper-slide .swiper-slide {
      pointer-events: none;
    }
.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }
.swiper-cube .swiper-cube-shadow:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
  }
.swiper-flip .swiper-slide .swiper-slide {
      pointer-events: none;
    }
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
    }
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
/* Flip slide shadows end */
.swiper-coverflow {
}
.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
/* Custom media queries (consumed by postcss-preset-env) */
body {
  border: none;
  margin: 0;
  padding: 0;
}
/* image */
img,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
textarea {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
}
a {
  cursor: pointer;
}
table {
  font-size: 100%;
}
hr.separator {
  display: none;
}
/* Responsive font sizing - SP/PC 2-tier approach */
@media (max-width: 767px) {
  html {
    /* Mobile devices (SP) */
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 768px) {
  html {
    /* Desktop and tablets (PC) */
    font-size: 0.6944444444vw;
  }
}
/* Keep layout width stable when scrollbar shows/hides */
html {
  scrollbar-gutter: stable both-edges;
}
body::-webkit-scrollbar:horizontal {
  display: none;
  height: 0;
  width: 0;
}
body::-webkit-scrollbar {
  height: 0;
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  body {
    scrollbar-color: #888 #f1f1f1;
    scrollbar-width: thin;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
.only-sr {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.currentPage {
  background: linear-gradient(0deg, #FFFCF7 0%, #F1EDE6 100%);
  color: #4D5357;
  font-family: "YakuHanMP", "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  .currentPage {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .currentPage {
    box-sizing: border-box;
    font-size: 1.5rem;
    max-width: 100vw;
    min-width: 0;
    min-width: initial;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .currentPage table, .currentPage .table, .currentPage [class*=table] {
    max-width: 100vw;
    overflow-x: auto !important;
  }
  .currentPage [style*="100vw"],
  .currentPage *[class*=__inner] {
    box-sizing: border-box;
    max-width: 100vw;
  }
}
a {
  color: #4D5357;
  -webkit-text-decoration: none;
  text-decoration: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}
a:focus,
button:focus,
[tabindex="0"]:focus {
  outline: 2px solid #4D90FE;
  outline-offset: 2px;
}
img {
  height: auto;
  max-width: 100%;
}
.wrap {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .wrap {
    width: 128rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 3.2rem;
  }
}
.caption,
.photo__caption {
  color: #4D5357;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.caption[data-color=white],
.photo__caption[data-color=white] {
  color: #fff;
}
.caption[data-color=gray],
.photo__caption[data-color=gray] {
  color: #4D5357;
}
.caption[data-color=sdw-wh],
.photo__caption[data-color=sdw-wh] {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 10px, rgba(0, 0, 0, 0.7) 1px 1px 10px, rgba(0, 0, 0, 0.7) 1px 1px 10px, rgba(0, 0, 0, 0.7) 1px 1px 10px, rgba(0, 0, 0, 0.7) 1px 1px 10px, rgba(0, 0, 0, 0.7) 1px 1px 10px;
}
.caption[data-color=sdw-bl],
.photo__caption[data-color=sdw-bl] {
  color: #000;
  text-shadow: #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}
.caption[data-color=label],
.photo__caption[data-color=label] {
  background-color: rgba(102, 102, 102, 0.8);
  color: #fff;
  line-height: 1;
  padding: 0.5rem;
}
.caption a,
.photo__caption a {
  color: currentcolor;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.skip-link {
  height: 1px;
  left: -999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.skip-link:focus {
  background: #000;
  border-radius: 4px;
  color: #fff;
  height: auto;
  left: 16px;
  padding: 8px 12px;
  -webkit-text-decoration: none;
  text-decoration: none;
  top: 16px;
  width: auto;
  z-index: 10000;
}
.spAlert {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s;
  visibility: hidden;
  width: 100vw;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .spAlert {
    display: flex;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .spAlert {
    opacity: 1;
    visibility: visible;
  }
}
.spAlert__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  position: relative;
  z-index: 2;
}
.spAlert__message {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-top: 25px;
}
.spAlert .svgIcon {
  margin: 0 auto;
  width: 81.5px;
}
.spAlert .svgIcon__path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-width: 17;
}
[data-sai][data-sai][data-sai-duration="50"],
body[data-sai-duration="50"] [data-sai] {
  transition-duration: 50ms;
}
[data-sai][data-sai][data-sai-delay="50"],
body[data-sai-delay="50"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="50"].sai-animate,
body[data-sai-delay="50"] [data-sai].sai-animate {
  transition-delay: 50ms;
}
[data-sai][data-sai][data-sai-duration="100"],
body[data-sai-duration="100"] [data-sai] {
  transition-duration: 0.1s;
}
[data-sai][data-sai][data-sai-delay="100"],
body[data-sai-delay="100"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="100"].sai-animate,
body[data-sai-delay="100"] [data-sai].sai-animate {
  transition-delay: 0.1s;
}
[data-sai][data-sai][data-sai-duration="150"],
body[data-sai-duration="150"] [data-sai] {
  transition-duration: 0.15s;
}
[data-sai][data-sai][data-sai-delay="150"],
body[data-sai-delay="150"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="150"].sai-animate,
body[data-sai-delay="150"] [data-sai].sai-animate {
  transition-delay: 0.15s;
}
[data-sai][data-sai][data-sai-duration="200"],
body[data-sai-duration="200"] [data-sai] {
  transition-duration: 0.2s;
}
[data-sai][data-sai][data-sai-delay="200"],
body[data-sai-delay="200"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="200"].sai-animate,
body[data-sai-delay="200"] [data-sai].sai-animate {
  transition-delay: 0.2s;
}
[data-sai][data-sai][data-sai-duration="250"],
body[data-sai-duration="250"] [data-sai] {
  transition-duration: 0.25s;
}
[data-sai][data-sai][data-sai-delay="250"],
body[data-sai-delay="250"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="250"].sai-animate,
body[data-sai-delay="250"] [data-sai].sai-animate {
  transition-delay: 0.25s;
}
[data-sai][data-sai][data-sai-duration="300"],
body[data-sai-duration="300"] [data-sai] {
  transition-duration: 0.3s;
}
[data-sai][data-sai][data-sai-delay="300"],
body[data-sai-delay="300"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="300"].sai-animate,
body[data-sai-delay="300"] [data-sai].sai-animate {
  transition-delay: 0.3s;
}
[data-sai][data-sai][data-sai-duration="350"],
body[data-sai-duration="350"] [data-sai] {
  transition-duration: 0.35s;
}
[data-sai][data-sai][data-sai-delay="350"],
body[data-sai-delay="350"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="350"].sai-animate,
body[data-sai-delay="350"] [data-sai].sai-animate {
  transition-delay: 0.35s;
}
[data-sai][data-sai][data-sai-duration="400"],
body[data-sai-duration="400"] [data-sai] {
  transition-duration: 0.4s;
}
[data-sai][data-sai][data-sai-delay="400"],
body[data-sai-delay="400"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="400"].sai-animate,
body[data-sai-delay="400"] [data-sai].sai-animate {
  transition-delay: 0.4s;
}
[data-sai][data-sai][data-sai-duration="450"],
body[data-sai-duration="450"] [data-sai] {
  transition-duration: 0.45s;
}
[data-sai][data-sai][data-sai-delay="450"],
body[data-sai-delay="450"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="450"].sai-animate,
body[data-sai-delay="450"] [data-sai].sai-animate {
  transition-delay: 0.45s;
}
[data-sai][data-sai][data-sai-duration="500"],
body[data-sai-duration="500"] [data-sai] {
  transition-duration: 0.5s;
}
[data-sai][data-sai][data-sai-delay="500"],
body[data-sai-delay="500"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="500"].sai-animate,
body[data-sai-delay="500"] [data-sai].sai-animate {
  transition-delay: 0.5s;
}
[data-sai][data-sai][data-sai-duration="550"],
body[data-sai-duration="550"] [data-sai] {
  transition-duration: 0.55s;
}
[data-sai][data-sai][data-sai-delay="550"],
body[data-sai-delay="550"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="550"].sai-animate,
body[data-sai-delay="550"] [data-sai].sai-animate {
  transition-delay: 0.55s;
}
[data-sai][data-sai][data-sai-duration="600"],
body[data-sai-duration="600"] [data-sai] {
  transition-duration: 0.6s;
}
[data-sai][data-sai][data-sai-delay="600"],
body[data-sai-delay="600"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="600"].sai-animate,
body[data-sai-delay="600"] [data-sai].sai-animate {
  transition-delay: 0.6s;
}
[data-sai][data-sai][data-sai-duration="650"],
body[data-sai-duration="650"] [data-sai] {
  transition-duration: 0.65s;
}
[data-sai][data-sai][data-sai-delay="650"],
body[data-sai-delay="650"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="650"].sai-animate,
body[data-sai-delay="650"] [data-sai].sai-animate {
  transition-delay: 0.65s;
}
[data-sai][data-sai][data-sai-duration="700"],
body[data-sai-duration="700"] [data-sai] {
  transition-duration: 0.7s;
}
[data-sai][data-sai][data-sai-delay="700"],
body[data-sai-delay="700"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="700"].sai-animate,
body[data-sai-delay="700"] [data-sai].sai-animate {
  transition-delay: 0.7s;
}
[data-sai][data-sai][data-sai-duration="750"],
body[data-sai-duration="750"] [data-sai] {
  transition-duration: 0.75s;
}
[data-sai][data-sai][data-sai-delay="750"],
body[data-sai-delay="750"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="750"].sai-animate,
body[data-sai-delay="750"] [data-sai].sai-animate {
  transition-delay: 0.75s;
}
[data-sai][data-sai][data-sai-duration="800"],
body[data-sai-duration="800"] [data-sai] {
  transition-duration: 0.8s;
}
[data-sai][data-sai][data-sai-delay="800"],
body[data-sai-delay="800"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="800"].sai-animate,
body[data-sai-delay="800"] [data-sai].sai-animate {
  transition-delay: 0.8s;
}
[data-sai][data-sai][data-sai-duration="850"],
body[data-sai-duration="850"] [data-sai] {
  transition-duration: 0.85s;
}
[data-sai][data-sai][data-sai-delay="850"],
body[data-sai-delay="850"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="850"].sai-animate,
body[data-sai-delay="850"] [data-sai].sai-animate {
  transition-delay: 0.85s;
}
[data-sai][data-sai][data-sai-duration="900"],
body[data-sai-duration="900"] [data-sai] {
  transition-duration: 0.9s;
}
[data-sai][data-sai][data-sai-delay="900"],
body[data-sai-delay="900"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="900"].sai-animate,
body[data-sai-delay="900"] [data-sai].sai-animate {
  transition-delay: 0.9s;
}
[data-sai][data-sai][data-sai-duration="950"],
body[data-sai-duration="950"] [data-sai] {
  transition-duration: 0.95s;
}
[data-sai][data-sai][data-sai-delay="950"],
body[data-sai-delay="950"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="950"].sai-animate,
body[data-sai-delay="950"] [data-sai].sai-animate {
  transition-delay: 0.95s;
}
[data-sai][data-sai][data-sai-duration="1000"],
body[data-sai-duration="1000"] [data-sai] {
  transition-duration: 1s;
}
[data-sai][data-sai][data-sai-delay="1000"],
body[data-sai-delay="1000"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1000"].sai-animate,
body[data-sai-delay="1000"] [data-sai].sai-animate {
  transition-delay: 1s;
}
[data-sai][data-sai][data-sai-duration="1050"],
body[data-sai-duration="1050"] [data-sai] {
  transition-duration: 1.05s;
}
[data-sai][data-sai][data-sai-delay="1050"],
body[data-sai-delay="1050"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1050"].sai-animate,
body[data-sai-delay="1050"] [data-sai].sai-animate {
  transition-delay: 1.05s;
}
[data-sai][data-sai][data-sai-duration="1100"],
body[data-sai-duration="1100"] [data-sai] {
  transition-duration: 1.1s;
}
[data-sai][data-sai][data-sai-delay="1100"],
body[data-sai-delay="1100"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1100"].sai-animate,
body[data-sai-delay="1100"] [data-sai].sai-animate {
  transition-delay: 1.1s;
}
[data-sai][data-sai][data-sai-duration="1150"],
body[data-sai-duration="1150"] [data-sai] {
  transition-duration: 1.15s;
}
[data-sai][data-sai][data-sai-delay="1150"],
body[data-sai-delay="1150"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1150"].sai-animate,
body[data-sai-delay="1150"] [data-sai].sai-animate {
  transition-delay: 1.15s;
}
[data-sai][data-sai][data-sai-duration="1200"],
body[data-sai-duration="1200"] [data-sai] {
  transition-duration: 1.2s;
}
[data-sai][data-sai][data-sai-delay="1200"],
body[data-sai-delay="1200"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1200"].sai-animate,
body[data-sai-delay="1200"] [data-sai].sai-animate {
  transition-delay: 1.2s;
}
[data-sai][data-sai][data-sai-duration="1250"],
body[data-sai-duration="1250"] [data-sai] {
  transition-duration: 1.25s;
}
[data-sai][data-sai][data-sai-delay="1250"],
body[data-sai-delay="1250"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1250"].sai-animate,
body[data-sai-delay="1250"] [data-sai].sai-animate {
  transition-delay: 1.25s;
}
[data-sai][data-sai][data-sai-duration="1300"],
body[data-sai-duration="1300"] [data-sai] {
  transition-duration: 1.3s;
}
[data-sai][data-sai][data-sai-delay="1300"],
body[data-sai-delay="1300"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1300"].sai-animate,
body[data-sai-delay="1300"] [data-sai].sai-animate {
  transition-delay: 1.3s;
}
[data-sai][data-sai][data-sai-duration="1350"],
body[data-sai-duration="1350"] [data-sai] {
  transition-duration: 1.35s;
}
[data-sai][data-sai][data-sai-delay="1350"],
body[data-sai-delay="1350"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1350"].sai-animate,
body[data-sai-delay="1350"] [data-sai].sai-animate {
  transition-delay: 1.35s;
}
[data-sai][data-sai][data-sai-duration="1400"],
body[data-sai-duration="1400"] [data-sai] {
  transition-duration: 1.4s;
}
[data-sai][data-sai][data-sai-delay="1400"],
body[data-sai-delay="1400"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1400"].sai-animate,
body[data-sai-delay="1400"] [data-sai].sai-animate {
  transition-delay: 1.4s;
}
[data-sai][data-sai][data-sai-duration="1450"],
body[data-sai-duration="1450"] [data-sai] {
  transition-duration: 1.45s;
}
[data-sai][data-sai][data-sai-delay="1450"],
body[data-sai-delay="1450"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1450"].sai-animate,
body[data-sai-delay="1450"] [data-sai].sai-animate {
  transition-delay: 1.45s;
}
[data-sai][data-sai][data-sai-duration="1500"],
body[data-sai-duration="1500"] [data-sai] {
  transition-duration: 1.5s;
}
[data-sai][data-sai][data-sai-delay="1500"],
body[data-sai-delay="1500"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1500"].sai-animate,
body[data-sai-delay="1500"] [data-sai].sai-animate {
  transition-delay: 1.5s;
}
[data-sai][data-sai][data-sai-duration="1550"],
body[data-sai-duration="1550"] [data-sai] {
  transition-duration: 1.55s;
}
[data-sai][data-sai][data-sai-delay="1550"],
body[data-sai-delay="1550"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1550"].sai-animate,
body[data-sai-delay="1550"] [data-sai].sai-animate {
  transition-delay: 1.55s;
}
[data-sai][data-sai][data-sai-duration="1600"],
body[data-sai-duration="1600"] [data-sai] {
  transition-duration: 1.6s;
}
[data-sai][data-sai][data-sai-delay="1600"],
body[data-sai-delay="1600"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1600"].sai-animate,
body[data-sai-delay="1600"] [data-sai].sai-animate {
  transition-delay: 1.6s;
}
[data-sai][data-sai][data-sai-duration="1650"],
body[data-sai-duration="1650"] [data-sai] {
  transition-duration: 1.65s;
}
[data-sai][data-sai][data-sai-delay="1650"],
body[data-sai-delay="1650"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1650"].sai-animate,
body[data-sai-delay="1650"] [data-sai].sai-animate {
  transition-delay: 1.65s;
}
[data-sai][data-sai][data-sai-duration="1700"],
body[data-sai-duration="1700"] [data-sai] {
  transition-duration: 1.7s;
}
[data-sai][data-sai][data-sai-delay="1700"],
body[data-sai-delay="1700"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1700"].sai-animate,
body[data-sai-delay="1700"] [data-sai].sai-animate {
  transition-delay: 1.7s;
}
[data-sai][data-sai][data-sai-duration="1750"],
body[data-sai-duration="1750"] [data-sai] {
  transition-duration: 1.75s;
}
[data-sai][data-sai][data-sai-delay="1750"],
body[data-sai-delay="1750"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1750"].sai-animate,
body[data-sai-delay="1750"] [data-sai].sai-animate {
  transition-delay: 1.75s;
}
[data-sai][data-sai][data-sai-duration="1800"],
body[data-sai-duration="1800"] [data-sai] {
  transition-duration: 1.8s;
}
[data-sai][data-sai][data-sai-delay="1800"],
body[data-sai-delay="1800"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1800"].sai-animate,
body[data-sai-delay="1800"] [data-sai].sai-animate {
  transition-delay: 1.8s;
}
[data-sai][data-sai][data-sai-duration="1850"],
body[data-sai-duration="1850"] [data-sai] {
  transition-duration: 1.85s;
}
[data-sai][data-sai][data-sai-delay="1850"],
body[data-sai-delay="1850"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1850"].sai-animate,
body[data-sai-delay="1850"] [data-sai].sai-animate {
  transition-delay: 1.85s;
}
[data-sai][data-sai][data-sai-duration="1900"],
body[data-sai-duration="1900"] [data-sai] {
  transition-duration: 1.9s;
}
[data-sai][data-sai][data-sai-delay="1900"],
body[data-sai-delay="1900"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1900"].sai-animate,
body[data-sai-delay="1900"] [data-sai].sai-animate {
  transition-delay: 1.9s;
}
[data-sai][data-sai][data-sai-duration="1950"],
body[data-sai-duration="1950"] [data-sai] {
  transition-duration: 1.95s;
}
[data-sai][data-sai][data-sai-delay="1950"],
body[data-sai-delay="1950"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="1950"].sai-animate,
body[data-sai-delay="1950"] [data-sai].sai-animate {
  transition-delay: 1.95s;
}
[data-sai][data-sai][data-sai-duration="2000"],
body[data-sai-duration="2000"] [data-sai] {
  transition-duration: 2s;
}
[data-sai][data-sai][data-sai-delay="2000"],
body[data-sai-delay="2000"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2000"].sai-animate,
body[data-sai-delay="2000"] [data-sai].sai-animate {
  transition-delay: 2s;
}
[data-sai][data-sai][data-sai-duration="2050"],
body[data-sai-duration="2050"] [data-sai] {
  transition-duration: 2.05s;
}
[data-sai][data-sai][data-sai-delay="2050"],
body[data-sai-delay="2050"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2050"].sai-animate,
body[data-sai-delay="2050"] [data-sai].sai-animate {
  transition-delay: 2.05s;
}
[data-sai][data-sai][data-sai-duration="2100"],
body[data-sai-duration="2100"] [data-sai] {
  transition-duration: 2.1s;
}
[data-sai][data-sai][data-sai-delay="2100"],
body[data-sai-delay="2100"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2100"].sai-animate,
body[data-sai-delay="2100"] [data-sai].sai-animate {
  transition-delay: 2.1s;
}
[data-sai][data-sai][data-sai-duration="2150"],
body[data-sai-duration="2150"] [data-sai] {
  transition-duration: 2.15s;
}
[data-sai][data-sai][data-sai-delay="2150"],
body[data-sai-delay="2150"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2150"].sai-animate,
body[data-sai-delay="2150"] [data-sai].sai-animate {
  transition-delay: 2.15s;
}
[data-sai][data-sai][data-sai-duration="2200"],
body[data-sai-duration="2200"] [data-sai] {
  transition-duration: 2.2s;
}
[data-sai][data-sai][data-sai-delay="2200"],
body[data-sai-delay="2200"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2200"].sai-animate,
body[data-sai-delay="2200"] [data-sai].sai-animate {
  transition-delay: 2.2s;
}
[data-sai][data-sai][data-sai-duration="2250"],
body[data-sai-duration="2250"] [data-sai] {
  transition-duration: 2.25s;
}
[data-sai][data-sai][data-sai-delay="2250"],
body[data-sai-delay="2250"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2250"].sai-animate,
body[data-sai-delay="2250"] [data-sai].sai-animate {
  transition-delay: 2.25s;
}
[data-sai][data-sai][data-sai-duration="2300"],
body[data-sai-duration="2300"] [data-sai] {
  transition-duration: 2.3s;
}
[data-sai][data-sai][data-sai-delay="2300"],
body[data-sai-delay="2300"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2300"].sai-animate,
body[data-sai-delay="2300"] [data-sai].sai-animate {
  transition-delay: 2.3s;
}
[data-sai][data-sai][data-sai-duration="2350"],
body[data-sai-duration="2350"] [data-sai] {
  transition-duration: 2.35s;
}
[data-sai][data-sai][data-sai-delay="2350"],
body[data-sai-delay="2350"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2350"].sai-animate,
body[data-sai-delay="2350"] [data-sai].sai-animate {
  transition-delay: 2.35s;
}
[data-sai][data-sai][data-sai-duration="2400"],
body[data-sai-duration="2400"] [data-sai] {
  transition-duration: 2.4s;
}
[data-sai][data-sai][data-sai-delay="2400"],
body[data-sai-delay="2400"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2400"].sai-animate,
body[data-sai-delay="2400"] [data-sai].sai-animate {
  transition-delay: 2.4s;
}
[data-sai][data-sai][data-sai-duration="2450"],
body[data-sai-duration="2450"] [data-sai] {
  transition-duration: 2.45s;
}
[data-sai][data-sai][data-sai-delay="2450"],
body[data-sai-delay="2450"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2450"].sai-animate,
body[data-sai-delay="2450"] [data-sai].sai-animate {
  transition-delay: 2.45s;
}
[data-sai][data-sai][data-sai-duration="2500"],
body[data-sai-duration="2500"] [data-sai] {
  transition-duration: 2.5s;
}
[data-sai][data-sai][data-sai-delay="2500"],
body[data-sai-delay="2500"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2500"].sai-animate,
body[data-sai-delay="2500"] [data-sai].sai-animate {
  transition-delay: 2.5s;
}
[data-sai][data-sai][data-sai-duration="2550"],
body[data-sai-duration="2550"] [data-sai] {
  transition-duration: 2.55s;
}
[data-sai][data-sai][data-sai-delay="2550"],
body[data-sai-delay="2550"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2550"].sai-animate,
body[data-sai-delay="2550"] [data-sai].sai-animate {
  transition-delay: 2.55s;
}
[data-sai][data-sai][data-sai-duration="2600"],
body[data-sai-duration="2600"] [data-sai] {
  transition-duration: 2.6s;
}
[data-sai][data-sai][data-sai-delay="2600"],
body[data-sai-delay="2600"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2600"].sai-animate,
body[data-sai-delay="2600"] [data-sai].sai-animate {
  transition-delay: 2.6s;
}
[data-sai][data-sai][data-sai-duration="2650"],
body[data-sai-duration="2650"] [data-sai] {
  transition-duration: 2.65s;
}
[data-sai][data-sai][data-sai-delay="2650"],
body[data-sai-delay="2650"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2650"].sai-animate,
body[data-sai-delay="2650"] [data-sai].sai-animate {
  transition-delay: 2.65s;
}
[data-sai][data-sai][data-sai-duration="2700"],
body[data-sai-duration="2700"] [data-sai] {
  transition-duration: 2.7s;
}
[data-sai][data-sai][data-sai-delay="2700"],
body[data-sai-delay="2700"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2700"].sai-animate,
body[data-sai-delay="2700"] [data-sai].sai-animate {
  transition-delay: 2.7s;
}
[data-sai][data-sai][data-sai-duration="2750"],
body[data-sai-duration="2750"] [data-sai] {
  transition-duration: 2.75s;
}
[data-sai][data-sai][data-sai-delay="2750"],
body[data-sai-delay="2750"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2750"].sai-animate,
body[data-sai-delay="2750"] [data-sai].sai-animate {
  transition-delay: 2.75s;
}
[data-sai][data-sai][data-sai-duration="2800"],
body[data-sai-duration="2800"] [data-sai] {
  transition-duration: 2.8s;
}
[data-sai][data-sai][data-sai-delay="2800"],
body[data-sai-delay="2800"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2800"].sai-animate,
body[data-sai-delay="2800"] [data-sai].sai-animate {
  transition-delay: 2.8s;
}
[data-sai][data-sai][data-sai-duration="2850"],
body[data-sai-duration="2850"] [data-sai] {
  transition-duration: 2.85s;
}
[data-sai][data-sai][data-sai-delay="2850"],
body[data-sai-delay="2850"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2850"].sai-animate,
body[data-sai-delay="2850"] [data-sai].sai-animate {
  transition-delay: 2.85s;
}
[data-sai][data-sai][data-sai-duration="2900"],
body[data-sai-duration="2900"] [data-sai] {
  transition-duration: 2.9s;
}
[data-sai][data-sai][data-sai-delay="2900"],
body[data-sai-delay="2900"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2900"].sai-animate,
body[data-sai-delay="2900"] [data-sai].sai-animate {
  transition-delay: 2.9s;
}
[data-sai][data-sai][data-sai-duration="2950"],
body[data-sai-duration="2950"] [data-sai] {
  transition-duration: 2.95s;
}
[data-sai][data-sai][data-sai-delay="2950"],
body[data-sai-delay="2950"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="2950"].sai-animate,
body[data-sai-delay="2950"] [data-sai].sai-animate {
  transition-delay: 2.95s;
}
[data-sai][data-sai][data-sai-duration="3000"],
body[data-sai-duration="3000"] [data-sai] {
  transition-duration: 3s;
}
[data-sai][data-sai][data-sai-delay="3000"],
body[data-sai-delay="3000"] [data-sai] {
  transition-delay: 0;
}
[data-sai][data-sai][data-sai-delay="3000"].sai-animate,
body[data-sai-delay="3000"] [data-sai].sai-animate {
  transition-delay: 3s;
}
[data-sai][data-sai][data-sai-easing=linear],
body[data-sai-easing=linear] [data-sai] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-sai][data-sai][data-sai-easing=ease],
body[data-sai-easing=ease] [data-sai] {
  transition-timing-function: ease;
}
[data-sai][data-sai][data-sai-easing=ease-in],
body[data-sai-easing=ease-in] [data-sai] {
  transition-timing-function: ease-in;
}
[data-sai][data-sai][data-sai-easing=ease-out],
body[data-sai-easing=ease-out] [data-sai] {
  transition-timing-function: ease-out;
}
[data-sai][data-sai][data-sai-easing=ease-in-out],
body[data-sai-easing=ease-in-out] [data-sai] {
  transition-timing-function: ease-in-out;
}
[data-sai][data-sai][data-sai-easing=ease-in-back],
body[data-sai-easing=ease-in-back] [data-sai] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-sai][data-sai][data-sai-easing=ease-out-back],
body[data-sai-easing=ease-out-back] [data-sai] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-sai][data-sai][data-sai-easing=ease-in-out-back],
body[data-sai-easing=ease-in-out-back] [data-sai] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-sai][data-sai][data-sai-easing=ease-in-sine],
body[data-sai-easing=ease-in-sine] [data-sai] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-sai][data-sai][data-sai-easing=ease-out-sine],
body[data-sai-easing=ease-out-sine] [data-sai] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-sai][data-sai][data-sai-easing=ease-in-out-sine],
body[data-sai-easing=ease-in-out-sine] [data-sai] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-sai][data-sai][data-sai-easing=ease-in-quad],
body[data-sai-easing=ease-in-quad] [data-sai] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-sai][data-sai][data-sai-easing=ease-out-quad],
body[data-sai-easing=ease-out-quad] [data-sai] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-sai][data-sai][data-sai-easing=ease-in-out-quad],
body[data-sai-easing=ease-in-out-quad] [data-sai] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-sai][data-sai][data-sai-easing=ease-in-cubic],
body[data-sai-easing=ease-in-cubic] [data-sai] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-sai][data-sai][data-sai-easing=ease-out-cubic],
body[data-sai-easing=ease-out-cubic] [data-sai] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-sai][data-sai][data-sai-easing=ease-in-out-cubic],
body[data-sai-easing=ease-in-out-cubic] [data-sai] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-sai][data-sai][data-sai-easing=ease-in-quart],
body[data-sai-easing=ease-in-quart] [data-sai] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-sai][data-sai][data-sai-easing=ease-out-quart],
body[data-sai-easing=ease-out-quart] [data-sai] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-sai][data-sai][data-sai-easing=ease-in-out-quart],
body[data-sai-easing=ease-in-out-quart] [data-sai] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-sai^=fade][data-sai^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-sai^=fade][data-sai^=fade].sai-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-sai=fade-up] {
  transform: translate3d(0, 40px, 0);
}
[data-sai=fade-down] {
  transform: translate3d(0, -100px, 0);
}
[data-sai=fade-right] {
  transform: translate3d(-100px, 0, 0);
}
[data-sai=fade-left] {
  transform: translate3d(100px, 0, 0);
}
[data-sai=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}
[data-sai=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}
[data-sai=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}
[data-sai=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}
[data-sai^=zoom][data-sai^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-sai^=zoom][data-sai^=zoom].sai-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
[data-sai=zoom-in] {
  transform: scale(0.6);
}
[data-sai=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-sai=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-sai=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-sai=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-sai=zoom-out] {
  transform: scale(1.2);
}
[data-sai=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-sai=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-sai=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-sai=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-sai^=slide][data-sai^=slide] {
  transition-property: transform;
}
[data-sai^=slide][data-sai^=slide].sai-animate {
  transform: translateZ(0);
}
[data-sai=slide-up] {
  transform: translate3d(0, 100%, 0);
}
[data-sai=slide-down] {
  transform: translate3d(0, -100%, 0);
}
[data-sai=slide-right] {
  transform: translate3d(-100%, 0, 0);
}
[data-sai=slide-left] {
  transform: translate3d(100%, 0, 0);
}
[data-sai^=flip][data-sai^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}
[data-sai=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-sai=flip-left].sai-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-sai=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-sai=flip-right].sai-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-sai=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-sai=flip-up].sai-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-sai=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-sai=flip-down].sai-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-sai^=target][data-sai^=target] {
  opacity: 1;
}
.main {
  min-height: 50vh;
}
.container {
  background: linear-gradient(0deg, #FFFCF7 0%, #F1EDE6 100%);
  position: relative;
  z-index: 2;
}
.header {
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  width: 100%;
  z-index: 99;
}
.header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
}
.header__inner {
  align-items: center;
  display: flex;
  pointer-events: none;
  position: relative;
  transition: padding 0.4s ease;
  width: 100%;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .header__inner {
    gap: 4rem;
    justify-content: flex-end;
    padding: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: flex-end;
    padding: 2rem;
  }
}
.header__inner > * {
  pointer-events: auto;
}
.header__inner::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.42) 35%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0) 100%);
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.header-logo {
  display: block;
  margin-right: auto;
  opacity: 0;
  transition: 0.4s ease;
  transition-property: opacity, visibility;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 27.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav__item {
  align-items: center;
  display: flex;
  line-height: 1.6;
  margin: 0;
}
.header-nav__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.8);
  content: "｜";
  margin: 0 1rem;
}
.header-nav__link {
  color: #fff;
  font-family: "Cormorant Infant", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-shadow: 0 0 0.4rem rgb(0, 0, 0);
  transition: opacity 0.3s;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header-nav__link:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link:hover {
    opacity: 0.7;
  }
}
.header-nav__link.is-current {
  pointer-events: none;
}
.header-cv {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header-cv {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    bottom: 0;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 1.6rem 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
    width: 100%;
    z-index: 98;
  }
}
.header-cv__item {
  margin: 0;
  padding: 0;
}
.header-cv__link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.6s ease;
  transition-property: background-color, border-color, color;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header-cv__link {
    border-radius: 1.6rem;
    font-size: 1.2rem;
    height: 3.2rem;
    padding: 0 1.4rem;
    width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv__link {
    border-radius: 1.8rem;
    font-size: 1.4rem;
    height: 3.6rem;
    width: 11rem;
  }
}
.header-cv__link--outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header-cv__link--outline {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 768px) {
  .header-cv__link--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #5e594f;
    color: #5e594f;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-cv__link--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #5e594f;
    color: #5e594f;
  }
}
.header-cv__link--request, .header-cv__link--event {
  background: #e7e4da;
  color: #4D5357;
}
@media screen and (min-width: 768px) {
  .header-cv__link--request:hover, .header-cv__link--event:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-cv__link--request:hover, .header-cv__link--event:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }
}
.header.is-scrolled .header-logo {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .header.is-scrolled .header__inner {
    padding: 1.6rem 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header.is-scrolled .header-cv {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}
@media screen and (max-width: 768px) {
  .header.is-contact .header-cv {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    visibility: hidden;
  }
}
.header-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .header-menu {
    display: none;
  }
}
.header-menu__btn {
  align-items: flex-end;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 1.4rem;
  justify-content: space-between;
  padding: 0;
  transition: opacity 0.3s;
  width: 3.2rem;
}
@media screen and (min-width: 768px) {
  .header-menu__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-menu__btn:hover {
    opacity: 0.8;
  }
}
.header-menu__btn.is-active .line:nth-child(1) {
  transform: translateY(0.1rem) rotate(-20deg);
  width: 100%;
}
.header-menu__btn.is-active .line:nth-child(2) {
  opacity: 0;
}
.header-menu__btn.is-active .line:nth-child(3) {
  transform: translateY(-0.1rem) rotate(20deg);
}
.header-menu__btn .line {
  background: #fff;
  display: block;
  height: 1px;
  transform-origin: right;
  transition: 0.3s ease;
  transition-property: width, opacity, transform;
}
.header-menu__btn .line:nth-child(1) {
  width: calc(100% - 1.2rem);
}
.header-menu__btn .line:nth-child(2) {
  width: calc(100% - 0.6rem);
}
.header-menu__btn .line:nth-child(3) {
  width: 100%;
}
.header-menu__ttl {
  color: #fff;
  font-family: "Cormorant Infant", serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.footer {
  color: #fff;
}
.footer-contact .contactSect {
  padding: 0;
}
.footer-contact .contactSect__card {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-contact .contactSect__inner {
    padding: 10rem 3.2rem 20rem;
  }
}
.footer-cap {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-cap {
    max-width: 128rem;
    padding: 8rem 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-cap {
    padding: 8rem 0 0;
    width: 32.6rem;
  }
}
.footer-cap .caption {
  color: #fff;
}
.footer-main {
  align-items: center;
  background: #5e594f;
  display: flex;
  flex-direction: column;
  position: relative;
}
.footer-main::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .footer-main__body {
    padding: 12rem 8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-main__body {
    padding: 10rem 3.2rem;
  }
}
.footer-main__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer-main__inner {
    align-items: flex-start;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    max-width: 128rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-main__inner {
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
}
.footer-main__left {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-main__left {
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-main__left {
    gap: 4rem;
  }
}
.footer-tel {
  color: #fff;
}
.footer-tel__lead {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer-tel__lead {
    line-height: 1.6;
    margin-bottom: 1.6rem;
    max-width: 32.6rem;
  }
}
.footer-tel__row {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-tel__row {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-tel__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.footer-tel__num {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: "Cormorant Infant", serif;
  font-size: 3.2rem;
  gap: 1rem;
  letter-spacing: 0.03em;
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-tel__num {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .footer-tel__num:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-tel__num:hover {
    opacity: 0.8;
  }
}
.footer-tel__num .hyphen {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
}
.footer-tel__num .icon {
  display: block;
  flex-shrink: 0;
  height: 1.92rem;
  width: 3.36rem;
}
.footer-tel__num .icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.footer-tel__hours {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  gap: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
}
.footer-tel__hoursRow {
  display: flex;
  gap: 0.4rem;
}
.footer-tel__hoursRow dt,
.footer-tel__hoursRow dd {
  margin: 0;
}
.footer-summary {
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-summary__title {
  font-family: "Cormorant Infant", serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
}
.footer-summary__txt {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer-summary__txt {
    max-width: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-summary__txt {
    max-width: 32.6rem;
  }
}
.footer-sitemap {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer-sitemap {
    gap: 2.4rem 4rem;
    width: 50.1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-sitemap {
    flex-direction: column;
    gap: 2.4rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer-sitemap__item {
    border-bottom: 1px dotted #b9a87a;
    padding-bottom: 0.8rem;
    width: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-sitemap__item {
    border-bottom: 1px dotted #b9a87a;
    padding-bottom: 0.8rem;
    width: 100%;
  }
}
.footer-sitemap__link {
  color: #fff;
  display: block;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-sitemap__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-sitemap__link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-sitemap__link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-sitemap__link:hover {
    opacity: 0.6;
  }
}
.footer-sitemap__link.is-current {
  opacity: 0.5;
  pointer-events: none;
}
.footer-companies {
  list-style: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer-companies {
    align-items: center;
    border-bottom: 1px solid rgba(185, 168, 122, 0.3);
    border-top: 1px solid rgba(185, 168, 122, 0.3);
    display: flex;
    gap: 6rem;
    justify-content: center;
    margin: 14rem auto 0;
    max-width: 128rem;
    padding: 4rem 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-companies {
    display: inline-flex;
    flex-direction: column;
    gap: 3.2rem;
    margin: 12rem auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer-companies__item {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-companies__item {
    gap: 2.4rem;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer-companies__item {
    gap: 3.2rem;
    width: 100%;
  }
}
.footer-companies__item--hoosiers .footer-companies__logo, .footer-companies__item--asahikasei .footer-companies__logo {
  width: 14rem;
}
.footer-companies__item--tokyu-resort .footer-companies__logo, .footer-companies__item--joe .footer-companies__logo {
  width: 20rem;
}
.footer-companies__role {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer-companies__role {
    width: 5.4rem;
  }
}
.footer-companies__logo {
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer-policy {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-policy {
    padding-top: 12rem;
  }
}
.footer-policy__title {
  color: #ccc;
  display: block;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-policy__title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-policy__title {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-policy__title + .footer-policy__list {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-policy__title + .footer-policy__list {
    margin-top: 1.4rem;
  }
}
.footer-policy__list {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer-policy__list {
    gap: 3.2rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .footer-policy__list {
    flex-wrap: wrap;
    gap: 1.6rem;
    margin: 0 -3.2rem;
  }
}
.footer-policy__link {
  color: #ccc;
  display: inline-block;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-policy__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-policy__link {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-policy__link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-policy__link:hover {
    opacity: 0.6;
  }
}
.footer-bottom {
  position: relative;
}
.footer-bottom__img {
  display: block;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-bottom__img {
    aspect-ratio: 1440/500;
  }
}
@media screen and (max-width: 768px) {
  .footer-bottom__img {
    aspect-ratio: 390/260;
  }
}
.footer-bottom__img picture,
.footer-bottom__img img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.footer-bottom__copyright {
  color: #fff;
  font-family: "Cormorant Infant", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .footer-bottom__copyright {
    bottom: 4rem;
    left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-bottom__copyright {
    bottom: 3.2rem;
    left: 3.2rem;
  }
}
.footer-bottom__pagetop {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 5rem;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  right: 0;
  transition: opacity 0.3s;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .footer-bottom__pagetop:hover {
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-bottom__pagetop:hover {
    opacity: 1;
  }
}
.footer-bottom__pagetop .icon {
  aspect-ratio: 19/27;
  color: inherit;
  display: block;
  width: 1.7rem;
}
.contentMenu {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
  z-index: 98;
}
.contentMenu.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.contentMenu__bg {
  background: rgba(30, 30, 30, 0.92);
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.contentMenu__inner {
  height: 100%;
  overflow-y: auto;
  position: relative;
  width: 100%;
}
.contentMenu__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  justify-content: center;
  padding: 12rem 3.2rem 8rem;
  width: 100%;
}
.contentMenu__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contentMenu__item {
  margin: 0;
  padding: 0;
}
.contentMenu__link {
  align-items: baseline;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  font-family: "Cormorant Infant", serif;
  font-size: 2rem;
  gap: 1.2rem 1.6rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.contentMenu__link.is-current {
  opacity: 0.5;
}
.contentMenu__link.is-off {
  opacity: 0.4;
  pointer-events: none;
}
.contentMenu__link.is-new {
  position: relative;
}
.contentMenu__link.is-new::after {
  background: #b9a87a;
  color: #fff;
  content: "NEW";
  font-family: "Cormorant Infant", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-left: 0.8rem;
  padding: 0 0.6rem;
}
.contentMenu__cv {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.contentMenu__cvItem {
  margin: 0;
  padding: 0;
}
.pageDirection {
  background: #25221f;
  color: #fff;
  width: 100%;
}
.pageDirection__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .pageDirection__inner {
    max-width: 128rem;
  }
}
@media screen and (max-width: 768px) {
  .pageDirection__inner {
    justify-content: center;
  }
}
.pageDirection__link {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "Cormorant Infant", serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pageDirection__link {
    gap: 1.6rem;
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pageDirection__link {
    gap: 1rem;
    padding: 4rem 3.2rem;
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .pageDirection__link:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pageDirection__link:hover {
    opacity: 0.7;
  }
}
.pageDirection__link .arrow {
  color: inherit;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .pageDirection__link .arrow {
    aspect-ratio: 65/15;
    width: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .pageDirection__link .arrow {
    aspect-ratio: 26/15;
    width: 2.5rem;
  }
}
.pageDirection__link--prev {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .pageDirection__link--prev {
    padding-right: 1.6rem;
  }
}
.pageDirection__link--next {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .pageDirection__link--next {
    padding-left: 1.6rem;
  }
}
.anchorList {
  margin: 0 auto;
}
.anchorList__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .anchorList__list {
    gap: 1rem;
  }
}
.anchorList__item {
  flex: 0 1 auto;
}
@media screen and (max-width: 768px) {
  .anchorList__item {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.anchorList__btn {
  align-items: center;
  background: #fff;
  border: 0.1rem solid #C9C2B2;
  color: #4D5357;
  display: flex;
  font-family: "Cormorant Infant", serif;
  justify-content: center;
  letter-spacing: 0.06em;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .anchorList__btn {
    font-size: 1.6rem;
    min-height: 5.6rem;
    min-width: 26rem;
    padding: 1.2rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .anchorList__btn {
    font-size: 1.3rem;
    height: 100%;
    line-height: 1.4;
    min-height: 5.2rem;
    padding: 1rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .anchorList__btn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchorList__btn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
.anchorList__btn.is-active {
  background: #9A8857;
  border-color: #9A8857;
  color: #fff;
  pointer-events: none;
}
.autoPlaySlider {
  position: relative;
}
.autoPlaySlider__controller {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .autoPlaySlider__controller {
    gap: 1rem;
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .autoPlaySlider__controller {
    gap: 1rem;
    margin-top: 4rem;
  }
}
.autoPlaySlider__btn {
  align-items: center;
  aspect-ratio: 1/1;
  border: 0.1rem solid #807c79;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 0;
  width: 3.2rem;
}
.autoPlaySlider__btn .icon {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  width: 1.2rem;
}
.autoPlaySlider__btn .icon .border {
  background-color: #ccc7c2;
  height: 1rem;
  width: 0.2rem;
}
.autoPlaySlider__btn.is-stop .icon {
  background-color: #ccc7c2;
  clip-path: polygon(30% 0%, 30% 100%, 90% 50%);
}
.autoPlaySlider__btn.is-stop .icon .border {
  display: none;
}
.autoPlaySlider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.autoPlaySlider--disableMode .autoPlaySlider__controller {
  display: none;
}
.generalSlider {
  position: relative;
}
.generalSlider .swiper-pagination {
  display: flex;
  justify-content: center;
  position: static;
}
@media screen and (min-width: 768px) {
  .generalSlider .swiper-pagination {
    gap: 8px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .generalSlider .swiper-pagination {
    gap: 4px;
    margin-top: 16px;
  }
}
.generalSlider .swiper-pagination-bullet {
  background-color: #5E594F;
  border-radius: 0;
  height: 0.6rem;
  margin: 0;
  opacity: 0.3;
  width: 0.6rem;
}
.generalSlider .swiper-pagination-bullet-active {
  opacity: 1;
}
.generalSlider .swiper-pagination-fraction {
  align-items: center;
  color: #17293a;
  display: flex;
  font-size: 1.2rem;
  gap: 0;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 0;
  width: auto;
}
.generalSlider__navigation {
  display: flex;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .generalSlider__navigation {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .generalSlider__navigation {
    padding: 0 8px;
  }
}
.generalSlider__bottomNav {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .generalSlider__bottomNav {
    gap: 6rem;
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .generalSlider__bottomNav {
    gap: 4rem;
    margin-top: 4rem;
  }
}
.generalSlider__bottomNav .swiper-pagination {
  gap: 2rem;
  margin-top: 0;
}
.generalSlider__dots {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.generalSlider__dot {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #5E594F;
  border: none;
  cursor: pointer;
  height: 0.6rem;
  opacity: 0.3;
  padding: 0;
  transition: opacity 0.4s ease;
  width: 0.6rem;
}
.generalSlider__dot.is-active {
  opacity: 1;
}
.generalSlider__prev, .generalSlider__next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  color: #5E594F;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease;
  width: 6.4rem;
}
.generalSlider__prev svg, .generalSlider__next svg {
  display: block;
  width: 100%;
}
.generalSlider__prev.swiper-button-disabled, .generalSlider__next.swiper-button-disabled {
  cursor: default;
  opacity: 0.3;
}
.generalSlider--disableMode .swiper {
  overflow: visible;
}
.generalSlider--disableMode .generalSlider__bottomNav,
.generalSlider--disableMode .generalSlider__navigation {
  display: none;
}
.circleBtn {
  align-items: center;
  backdrop-filter: blur(1rem);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #5e594f;
  display: flex;
  filter: drop-shadow(0 0 5rem rgba(0, 0, 0, 0.1));
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: background-color 0.6s ease;
}
@media screen and (min-width: 768px) {
  .circleBtn {
    height: 15rem;
    padding: 4rem 0 2rem;
    width: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .circleBtn {
    height: 12rem;
    padding: 2.8rem 0 1.5rem;
    width: 12rem;
  }
}
@media screen and (min-width: 768px) {
  .circleBtn:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media (hover: hover) and (pointer: fine) {
  .circleBtn:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.circleBtn__ttl {
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .circleBtn__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .circleBtn__ttl {
    font-size: 1.49rem;
  }
}
.circleBtn .arrow {
  color: inherit;
  display: block;
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .circleBtn .arrow {
    height: 1rem;
    width: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .circleBtn .arrow {
    height: 0.8rem;
    width: 2rem;
  }
}
.circleBtn .arrow svg {
  display: block;
  height: 100%;
  width: 100%;
}
.contactSect {
  position: relative;
}
@media screen and (min-width: 768px) {
  .contactSect {
    padding-bottom: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect {
    padding-bottom: 10rem;
  }
}
.contactSect__card {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.contactSect__bg {
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.contactSect__inner {
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .contactSect__inner {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    margin: 0 auto;
    padding: 8rem 11rem;
    width: 128rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 8rem 3.2rem 14rem;
  }
}
.contactSect__head {
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .contactSect__head {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__head {
    gap: 1.6rem;
  }
}
.contactSect__en {
  font-family: "Cormorant Infant", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}
.contactSect__lead {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contactSect__lead {
    text-shadow: 0 0 1rem rgb(0, 0, 0);
  }
}
.contactSect__cv {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .contactSect__cv {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__cv {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.contactSect__cvItem {
  margin: 0;
  padding: 0;
}
.cvBtn {
  border: 1px solid #fff;
  display: flex;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.6s ease;
  transition-property: background-color, border-color, color;
}
@media screen and (min-width: 768px) {
  .cvBtn {
    border-radius: 50%;
    flex-direction: column;
    height: 18rem;
    justify-content: center;
    width: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn {
    align-items: center;
    border-radius: 3rem;
    height: 6rem;
    justify-content: space-between;
    padding: 0 2.4rem;
    width: 28rem;
  }
}
.cvBtn--outline {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cvBtn--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #5e594f;
    color: #5e594f;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cvBtn--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #5e594f;
    color: #5e594f;
  }
}
.cvBtn--request, .cvBtn--event {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
  color: #5e594f;
}
@media screen and (min-width: 768px) {
  .cvBtn--request:hover, .cvBtn--event:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cvBtn--request:hover, .cvBtn--event:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }
}
.cvBtn__ttl {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .cvBtn__ttl {
    flex-direction: column;
    gap: 0.6rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__ttl {
    flex-direction: row;
    gap: 1.2rem;
  }
}
.cvBtn__ttl .en {
  color: inherit;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cvBtn__ttl .en {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__ttl .en {
    font-size: 2.2rem;
  }
}
.cvBtn__ttl .jp {
  color: inherit;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cvBtn__ttl .jp {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__ttl .jp {
    font-size: 1.2rem;
  }
}
.cvBtn .arrow {
  aspect-ratio: 26/15;
  color: inherit;
  display: block;
  height: auto;
  width: 2.4rem;
}
@media screen and (min-width: 768px) {
  .cvBtn .arrow {
    bottom: 2.8rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}
.generalModal {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  width: 100vw;
  z-index: 99999;
}
.generalModal.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.generalModal.is-disable {
  display: none;
}
.generalModal:has(.movieFrame) .generalModal__cont,
.generalModal:has(.movieFrame) .generalModal__inner {
  height: -moz-fit-content;
  height: fit-content;
}
.generalModal__bg {
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.generalModal__cont {
  height: 100%;
  margin: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .generalModal__cont {
    max-height: 80vh;
    max-width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .generalModal__cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: calc(100dvh - 16rem);
    width: 37rem;
  }
}
.generalModal__inner {
  overflow: auto;
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .generalModal__inner {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .generalModal__inner {
    width: 100%;
  }
}
.generalModal__inner::-webkit-scrollbar {
  display: none;
}
.generalModal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .generalModal__close {
    bottom: calc(100% + 2rem);
    height: 3.2rem;
    width: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .generalModal__close {
    bottom: calc(100% + 2rem);
    height: 2.4rem;
    width: 2.4rem;
  }
}
.generalModal__close::before, .generalModal__close::after {
  background-color: #fff;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}
.generalModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.generalModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.generalModal .movieFrame {
  aspect-ratio: 960/540;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .generalModal .movieFrame {
    height: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .generalModal .movieFrame {
    width: 100%;
  }
}
.generalModal .movieFrame__video {
  aspect-ratio: 960/540;
  background-color: #000;
  display: block;
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.generalTab {
  margin: 0 auto;
}
.generalTab__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .generalTab__list {
    gap: 1rem;
  }
}
.generalTab__item {
  flex: 0 1 auto;
}
@media screen and (max-width: 768px) {
  .generalTab__item {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.generalTab__btn {
  align-items: center;
  background: #fff;
  border: 0.1rem solid #C9C2B2;
  color: #4D5357;
  cursor: pointer;
  display: flex;
  font-family: "Cormorant Infant", serif;
  justify-content: center;
  letter-spacing: 0.06em;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .generalTab__btn {
    font-size: 1.6rem;
    min-height: 5.6rem;
    min-width: 26rem;
    padding: 1.2rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .generalTab__btn {
    font-size: 1.3rem;
    height: 100%;
    line-height: 1.4;
    min-height: 5.2rem;
    padding: 1rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .generalTab__btn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .generalTab__btn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
.generalTab__btn.is-active {
  background: #9A8857;
  border-color: #9A8857;
  color: #fff;
}
.heading {
  color: #9A8857;
  position: relative;
}
.heading--large {
  align-items: center;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading--large {
    font-size: 3.4rem;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--large {
    font-size: 2.4rem;
    gap: 0.8rem;
  }
}
.heading--large:before {
  background-color: currentcolor;
  content: "";
  margin: 0 auto;
  opacity: 0.5;
  order: 0;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .heading--large:before {
    height: 12rem;
    margin-bottom: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--large:before {
    height: 8rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--large + .txt {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--large + .txt {
    margin-top: 3.2rem;
  }
}
.heading--large .en {
  display: block;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .heading--large .en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--large .en {
    font-size: 1.3rem;
  }
}
.heading--default {
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .heading--default {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--default {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--default + .txt {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--default + .txt {
    margin-top: 3.2rem;
  }
}
.heading--medium {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .heading--medium {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--medium {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--medium + .txt {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--medium + .txt {
    margin-top: 1.6rem;
  }
}
.heading--small {
  color: #4D5357;
  line-height: 2.4;
}
@media screen and (min-width: 768px) {
  .heading--small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--small {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--small + .txt {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--small + .txt {
    margin-top: 1.6rem;
  }
}
.heading--center {
  text-align: center;
}
.heading--white {
  color: #fff;
}
.headingUnit {
  position: relative;
}
@media screen and (min-width: 768px) {
  .headingUnit--center .txt {
    margin-left: auto;
    margin-right: auto;
    max-width: 80.9rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .headingUnit--center .txt {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .headingUnit--center .caption {
    text-align: center;
  }
}
.infoCard {
  color: #4D5357;
  display: flex;
  flex-direction: column;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.infoCard__txt {
  color: inherit;
  margin: 0;
}
a.infoCard {
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a.infoCard:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  a.infoCard:hover {
    opacity: 0.7;
  }
}
.keyVisual {
  background-color: #5E594F;
  position: relative;
}
.keyVisual__body {
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: opacity 1.5s ease;
}
.keyVisual__body:after {
  aspect-ratio: 200/97;
  background: url("../imgs/img-cloud-02@1.5x.png") no-repeat center center/cover;
  content: "";
  opacity: 0.2;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .keyVisual__body:after {
    left: 57rem;
    top: 28.9rem;
    width: 143.3rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__body:after {
    left: 0.9rem;
    top: 14.8rem;
    width: 80rem;
  }
}
.keyVisual__scroll {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .keyVisual__scroll {
    right: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__scroll {
    right: 2rem;
  }
}
.keyVisual__scrollTxt {
  font-family: "Cormorant Infant", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
}
.keyVisual__scrollLine {
  position: relative;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .keyVisual__scrollLine {
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__scrollLine {
    height: 4rem;
  }
}
.keyVisual__scrollLine:before, .keyVisual__scrollLine:after {
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.keyVisual__scrollLine:before {
  background: currentcolor;
  opacity: 0.5;
}
.keyVisual__scrollLine:after {
  animation: scrollAssistLine 4s infinite ease;
  background: currentcolor;
  transform: scaleY(0);
  transform-origin: center top;
}
.keyVisual__image {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .keyVisual__image {
    aspect-ratio: 1440/800;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__image {
    aspect-ratio: 390/400;
  }
}
.keyVisual__image .photo,
.keyVisual__image .photo__pic {
  height: 100%;
}
.keyVisual__image .photo__image {
  filter: blur(10px) brightness(1.5);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: filter 1.8s ease, transform 1.8s ease;
  width: 100%;
}
.keyVisual.is-loaded .keyVisual__body {
  opacity: 1;
}
.keyVisual.is-loaded .keyVisual__image .photo__image {
  filter: blur(0) brightness(1);
  transform: scale(1);
}
.madoriCard {
  align-items: center;
  aspect-ratio: 440/636;
  background-color: #fff;
  box-shadow: 0 0 0.8rem rgba(51, 51, 51, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.4rem 0 4.7rem;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
  width: 100%;
}
.madoriCard__plan {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}
.madoriCard__plan img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.madoriCard__type {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
  z-index: 1;
}
.madoriCard__line {
  background-color: #B9A87A;
  height: 5.8rem;
  width: 1px;
}
.madoriCard__typeBody {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.madoriCard__typeName {
  color: #9A8857;
  font-family: "Cormorant Infant", serif;
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.madoriCard__typeSub {
  color: #9A8857;
  font-family: "Cormorant Infant", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.madoriCard__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  position: relative;
  z-index: 1;
}
.madoriCard__detail {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.madoriCard__spec {
  align-items: flex-end;
  color: #504E4A;
  display: flex;
  font-family: "Cormorant Infant", serif;
  font-size: 2.7rem;
  gap: 0.3rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.madoriCard__specNum {
  font-size: 3.3rem;
}
.madoriCard__area {
  align-items: flex-end;
  color: #504E4A;
  display: flex;
  font-family: "Cormorant Infant", serif;
  font-size: 2.7rem;
  gap: 0.3rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.madoriCard__unit {
  font-size: 0.75em;
}
.madoriCard__more {
  align-items: center;
  color: #5E594F;
  display: flex;
  font-family: "Cormorant Infant", serif;
  font-size: 1.3rem;
  gap: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.madoriCard__arrow {
  flex-shrink: 0;
  width: 2.1rem;
}
@media screen and (min-width: 768px) {
  .madoriDetail {
    padding: 16rem 0 12rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail {
    padding: 8rem 0;
  }
}
.madoriDetail__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .madoriDetail__inner {
    display: grid;
    grid-gap: 6rem;
    gap: 6rem;
    grid-template-columns: 40rem 1fr;
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}
.madoriDetail__info {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .madoriDetail__info {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__info {
    gap: 3.2rem;
  }
}
.madoriDetail__type {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.madoriDetail__type .line {
  background-color: #B9A87A;
  height: 7rem;
  width: 1px;
}
.madoriDetail__type .name {
  color: #9A8857;
  font-family: "Cormorant Infant", serif;
  font-size: 6rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.madoriDetail__type .sub {
  color: #9A8857;
  font-family: "Cormorant Infant", serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.madoriDetail__spec {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.madoriDetail__variation {
  align-items: baseline;
  color: #504E4A;
  display: flex;
  font-family: "Cormorant Infant", serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.madoriDetail__specNum {
  font-size: 4rem;
}
.madoriDetail__area {
  color: #504E4A;
  font-family: "Cormorant Infant", serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.madoriDetail__area .unit {
  font-size: 2.4rem;
}
.madoriDetail__area .tsubo {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
}
.madoriDetail__subLength {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.madoriDetail__subLength .item {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.madoriDetail__merit {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.madoriDetail__meritItem {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding-left: 1.8rem;
  position: relative;
}
.madoriDetail__meritItem::before {
  background-color: #9A8857;
  content: "";
  height: 0.8rem;
  left: 0;
  position: absolute;
  top: 0.8rem;
  width: 0.8rem;
}
.madoriDetail__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
}
.madoriDetail__legend .caption {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
}
.madoriDetail__legend .icon {
  display: inline-block;
  flex-shrink: 0;
}
.madoriDetail__legend .icon--floor, .madoriDetail__legend .icon--storage {
  aspect-ratio: 14/6;
  border: 1px solid rgba(153, 153, 153, 0.5);
  width: 2.8rem;
}
.madoriDetail__legend .icon--floor {
  background-color: #efe0d4;
}
.madoriDetail__legend .icon--storage {
  background-color: #eadab9;
}
.madoriDetail__legend .icon--wind {
  mix-blend-mode: multiply;
  width: 2.6rem;
}
.madoriDetail__legend .icon--light {
  width: 2.2rem;
}
.madoriDetail__figure {
  mix-blend-mode: darken;
}
@media screen and (min-width: 768px) {
  .madoriDetail__figure {
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__figure {
    margin: 0 -3.2rem;
  }
}
.madoriDetail__notes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .madoriDetail__notes {
    align-self: flex-end;
  }
}
.madoriDirection {
  align-items: center;
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .madoriDirection {
    padding-top: 8rem;
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDirection {
    flex-wrap: wrap;
    padding-top: 6rem;
  }
}
.madoriDirection__link {
  align-items: center;
  color: #9A8857;
  display: flex;
  font-family: "Cormorant Infant", serif;
  gap: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .madoriDirection__link {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDirection__link {
    font-size: 1.8rem;
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .madoriDirection__link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .madoriDirection__link:hover {
    opacity: 0.6;
  }
}
.madoriDirection__link--back {
  margin-right: auto;
}
.madoriDirection__link--next {
  margin-left: auto;
}
.madoriDirection__arrow {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .madoriDirection__arrow {
    width: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDirection__arrow {
    width: 5rem;
  }
}
.madoriDirection__list {
  align-items: center;
  background: #fff;
  border: 0.1rem solid #C9C2B2;
  color: #5E594F;
  display: inline-flex;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .madoriDirection__list {
    font-size: 1.4rem;
    min-width: 26rem;
    padding: 1.8rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDirection__list {
    font-size: 1.3rem;
    margin: 0 8.5rem 2.4rem;
    padding: 1.6rem 2rem;
    width: 15.6rem;
  }
}
@media screen and (min-width: 768px) {
  .madoriDirection__list:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .madoriDirection__list:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
.madoriList .swiper-wrapper {
  align-items: center;
}
.madoriList .swiper-slide {
  box-sizing: border-box;
  height: auto;
}
@media screen and (max-width: 768px) {
  .madoriList .swiper-slide {
    width: 26.8rem;
  }
}
.madoriList .madoriCard {
  transform: scale(0.8);
  transition: transform 0.6s ease;
}
.madoriList .swiper-slide-active .madoriCard {
  transform: scale(1);
}
.madoriList .generalSlider__prev,
.madoriList .generalSlider__next {
  color: #fff;
}
.madoriList .generalSlider__dot {
  background-color: #fff;
}
.madoriList .generalSlider--disableMode .swiper-wrapper {
  justify-content: center;
}
.madoriList .generalSlider--disableMode .madoriCard {
  transform: none;
}
.mapBtns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .mapBtns {
    gap: 2rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .mapBtns {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}
.mapBtn {
  align-items: center;
  background: #fff;
  border: 0.1rem solid #C9C2B2;
  color: #4D5357;
  cursor: pointer;
  display: inline-flex;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.08em;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .mapBtn {
    font-size: 1.5rem;
    min-width: 26rem;
    padding: 1.8rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .mapBtn {
    font-size: 1.4rem;
    padding: 1.6rem 2.4rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .mapBtn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mapBtn:hover {
    background: #9A8857;
    border-color: #9A8857;
    color: #fff;
  }
}
.mapBtn__icon {
  flex-shrink: 0;
  height: 2rem;
  width: 2rem;
}
.moviePlayer {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.moviePlayer__trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 0;
  position: relative;
  width: 100%;
}
.moviePlayer__trigger .photo {
  overflow: hidden;
}
.moviePlayer__trigger .photo__image {
  transition: filter 0.6s ease, transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .moviePlayer__trigger:hover .photo__image {
    filter: brightness(1.05);
    transform: scale(1.05);
  }
  .moviePlayer__trigger:hover .icon {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (hover: hover) and (pointer: fine) {
  .moviePlayer__trigger:hover .photo__image {
    filter: brightness(1.05);
    transform: scale(1.05);
  }
  .moviePlayer__trigger:hover .icon {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.moviePlayer__trigger .icon {
  align-items: center;
  aspect-ratio: 1/1;
  backdrop-filter: blur(2rem);
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .moviePlayer__trigger .icon {
    width: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .moviePlayer__trigger .icon {
    width: 8rem;
  }
}
.moviePlayer__trigger .icon .arrow {
  aspect-ratio: 18/21;
}
@media screen and (min-width: 768px) {
  .moviePlayer__trigger .icon .arrow {
    width: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .moviePlayer__trigger .icon .arrow {
    width: 1.4rem;
  }
}
.moviePlayer__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.moviePlayer__thumb .photo,
.moviePlayer__thumb .photo__pic {
  height: 100%;
  width: 100%;
}
.moviePlayer__thumb .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pageTtl {
  align-items: flex-end;
  background-color: #5E594F;
  display: flex;
}
@media screen and (min-width: 768px) {
  .pageTtl {
    gap: 5.6rem;
    padding: 0 0 7rem 8rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl {
    gap: 1rem;
    padding: 0 0 4rem 2rem;
  }
}
.pageTtl__bar {
  background-color: #4B473F;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .pageTtl__bar {
    height: 40rem;
    width: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__bar {
    height: 25rem;
    width: 0.7rem;
  }
}
.pageTtl__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pageTtl__ttl {
  color: #fff;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .pageTtl__ttl {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__ttl {
    font-size: 5rem;
  }
}
.pageTtl__lead {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .pageTtl__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__lead {
    font-size: 1.4rem;
  }
}
.parallaxPhoto {
  overflow: hidden;
  position: relative;
}
.swipeFigure {
  position: relative;
}
.swipeFigure[data-mode=""] .swipeFigure__inner {
  overflow-x: scroll;
  scrollbar-width: none;
}
.swipeFigure[data-mode=""] .swipeFigure__inner::-webkit-scrollbar {
  display: none;
}
.swipeFigure[data-mode=""] .photo,
.swipeFigure[data-mode=""] .photo__pic,
.swipeFigure[data-mode=""] .photo__image {
  height: 100%;
  max-width: none;
  max-width: initial;
  width: auto;
}
@media screen and (min-width: 768px) {
  .swipeFigure[data-mode=pc] .swipeFigure__inner {
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .swipeFigure[data-mode=pc] .swipeFigure__inner::-webkit-scrollbar {
    display: none;
  }
  .swipeFigure[data-mode=pc] .photo,
  .swipeFigure[data-mode=pc] .photo__pic,
  .swipeFigure[data-mode=pc] .photo__image {
    height: 100%;
    max-width: none;
    max-width: initial;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .swipeFigure[data-mode=pc] .swipeFigure__guide {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .swipeFigure[data-mode=sp] .swipeFigure__inner {
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .swipeFigure[data-mode=sp] .swipeFigure__inner::-webkit-scrollbar {
    display: none;
  }
  .swipeFigure[data-mode=sp] .photo,
  .swipeFigure[data-mode=sp] .photo__pic,
  .swipeFigure[data-mode=sp] .photo__image {
    height: 100%;
    max-width: none;
    max-width: initial;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .swipeFigure[data-mode=sp] .swipeFigure__guide {
    display: none;
  }
}
.swipeFigure__body {
  position: relative;
}
.swipeFigure__inner {
  height: 100%;
  outline: none;
  position: relative;
}
.swipeFigure__caption {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt";
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: absolute;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
.swipeFigure__caption--capIn {
  bottom: 0.5rem;
  right: 0.5rem;
  text-align: right;
}
.swipeFigure__caption--capIn[data-color=label] {
  bottom: 0;
  right: 0;
}
.swipeFigure__caption--capOut {
  padding-top: 0.5rem;
  right: 0;
  top: 100%;
}
.swipeFigure__guide {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgba(34, 34, 34, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 5rem;
}
.swipeFigure__guide .icon {
  aspect-ratio: 21/28;
  width: 2.1rem;
}
.scrollAssist {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.scrollAssist .text {
  color: inherit;
  font-family: "Cormorant Infant", serif;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .scrollAssist .text {
    writing-mode: vertical-rl;
  }
}
.scrollAssist .line {
  display: block;
  position: relative;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .scrollAssist .line {
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .scrollAssist .line {
    height: 4rem;
  }
}
.scrollAssist .line:before, .scrollAssist .line:after {
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.scrollAssist .line:before {
  background: currentcolor;
  opacity: 0.5;
}
.scrollAssist .line:after {
  animation: scrollAssistLine 4s infinite ease;
  background: currentcolor;
  transform: scaleY(0);
  transform-origin: center top;
}
.scrollAssist--dark {
  color: #4D5357;
}
@keyframes scrollAssistLine {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}
.textureBg {
  position: relative;
  z-index: 1;
}
.textureBg:after {
  background: repeat-y center top/100% auto;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .textureBg:after {
    background-image: url("../imgs/pc/bg-01@1.5x.jpg");
  }
}
@media screen and (max-width: 768px) {
  .textureBg:after {
    background-image: url("../imgs/sp/bg-01.jpg");
  }
}
@media screen and (min-width: 768px) {
  .wrap .textureBg:after {
    margin: 0 -8rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap .textureBg:after {
    margin: 0 -3.2rem;
  }
}
.thumbSlider__main {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .thumbSlider__main {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 768px) {
  .thumbSlider__main {
    aspect-ratio: 4/3;
  }
}
.thumbSlider__main .swiper-wrapper,
.thumbSlider__main .swiper-slide {
  height: 100%;
}
.thumbSlider__main .photo,
.thumbSlider__main .photo__pic {
  height: 100%;
}
.thumbSlider__main .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.thumbSlider__thumbs {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
}
@media screen and (min-width: 768px) {
  .thumbSlider__thumbs {
    gap: 1.6rem;
    margin-top: 2rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .thumbSlider__thumbs {
    gap: 1.2rem;
    margin-top: 1.6rem;
    padding: 0 3.6rem;
  }
}
.thumbSlider__thumb {
  aspect-ratio: 16/9;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 0;
  opacity: 0.45;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .thumbSlider__thumb {
    width: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .thumbSlider__thumb {
    width: 9rem;
  }
}
.thumbSlider__thumb .photo,
.thumbSlider__thumb .photo__pic {
  height: 100%;
}
.thumbSlider__thumb .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.thumbSlider__thumb:after {
  border: 0.2rem solid #9A8857;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .thumbSlider__thumb:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .thumbSlider__thumb:hover {
    opacity: 0.8;
  }
}
.thumbSlider__thumb.is-active {
  opacity: 1;
}
.thumbSlider__thumb.is-active:after {
  opacity: 1;
}
.thumbSlider__cap {
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .thumbSlider__cap {
    margin-top: 1.2rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .thumbSlider__cap {
    margin-top: 1.2rem;
    padding: 0 3.6rem;
    text-align: left;
  }
}
.txt {
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .txt + .caption {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .txt + .caption {
    margin-top: 1.4rem;
  }
}
.txt .caption {
  color: currentcolor;
}
@media screen and (min-width: 768px) {
  .txt--small {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .txt--small {
    font-size: 1.3rem;
  }
}
.photo {
  position: relative;
}
.photo__image {
  width: 100%;
}
.photo__caption {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt";
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: absolute;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
.photo__caption--capIn {
  bottom: 0.5rem;
  right: 0.5rem;
  text-align: right;
}
.photo__caption--capIn[data-color=label] {
  bottom: 0;
  right: 0;
}
.photo__caption--capOut {
  padding-top: 0.5rem;
  right: 0;
  top: 100%;
}
.photo__pic {
  display: block;
}
.photo--fit {
  height: 100%;
}
.photo--fit .photo__pic,
.photo--fit .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo--shadow {
  box-shadow: 0 2rem 2rem rgba(18, 15, 4, 0.1);
}
.zoomFigure {
  background-color: #d7d8d5;
  position: relative;
}
.zoomFigure__inner {
  overflow: hidden;
  position: relative;
  touch-action: none;
}
.zoomFigure__scene {
  cursor: default;
  display: inline-block;
  min-height: 100%;
  min-width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .zoomFigure[data-mode=sp] .zoomFigure__scene {
    cursor: grab;
  }
  .zoomFigure[data-mode=sp] .zoomFigure__scene:active {
    cursor: grabbing;
  }
}
@media screen and (min-width: 768px) {
  .zoomFigure[data-mode=pc] .zoomFigure__scene {
    cursor: grab;
  }
  .zoomFigure[data-mode=pc] .zoomFigure__scene:active {
    cursor: grabbing;
  }
}
.zoomFigure[data-mode=both] .zoomFigure__scene {
  cursor: grab;
}
.zoomFigure[data-mode=both] .zoomFigure__scene:active {
  cursor: grabbing;
}
.zoomFigure__scene .photo,
.zoomFigure__scene .photo__pic,
.zoomFigure__scene .photo__image {
  display: block;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  pointer-events: none;
  width: auto;
}
.zoomFigure__controls {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .zoomFigure[data-mode=sp] .zoomFigure__controls {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .zoomFigure[data-mode=pc] .zoomFigure__controls {
    display: flex;
  }
}
.zoomFigure[data-mode=both] .zoomFigure__controls {
  display: flex;
}
.zoomFigure__btn {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
  color: #333;
  cursor: pointer;
  display: flex;
  height: 4rem;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease;
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .zoomFigure__btn:hover {
    background-color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .zoomFigure__btn:hover {
    background-color: #fff;
  }
}
.zoomFigure__icon {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/* BASE */
/* stylelint-disable */
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui,-apple-system,Segoe UI,Ubuntu,Cantarell,Noto Sans, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}
/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}
/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}
/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/* stylelint-enable */
/* stylelint-disable */
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}
/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  word-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}
/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}
/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}
/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}
/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}
/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}
:where(dialog:not([open])) {
  display: none;
}
/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: inline;
  display: initial;
}
:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/* stylelint-enable */
/*! Yaku Han JP v4.1.1 (OFL-1.1 AND MIT) by Qrac | Type: YakuHanJP - Based on Noto Sans JP */
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Thin.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-ExtraLight.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Light.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Regular.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Medium.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-SemiBold.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Bold.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-ExtraBold.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanJP;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/YakuHanJP/YakuHanJP-Black.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
/*! Yaku Han JP v4.1.1 (OFL-1.1 AND MIT) by Qrac | Type: YakuHanMP - Based on Noto Serif JP */
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-ExtraLight.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-Light.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-Regular.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-Medium.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-SemiBold.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-Bold.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
@font-face {
  font-family: YakuHanMP;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/YakuHanMP/YakuHanMP-Black.woff2) format("woff2");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
/* BASE */
:root {
  --scrollbar: 0px;
}
/* VENDOR */
/*# sourceMappingURL=common.css.map */
