@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;
}
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;
}
body {
  background: #fff;
}
@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-color: #EBE7DE;
  color: #17293A;
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .currentPage {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .currentPage {
    box-sizing: border-box;
    font-size: 1.2rem;
    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;
  }
}
@media screen and (max-width: 768px) {
  .currentPage:has(.pageLayer) {
    padding-top: 13.8rem;
  }
}
a {
  color: #17293A;
  -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: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 3.6rem;
  }
}
.caption,
.photo__caption {
  color: #666;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.caption[data-color=white],
.photo__caption[data-color=white] {
  color: #fff;
}
.caption[data-color=gray],
.photo__caption[data-color=gray] {
  color: #475766;
}
.caption[data-color=black],
.photo__caption[data-color=black] {
  color: #17293A;
}
.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;
}
.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;
}
.commingSoonTxt {
  border: 1px solid #A1957D;
  color: #A1957D;
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.2rem 1.6rem;
}
.is-dummy {
  position: relative;
}
.is-dummy::after {
  background-color: #FF01A6;
  color: #fff;
  content: "ダミー";
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.5rem 1.7rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.spAlert {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", 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 {
  position: relative;
}
.header__inner {
  align-items: center;
  display: flex;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .header__inner {
    gap: 4.8rem;
    padding: 4rem 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    gap: 3.4rem;
    padding: 2rem;
  }
}
.header__inner:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 99.9%);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .header__inner:after {
    aspect-ratio: 1440/180;
  }
}
@media screen and (max-width: 768px) {
  .header__inner:after {
    aspect-ratio: 390/120;
  }
}
.header__inner > * {
  pointer-events: auto;
}
.header-cv {
  align-items: center;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .header-cv {
    gap: 0.8rem;
    margin-left: auto;
    position: relative;
    z-index: 999;
  }
}
@media screen and (max-width: 768px) {
  .header-cv {
    bottom: 2rem;
    gap: 1.2rem;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
  }
}
.header-cv .cvBtn {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header-cv .cvBtn {
    height: 3.8rem;
    width: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv .cvBtn {
    border-radius: 50%;
    height: 7.2rem;
    width: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv .cvBtn__link {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .header-cv .cvBtn__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv .cvBtn__ttl {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-cv .cvBtn__icon {
    width: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .header-cv .cvBtn--off .cvBtn__ttl {
    font-size: 0.88rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv .cvBtn--off .cvBtn__ttl {
    font-size: 0.8rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-cv .cvBtn--off .cvBtn__soon {
    font-size: 0.96rem;
  }
}
@media screen and (max-width: 768px) {
  .header-cv .cvBtn--off .cvBtn__soon {
    font-size: 0.65rem;
  }
}
.header-transparent {
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header-transparent {
    margin-left: auto;
  }
}
.header-transparent__toggle {
  align-items: center;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: flex;
  font-family: "EB Garamond", serif;
  justify-content: center;
  line-height: 0.96;
}
@media screen and (min-width: 768px) {
  .header-transparent__toggle {
    font-size: 1.5rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-transparent__toggle {
    font-size: 1.5rem;
    gap: 2rem;
  }
}
.header-transparent__toggle .arrow {
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header-transparent__toggle .arrow {
    width: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-transparent__toggle .arrow {
    width: 1.2rem;
  }
}
.header-transparent__toggle.is-active .arrow {
  transform: rotate(180deg);
}
.header-transparent__list {
  backdrop-filter: blur(10rem);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  left: 50%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.4s ease;
  transition-property: opacity, visibility;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .header-transparent__list {
    border-radius: 0.8rem;
    gap: 1.4rem;
    padding: 1.2rem;
    top: calc(100% + 1rem);
  }
}
@media screen and (max-width: 768px) {
  .header-transparent__list {
    border-radius: 0.8rem;
    gap: 1.4rem;
    padding: 1.2rem;
    top: calc(100% + 1rem);
  }
}
.header-transparent__list.is-active {
  opacity: 1;
  visibility: visible;
}
.header-transparent__btn {
  color: #fff;
  display: flex;
  font-family: "EB Garamond", serif;
  justify-content: center;
  line-height: 0.96;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-transparent__btn {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header-transparent__btn {
    font-size: 1.5rem;
  }
}
.header-transparent__btn.is-active .ttl {
  border-bottom: 1px solid #fff;
}
.header-menu {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-menu {
    gap: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu {
    flex-direction: column;
    gap: 0.8rem;
    margin-left: auto;
  }
}
.header-menu__ttl {
  color: #fff;
  font-family: "EB Garamond", serif;
  line-height: 0.7;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header-menu__ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu__ttl {
    font-size: 1.5rem;
  }
}
.header-menu__btn {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header-menu__btn {
    gap: 0.5rem;
    width: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu__btn {
    gap: 0.5rem;
    width: 4rem;
  }
}
.header-menu__btn.is-active .header-menu__line:nth-child(1) {
  transform: rotate(15deg);
}
@media screen and (min-width: 768px) {
  .header-menu__btn.is-active .header-menu__line:nth-child(1) {
    top: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu__btn.is-active .header-menu__line:nth-child(1) {
    top: 0.1rem;
  }
}
.header-menu__btn.is-active .header-menu__line:nth-child(2) {
  transform: scaleX(0);
}
.header-menu__btn.is-active .header-menu__line:nth-child(3) {
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  .header-menu__btn.is-active .header-menu__line:nth-child(3) {
    bottom: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu__btn.is-active .header-menu__line:nth-child(3) {
    bottom: 0.1rem;
  }
}
.header-menu__line {
  background-color: #fff;
  display: block;
  height: 1px;
  position: relative;
  transform-origin: left top;
  transition: 0.3s ease;
  transition-property: transform, top, bottom;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-menu__line:nth-child(2) {
    width: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu__line:nth-child(2) {
    width: 3.2rem;
  }
}
.footer {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto, linear-gradient(153deg, #17293A 0%, #19436A 100%);
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 12rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 8rem 1rem 14rem;
  }
}
.footer-logo {
  display: flex;
}
.footer-logo .mansionsymbol {
  position: static;
  z-index: 1;
}
.footer-body {
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-body {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .footer-body {
    flex-direction: column;
    gap: 4rem;
  }
}
.footer-menu {
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-menu {
    border-left: 1px solid rgba(161, 170, 179, 0.2);
    flex-wrap: wrap;
    gap: 2rem 2.4rem;
    justify-content: flex-end;
    padding-left: 6.6rem;
    width: 96.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-menu {
    border-top: 1px solid rgba(161, 170, 179, 0.2);
    flex-direction: column;
    gap: 2.2rem;
    padding-left: 0.5rem;
    padding-top: 4rem;
  }
}
.footer-menu__link {
  align-items: center;
  color: #fff;
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-menu__link {
    gap: 2rem;
    padding-bottom: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-menu__link {
    gap: 1rem;
    padding-bottom: 0.2rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-menu__link:hover .ttl:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-menu__link:hover .ttl:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.footer-menu__link:before {
  aspect-ratio: 1/1;
  background-color: #A1957D;
  border-radius: 50%;
  content: "";
  width: 0.6rem;
}
.footer-menu__link .ttl {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  position: relative;
}
.footer-menu__link .ttl:after {
  background-color: #A1957D;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  width: 100%;
}
.footer-menu__link .en {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
.footer-menu__link .jp {
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.footer-menu__link.is-active {
  pointer-events: none;
}
.footer-menu__link.is-active .ttl:after {
  transform: scaleX(1);
}
.footer-menu__link.is-off {
  pointer-events: none;
}
.footer-menu__link.is-off .ttl {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}
.footer-contact__ttl {
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer-contact__ttl .name {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact__ttl .name {
    font-size: 1.2rem;
  }
}
.footer-contact__tel {
  color: #A1957D;
  display: inline-block;
  font-family: "EB Garamond", serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer-contact__tel {
    font-size: 4.4rem;
    margin-top: 1.4rem;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact__tel {
    font-size: 4.2rem;
    margin-top: 1.6rem;
  }
}
.footer-contact__time {
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer-contact__time {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact__time {
    margin-top: 2.2rem;
  }
}
.footer-corporateArea {
  border-top: 1px solid rgba(161, 170, 179, 0.2);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-corporateArea {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-top: 12rem;
    padding-top: 4rem;
    row-gap: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-corporateArea {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
.footer-residenceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .footer-residenceList {
    gap: 1rem 3.2rem;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .footer-residenceList {
    gap: 1rem 2rem;
  }
}
.footer-residenceList__item {
  align-items: flex-start;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-residenceList__item {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer-residenceList__item {
    justify-content: flex-start;
  }
}
.footer-residenceList__link {
  align-items: center;
  color: #A1AAB3;
  display: inline-flex;
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  gap: 0.4rem;
  letter-spacing: 0;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer-residenceList__link:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-residenceList__link:hover {
    opacity: 0.7;
  }
}
.footer-residenceList__link .arrow {
  aspect-ratio: 1/1;
  height: auto;
  width: 1rem;
}
.footer-corporateList {
  align-items: flex-start;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer-corporateList {
    gap: 4rem;
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 768px) {
  .footer-corporateList {
    align-items: center;
    flex-direction: column;
    gap: 4rem;
  }
}
.footer-corporateList__item {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer-corporateList__item {
    align-items: center;
  }
}
.footer-corporateList__item .role {
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.footer-corporateList__item .name {
  font-size: 1.8rem;
  line-height: 1;
}
.footer-copyright {
  color: #A1AAB3;
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .bottomArea {
    padding-bottom: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomArea {
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .bottomArea-contact {
    padding-top: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomArea-contact {
    padding-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .bottomArea-caption {
    padding-top: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomArea-caption {
    padding-top: 10rem;
  }
}
.mansionsymbol {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .mansionsymbol {
    gap: 2.8rem;
    left: 3.2rem;
    top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .mansionsymbol {
    gap: 1.6rem;
    left: 2rem;
    top: 2rem;
  }
}
.mansionsymbol__label {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .mansionsymbol__label {
    font-size: 1rem;
    padding: 0.4rem 1.6rem 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .mansionsymbol__label {
    font-size: 0.8rem;
    padding: 0.4rem 1.6rem 0.6rem;
  }
}
.mansionsymbol-bukkenLogo {
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1);
  width: 100%;
}
.mansionsymbol-bukkenLogo__link {
  align-items: center;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mansionsymbol-bukkenLogo__link {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .mansionsymbol-bukkenLogo__link {
    gap: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .mansionsymbol-bukkenLogo__image--brand {
    width: 5.9rem;
  }
}
@media screen and (max-width: 768px) {
  .mansionsymbol-bukkenLogo__image--brand {
    width: 4.7rem;
  }
}
@media screen and (min-width: 768px) {
  .mansionsymbol-bukkenLogo__image--bukken {
    width: 14.4rem;
  }
}
@media screen and (max-width: 768px) {
  .mansionsymbol-bukkenLogo__image--bukken {
    width: 11.6rem;
  }
}
.contentMenu {
  color: #fff;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 99;
}
.contentMenu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .contentMenu {
    padding: 22rem 0 18rem;
  }
}
@media screen and (max-width: 768px) {
  .contentMenu {
    padding: 13rem 3.2rem;
  }
}
.contentMenu__bg {
  backdrop-filter: blur(10rem);
  background: linear-gradient(0deg, rgba(0, 51, 87, 0.2) 0%, rgba(0, 51, 87, 0.2) 100%), rgba(18, 22, 26, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.9s;
  transition-property: opacity, visibility;
  transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1);
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.contentMenu__bg:after {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.contentMenu.is-visible {
  visibility: visible;
}
.contentMenu.is-visible .contentMenu-inner {
  opacity: 1;
  transition: 0.3s 0.28s;
  visibility: visible;
}
.contentMenu.is-visible .mansionsymbol {
  opacity: 1;
  transition: 0.3s;
  visibility: visible;
}
.contentMenu.is-visible .contentMenu__bg {
  opacity: 1;
  transition: 0.3s;
  visibility: visible;
}
.contentMenu .mansionsymbol {
  opacity: 0;
  position: fixed;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1);
  visibility: hidden;
  z-index: 999;
}
.contentMenu-inner {
  margin: 0 auto;
  opacity: 0;
  position: relative;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1);
  visibility: hidden;
  width: 100%;
  z-index: 9;
}
.contentMenu-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contentMenu-list {
    display: grid;
    grid-gap: 3.2rem 4.8rem;
    gap: 3.2rem 4.8rem;
    grid-template-columns: 1.0328fr 1fr;
    padding: 0 4rem 5.6rem;
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .contentMenu-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-bottom: 4rem;
  }
}
.contentMenu-list__link {
  align-items: center;
  color: #fff;
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contentMenu-list__link {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contentMenu-list__link {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contentMenu-list__link:hover .ttl:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contentMenu-list__link:hover .ttl:after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.contentMenu-list__link:before {
  aspect-ratio: 1/1;
  background-color: #A1907D;
  border-radius: 50%;
  content: "";
  width: 0.6rem;
}
.contentMenu-list__link .ttl {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  position: relative;
}
.contentMenu-list__link .ttl:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  width: 100%;
}
.contentMenu-list__link .en {
  font-family: "EB Garamond", serif;
  letter-spacing: 0;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .contentMenu-list__link .en {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 768px) {
  .contentMenu-list__link .en {
    font-size: 2rem;
  }
}
.contentMenu-list__link .jp {
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.contentMenu-list__link.is-active {
  pointer-events: none;
}
.contentMenu-list__link.is-active .ttl:after {
  transform: scaleX(1);
}
.contentMenu-list__link.is-off {
  pointer-events: none;
}
.contentMenu-list__link.is-off .ttl {
  opacity: 0.2;
}
.informationSect {
  border-bottom: 1px solid #D8D4CD;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .informationSect {
    align-items: flex-start;
    display: flex;
    padding-bottom: 4rem;
    width: 89rem;
  }
}
@media screen and (max-width: 768px) {
  .informationSect {
    padding: 0 1rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .informationSect__head {
    padding-top: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .informationSect__head + .informationSect__body {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .informationSect__body {
    margin-left: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  .informationSect__body + .informationSect__cvArea {
    margin-top: 2rem;
  }
}
.informationSect__cvArea {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .informationSect__cvArea {
    margin-left: auto;
  }
}
.informationCard__heading {
  letter-spacing: 0.05em;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .informationCard__heading {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .informationCard__heading {
    font-size: 2.8rem;
    text-align: center;
  }
}
.contactSect {
  position: relative;
}
.contactSect__head {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contactSect__head {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 768px) {
  .contactSect__head {
    position: relative;
  }
}
.contactSect__ttl {
  font-family: "EB Garamond", serif;
  line-height: 1.25;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contactSect__ttl {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__ttl {
    font-size: 4.8rem;
  }
}
.contactSect__ttl:before {
  aspect-ratio: 1/1;
  background-color: #A1957D;
  border-radius: 50%;
  content: "";
  display: block;
}
@media screen and (min-width: 768px) {
  .contactSect__ttl:before {
    margin-left: 0.4rem;
    width: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__ttl:before {
    margin-left: 0.4rem;
    width: 0.6rem;
  }
}
.contactSect__lead {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contactSect__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__lead {
    font-size: 1.4rem;
  }
}
.contactSect__list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .contactSect__list {
    gap: 0.8rem;
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__list {
    flex-direction: column;
    gap: 2rem;
    left: 0;
    position: absolute;
    top: calc(100% + 8.7rem);
  }
}
@media screen and (min-width: 768px) {
  .contactSect__body {
    margin: 0 -12rem 0 auto;
    width: 97.1rem;
  }
}
@media screen and (max-width: 768px) {
  .contactSect__body {
    margin: 3.2rem -3.6rem 0 auto;
    width: 27.4rem;
  }
}
.newsSect {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .newsSect {
    align-items: flex-start;
    display: flex;
    gap: 13.5rem;
    justify-content: space-between;
    width: 89rem;
  }
}
@media screen and (max-width: 768px) {
  .newsSect {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 768px) {
  .newsSect__head {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .newsSect__head + .newsSect__body {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .newsSect__body {
    width: 70.8rem;
  }
}
.newsSect__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.newsCard {
  align-items: flex-start;
  backdrop-filter: blur(2.4rem);
  background-color: rgba(255, 255, 255, 0.2);
  color: #17293A;
  display: flex;
  position: relative;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
  .newsCard {
    gap: 4rem;
    padding: 1.6rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .newsCard {
    gap: 2rem;
    padding: 1.6rem 1rem;
  }
}
.newsCard__data {
  color: #475766;
  font-family: "EB Garamond", serif;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .newsCard__data {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .newsCard__data {
    font-size: 1.3rem;
  }
}
.newsCard__ttl {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .newsCard__ttl {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .newsCard__ttl {
    font-size: 1.2rem;
  }
}
.newsCard--link .newsCard__ttl {
  border-bottom: 1px solid rgba(161, 149, 125, 0.5);
}
@media screen and (min-width: 768px) {
  .newsCard--link:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .newsCard--link:hover {
    opacity: 0.7;
  }
}
.cvBtn {
  background: linear-gradient(90deg, #D6C4A0 0%, #FCF9F0 50%, #D6C4A0 100%);
  border-radius: 99.9rem;
  padding: 1px;
}
@media screen and (min-width: 768px) {
  .cvBtn {
    height: 4.8rem;
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn {
    height: 4.8rem;
    width: 20rem;
  }
}
.cvBtn__link {
  align-items: center;
  backdrop-filter: blur(2rem);
  border-radius: 99.9rem;
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  transition: opacity 0.4s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cvBtn__link {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__link {
    gap: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .cvBtn__link:hover {
    opacity: 0.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cvBtn__link:hover {
    opacity: 0.8;
  }
}
.cvBtn__icon {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .cvBtn__icon {
    width: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__icon {
    width: 1.6rem;
  }
}
.cvBtn__ttl {
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cvBtn__ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn__ttl {
    font-size: 1.4rem;
  }
}
.cvBtn--vacancy .cvBtn__link {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto, linear-gradient(90deg, #19436A 0%, #6587A6 100%);
}
.cvBtn--reserve .cvBtn__link {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto, linear-gradient(90deg, #17293A 0%, #19436A 100%);
}
.cvBtn--contact .cvBtn__link {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto, linear-gradient(90deg, #A18C61 0%, #A1957D 100%);
}
.cvBtn--off {
  background: linear-gradient(90deg, #878787 0%, #ddd 50%, #868686 100%);
}
.cvBtn--off .cvBtn__link {
  background-color: #d7d7d7;
  border: 1px solid #d7d7d7;
  color: #a1aab3;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .cvBtn--off .cvBtn__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn--off .cvBtn__ttl {
    font-size: 1.2rem;
  }
}
.cvBtn--off .cvBtn__soon {
  font-family: "EB Garamond", serif;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cvBtn--off .cvBtn__soon {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cvBtn--off .cvBtn__soon {
    font-size: 1.5rem;
  }
}
.enTtl {
  color: #A1957D;
  font-family: "EB Garamond", serif;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .enTtl {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .enTtl {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .enTtl + .heading {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .enTtl + .heading {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .enTtl + .txt {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .enTtl + .txt {
    margin-top: 3.2rem;
  }
}
.enHeading {
  font-family: "EB Garamond", serif;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .enHeading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .enHeading {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .enHeading + .heading, .enHeading + .txt {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .enHeading + .heading, .enHeading + .txt {
    margin-top: 2.4rem;
  }
}
.enHeading--gold {
  color: #A1957D;
}
.heading--default {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@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;
  }
}
@media screen and (min-width: 768px) {
  .heading--medium {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--medium {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--medium .small {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--medium .small {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--medium + .txt {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--medium + .txt {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--small {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--small {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .heading--small + .txt {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .heading--small + .txt {
    margin-top: 2.4rem;
  }
}
.heading--center {
  text-align: center;
}
.heading--white {
  color: #fff;
}
.heading--gold {
  color: #d6c4a0;
}
.headingUnit {
  position: relative;
}
.headingUnit--center .enTtl,
.headingUnit--center .enHeading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .headingUnit--center .txt {
    margin-left: auto;
    margin-right: auto;
    max-width: 65.2rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .headingUnit--center .caption {
    text-align: center;
  }
}
.autoPlaySlider {
  position: relative;
}
.autoPlaySlider__controller {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .autoPlaySlider__controller {
    gap: 10px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .autoPlaySlider__controller {
    gap: 10px;
    margin-top: 40px;
  }
}
.autoPlaySlider__btn {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #807c79;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .autoPlaySlider__btn {
    width: 32px;
  }
}
@media screen and (max-width: 768px) {
  .autoPlaySlider__btn {
    width: 32px;
  }
}
.autoPlaySlider__btn .icon {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .autoPlaySlider__btn .icon {
    gap: 2px;
    width: 12px;
  }
}
@media screen and (max-width: 768px) {
  .autoPlaySlider__btn .icon {
    gap: 2px;
    width: 12px;
  }
}
.autoPlaySlider__btn .icon .border {
  background-color: #ccc7c2;
}
@media screen and (min-width: 768px) {
  .autoPlaySlider__btn .icon .border {
    height: 10px;
    width: 2px;
  }
}
@media screen and (max-width: 768px) {
  .autoPlaySlider__btn .icon .border {
    height: 10px;
    width: 2px;
  }
}
.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: #ddd;
  opacity: 1;
}
.generalSlider .swiper-pagination-bullet-active {
  background-color: #a1957d;
}
.generalSlider .swiper-pagination-fraction {
  align-items: center;
  color: #17293a;
  display: flex;
  font-family: "Open Sans", "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  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;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 2rem;
}
.generalSlider__bottomNav .swiper-pagination {
  margin-top: 0;
}
.generalSlider__prev, .generalSlider__next {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  backdrop-filter: blur(20px);
  background-color: rgba(23, 41, 58, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .generalSlider__prev, .generalSlider__next {
    height: 4.8rem;
    width: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .generalSlider__prev, .generalSlider__next {
    height: 4.8rem;
    width: 4.8rem;
  }
}
.generalSlider__prev::before, .generalSlider__next::before {
  border-color: #fff;
  border-style: solid;
  border-width: 1.5px 1.5px 0 0;
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
}
.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;
}
.generalSlider__prev::before {
  margin-left: 0.3rem;
  transform: rotate(-135deg);
}
.generalSlider__next::before {
  margin-right: 0.3rem;
  transform: rotate(45deg);
}
.pageLayer {
  background-attachment: fixed;
  clip-path: inset(0);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.pageLayer:after {
  background-color: #EBE7DE;
  content: "";
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .pageLayer:after {
    height: calc(100% - 18rem);
    left: 2rem;
    top: 18rem;
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 768px) {
  .pageLayer:after {
    height: calc(100% - 21.8rem);
    left: 1.2rem;
    top: 21.8rem;
    width: calc(100% - 2.4rem);
  }
}
@media screen and (min-width: 768px) {
  .currentPage--map .pageLayer:after, .currentPage--outline .pageLayer:after {
    height: calc(100% - 17rem);
    top: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .currentPage--map .pageLayer:after, .currentPage--outline .pageLayer:after {
    height: calc(100% - 13.8rem);
    top: 13.8rem;
  }
}
.pageLayer__bg {
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.pageLayer__bg:after {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.pageLayer__bg .grad {
  filter: brightness(1.3);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: 1s ease;
  transition-property: opacity, filter;
  will-change: filter;
}
.pageLayer__bg .grad:nth-child(1) {
  background: linear-gradient(153deg, #19436A 0%, #E8CECF 100%);
}
.pageLayer__bg .grad:nth-child(2) {
  background: linear-gradient(153deg, #19436A 0%, #F7E8AB 100%);
}
.pageLayer__bg .grad:nth-child(3) {
  background: linear-gradient(154deg, #19436A 0%, #99CEFF 97.92%);
}
.pageLayer__bg .grad:nth-child(4) {
  background: linear-gradient(153deg, #19436A 0%, #FBC89B 101.53%);
}
.pageLayer__bg .grad:nth-child(5) {
  background: linear-gradient(153deg, #17293A 0%, #19436A 100%);
}
.pageLayer__bg .grad.is-active {
  filter: brightness(1);
  opacity: 1;
  transition-duration: 1.6s;
}
.parallaxPhoto {
  overflow: hidden;
  position: relative;
}
.keyVisual {
  position: relative;
}
.keyVisual__image {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  margin-left: auto;
  overflow: hidden;
  transition: clip-path 1.8s ease;
}
@media screen and (min-width: 768px) {
  .keyVisual__image {
    width: 108.7rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__image {
    width: 36.6rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__image + .keyVisual__body {
    padding-top: 3.2rem;
  }
}
.keyVisual__image .photo__image {
  filter: brightness(1.2);
  transform: scale(1.1);
  transition: 1.4s ease;
  transition-property: filter, transform;
  will-change: filter, transform;
}
.keyVisual__body {
  filter: blur(10px) brightness(1.2);
  opacity: 0;
  transition: 1s ease;
  transition-property: filter, opacity;
  will-change: filter;
}
@media screen and (min-width: 768px) {
  .keyVisual__body {
    bottom: 19.7rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    left: 10.1rem;
    padding-bottom: 6.4rem;
    position: absolute;
    transition-delay: 1s;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__body {
    margin: 0 auto;
    padding-bottom: 5.2rem;
    position: relative;
    width: 31.8rem;
  }
}
.keyVisual__body:after {
  background-color: #A1957D;
  content: "";
  left: 0;
  position: absolute;
  top: 100%;
}
@media screen and (min-width: 768px) {
  .keyVisual__body:after {
    height: 2px;
    width: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__body:after {
    height: 2px;
    width: 3.2rem;
  }
}
.keyVisual__lead {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .keyVisual__lead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual__lead {
    font-size: 1.4rem;
  }
}
.keyVisual .pageTtl {
  padding-top: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .keyVisual .pageTtl__ttl:before {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .keyVisual .pageTtl__ttl:before {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .keyVisual--design .pageTtl:after, .keyVisual--value .pageTtl:after {
    background: #D9D9D9;
    border-radius: 50%;
    content: "";
    filter: blur(4rem);
    height: 21rem;
    opacity: 0.7;
    position: absolute;
    right: -3.5rem;
    top: -3rem;
    width: 39rem;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .keyVisual--location .pageTtl:after {
    background: #D9D9D9;
    border-radius: 50%;
    content: "";
    filter: blur(4rem);
    height: 21rem;
    opacity: 0.7;
    position: absolute;
    right: -0.1rem;
    top: -5.4rem;
    width: 51.1rem;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .keyVisual--equipment .pageTtl:after {
    background: #D9D9D9;
    border-radius: 50%;
    content: "";
    filter: blur(4rem);
    height: 21rem;
    opacity: 0.7;
    position: absolute;
    right: 0;
    top: -5.4rem;
    width: 57.7rem;
    z-index: -1;
  }
}
.keyVisual.is-loaded .keyVisual__image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.keyVisual.is-loaded .keyVisual__image .photo__image {
  filter: brightness(1);
  transform: scale(1);
}
.keyVisual.is-loaded .keyVisual__body {
  filter: blur(0) brightness(1);
  opacity: 1;
}
.pageTtl {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pageTtl {
    padding-top: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl {
    padding-top: 6.8rem;
  }
}
@media screen and (min-width: 768px) {
  .pageTtl + * {
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl + * {
    margin-top: 3.2rem;
  }
}
.pageTtl__ttl {
  font-family: "EB Garamond", serif;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pageTtl__ttl {
    font-size: 9.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__ttl {
    font-size: 5.2rem;
  }
}
.pageTtl__ttl:before {
  aspect-ratio: 1/1;
  background-color: #A1957D;
  border-radius: 50%;
  content: "";
  display: block;
}
@media screen and (min-width: 768px) {
  .pageTtl__ttl:before {
    margin: 0 auto 1.6rem;
    width: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__ttl:before {
    margin: 0 auto 1.2rem;
    width: 0.6rem;
  }
}
@media screen and (min-width: 768px) {
  .pageTtl__ttl + .pageTtl__name {
    margin-top: 1rem;
  }
}
.pageTtl__name {
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .pageTtl__name {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .pageTtl__name {
    font-size: 1rem;
  }
}
.primaryTtl {
  color: #475766;
  font-family: "EB Garamond", serif;
  letter-spacing: 0;
  line-height: 0.7;
}
@media screen and (min-width: 768px) {
  .primaryTtl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .primaryTtl {
    font-size: 1.3rem;
  }
}
.generalBtn {
  align-items: center;
  backdrop-filter: blur(2rem);
  background-color: #243647;
  border-radius: 99.9rem;
  color: #fff;
  display: inline-flex;
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  gap: 0.8rem;
  justify-content: center;
  letter-spacing: 0.05em;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
@media screen and (min-width: 768px) {
  .generalBtn {
    font-size: 1.4rem;
    height: 4.8rem;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  .generalBtn {
    font-size: 1.3rem;
    height: 4rem;
    padding: 0 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .generalBtn:hover {
    background-color: #a1957d;
  }
  .generalBtn:hover .generalBtn__arrow {
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .generalBtn:hover {
    background-color: #a1957d;
  }
  .generalBtn:hover .generalBtn__arrow {
    color: #fff;
  }
}
.generalBtn__txt {
  line-height: 1.25;
}
.generalBtn__arrow {
  color: #A1AAB3;
  display: flex;
  height: 1.2rem;
  transition: color 0.3s ease;
  width: 1.2rem;
}
.txt {
  color: #243647;
  font-family: "YakuHanJP", "Noto Sans JP", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .txt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .txt {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .txt + .caption {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .txt + .caption {
    margin-top: 1.2rem;
  }
}
.txt .caption {
  color: currentcolor;
}
.mapBlock {
  background-color: #ccc;
  color: #666;
  height: 100%;
  width: 100%;
}
.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);
}
.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__scrollBar {
    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__scrollBar {
    display: none;
  }
}
.swipeFigure__body {
  position: relative;
}
.swipeFigure__inner {
  height: 100%;
  outline: none;
  position: relative;
}
.swipeFigure__capIn, .swipeFigure__capOut {
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: absolute;
  z-index: 1;
}
.swipeFigure__capIn {
  bottom: 5px;
  right: 5px;
}
.swipeFigure__capIn[data-color=label] {
  bottom: 0;
  right: 0;
}
.swipeFigure__capOut {
  padding-top: 10px;
  right: 0;
  top: 100%;
}
.swipeFigure__scrollBar {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .swipeFigure__scrollBar {
    border-radius: 99.9rem;
    height: 0.4rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .swipeFigure__scrollBar {
    border-radius: 99.9rem;
    height: 0.4rem;
    margin: 2rem auto 0;
  }
}
.swipeFigure__scrollBar .line {
  background-color: #fff;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .swipeFigure__scrollBar .line {
    border-radius: 99.9rem;
  }
}
@media screen and (max-width: 768px) {
  .swipeFigure__scrollBar .line {
    border-radius: 99.9rem;
  }
}
.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 2px 8px 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;
}
.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: 0.6s ease;
  transition-property: filter, transform;
}
@media screen and (min-width: 768px) {
  .moviePlayer__trigger:hover .photo__image {
    filter: brightness(1.05);
    transform: scale(1.05);
  }
  .moviePlayer__trigger:hover .moviePlayer__icon {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (hover: hover) and (pointer: fine) {
  .moviePlayer__trigger:hover .photo__image {
    filter: brightness(1.05);
    transform: scale(1.05);
  }
  .moviePlayer__trigger:hover .moviePlayer__icon {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.moviePlayer__icon {
  align-items: center;
  aspect-ratio: 1/1;
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 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: 0.4s ease;
  transition-property: background-color, opacity;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .moviePlayer__icon {
    width: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .moviePlayer__icon {
    width: 7.8rem;
  }
}
.moviePlayer__icon .arrow {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .moviePlayer__icon .arrow {
    width: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .moviePlayer__icon .arrow {
    width: 1.4rem;
  }
}
.generalModal {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.6s ease;
  transition-property: opacity, visibility;
  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%;
}
@media screen and (max-width: 768px) {
  .generalModal .movieFrame--pcPlayer {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .generalModal--long .generalModal__cont {
    height: 100%;
    max-height: calc(100% - 16rem);
  }
}
@media screen and (max-width: 768px) {
  .generalModal--long .generalModal__cont {
    height: calc(100% - 21.3333333333vw);
  }
}
.generalModal--long .generalModal__inner {
  height: 100%;
}
.generalModal--figure .generalModal__att {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .generalModal--figure .generalModal__att {
    padding-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .generalModal--figure .generalModal__att {
    padding-bottom: 2.4rem;
  }
}
.generalModal--figure .generalModal__att .arrow {
  aspect-ratio: 21/17;
  width: 2rem;
}
.generalModal--figure .generalModal__note {
  order: 4;
  padding-top: 0.5rem;
}
.generalModal--figure .generalModal__note .caption {
  color: #fff;
}
.generalModal--figure .generalModal__note .caption + .caption {
  margin-top: 1rem;
}
.generalModal--figure .generalModal__note .caption--figure {
  text-align: right;
}
.generalModal--figure .generalModal__inner {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .generalModal--figure .generalModal__inner {
    margin: 0 -2.5rem;
    padding-bottom: 2.4rem;
    width: auto;
  }
  .generalModal--figure .generalModal__inner .swipeFigure__inner {
    height: 51.5402843602vh;
    max-width: none;
    max-width: initial;
    width: auto;
  }
  .generalModal--figure .generalModal__inner .figurePlot,
  .generalModal--figure .generalModal__inner .capIn,
  .generalModal--figure .generalModal__inner .capOut {
    display: none;
  }
}
.bgLayer {
  position: relative;
  z-index: 1;
}
.bgLayer:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .bgLayer:before {
    margin: 0 -10rem;
  }
}
@media screen and (max-width: 768px) {
  .bgLayer:before {
    margin: 0 -2.4rem;
  }
}
.bgLayer--pattern01:before {
  background-color: #e5e1d6;
  border-bottom: 1px solid #dcd7cb;
  border-top: 1px solid #dcd7cb;
}
.bgLayer--pattern02:before {
  background-color: #efece5;
  border-bottom: 1px solid #dcd7cb;
  border-top: 1px solid #dcd7cb;
}
.bgLayer--pattern03:before {
  background-color: #DCD7CB;
}
.tabNav {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .tabNav {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__item {
    width: 100%;
  }
}
.tabNav__btn {
  align-items: center;
  background-color: #dcd7cb;
  border: none;
  border-radius: 999px;
  color: #17293a;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tabNav__btn {
    gap: 1.6rem;
    padding: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__btn {
    gap: 1rem;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .tabNav__btn:hover {
    background-color: #cfc9bc;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tabNav__btn:hover {
    background-color: #cfc9bc;
  }
}
.tabNav__btn:before {
  background: url("../imgs/bg-texture-01.png") repeat top center/auto, linear-gradient(172.545deg, rgb(23, 41, 58) 0%, rgb(25, 67, 106) 100%);
  border-radius: 999px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
}
.tabNav__btn.is-active {
  color: #d6c4a0;
  pointer-events: none;
}
.tabNav__btn.is-active:before {
  opacity: 1;
}
.tabNav__btn.is-active .tabNav__num {
  border-color: rgba(214, 196, 160, 0.4);
}
@media screen and (min-width: 768px) {
  .tabNav__btn:not(:has(.tabNav__num)) {
    height: auto;
    width: 20.4rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__btn:not(:has(.tabNav__num)) {
    height: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .tabNav__btn:has(.tabNav__num) {
    height: 7.4rem;
    justify-content: flex-start;
    width: 29.2rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__btn:has(.tabNav__num) {
    height: 5.2rem;
  }
}
.tabNav__num {
  align-items: center;
  border: 1px solid rgba(71, 87, 102, 0.2);
  border-radius: 999px;
  display: flex;
  flex-shrink: 0;
  font-family: "EB Garamond", serif;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tabNav__num {
    font-size: 1.8rem;
    height: 5rem;
    width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__num {
    font-size: 1.6rem;
    height: 4rem;
    left: 0.8rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
  }
}
.tabNav__label {
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tabNav__label {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .tabNav__label {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .madoriDetail {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail {
    padding: 8rem 0;
  }
}
.madoriDetail__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .madoriDetail__inner {
    display: grid;
    grid-gap: 4rem;
    gap: 4rem;
    grid-template-columns: 1fr 2.3371757925fr;
    margin: 0 auto;
    width: 119.8rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}
.madoriDetail__info {
  display: flex;
}
@media screen and (min-width: 768px) {
  .madoriDetail__info {
    align-items: flex-start;
    flex-direction: column;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__info {
    align-items: end;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
}
.madoriDetail__type {
  align-items: center;
  color: #a1957d;
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  line-height: 1.1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .madoriDetail__type {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__type {
    font-size: 1.6rem;
  }
}
.madoriDetail__type .init {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .madoriDetail__type .init {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__type .init {
    font-size: 6.4rem;
  }
}
.madoriDetail__spec {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .madoriDetail__spec {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__spec {
    gap: 1rem;
  }
}
.madoriDetail__variation {
  color: #a1957d;
  font-family: "EB Garamond", serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .madoriDetail__variation {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__variation {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .madoriDetail__variation .init {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__variation .init {
    font-size: 3.2rem;
  }
}
.madoriDetail__length {
  align-items: baseline;
  color: #a1957d;
  display: flex;
  flex-wrap: wrap;
  font-family: "EB Garamond", serif;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .madoriDetail__length {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__length {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .madoriDetail__length .mator {
    font-size: 1.6rem;
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__length .mator {
    font-size: 1.6rem;
    margin-left: 0.4rem;
  }
}
.madoriDetail__length .mator .tsubo {
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (min-width: 768px) {
  .madoriDetail__length .mator .tsubo {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__length .mator .tsubo {
    font-size: 1.2rem;
  }
}
.madoriDetail__desc {
  display: flex;
  flex-direction: column;
}
.madoriDetail__desc .item {
  align-items: flex-start;
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .madoriDetail__desc .item {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__desc .item {
    gap: 0.8rem;
  }
}
.madoriDetail__desc .item:before {
  aspect-ratio: 1/1;
  background-color: #a1957d;
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .madoriDetail__desc .item:before {
    margin-top: 0.8rem;
    width: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriDetail__desc .item:before {
    margin-top: 0.8rem;
    width: 0.6rem;
  }
}
@media screen and (min-width: 768px) {
  .madoriDetail__figure {
    display: flex;
    grid-row: auto/span 2;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .madoriDetail__note {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .madoriList__tabWrap + .madoriList__body {
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriList__tabWrap + .madoriList__body {
    margin-top: 4rem;
  }
}
.madoriList__tabWrap .tabNav {
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .madoriList__tabWrap .tabNav__item {
    width: 100%;
  }
}
.madoriList__tabContent {
  display: none;
}
.madoriList__tabContent.is-active {
  display: block;
}
.madoriList__item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.madoriList__item:nth-child(odd):before {
  background-color: #e5e1d6;
  border-bottom: 1px solid #dcd7cb;
  border-top: 1px solid #dcd7cb;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .madoriList__item:nth-child(odd):before {
    margin: 0 -10rem;
  }
}
@media screen and (max-width: 768px) {
  .madoriList__item:nth-child(odd):before {
    margin: 0 -2.4rem;
  }
}
.usageNote {
  color: #475766;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .usageNote {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote {
    font-size: 0.9rem;
  }
}
.usageNote__body {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .usageNote__body + .usageNote__body {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__body + .usageNote__body {
    margin-top: 0.3rem;
  }
}
.usageNote__item {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .usageNote__item {
    gap: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__item {
    gap: 0.2rem;
  }
}
@media screen and (min-width: 768px) {
  .usageNote__item .label {
    margin-right: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__item .label {
    margin-right: 0.8rem;
  }
}
.usageNote__item .label:last-child {
  margin-right: 0;
}
.usageNote__item .icon {
  aspect-ratio: 28/10;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .usageNote__item .icon {
    width: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__item .icon {
    width: 2rem;
  }
}
.usageNote__item .icon--light {
  aspect-ratio: 27/8;
}
@media screen and (min-width: 768px) {
  .usageNote__item .icon--light {
    height: 0.8rem;
    width: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__item .icon--light {
    height: 0.6rem;
    width: 2rem;
  }
}
.usageNote__item .icon--wind {
  aspect-ratio: 33/6;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .usageNote__item .icon--wind {
    width: 3.262rem;
  }
}
@media screen and (max-width: 768px) {
  .usageNote__item .icon--wind {
    height: 0.5rem;
    width: 2.4rem;
  }
}
.usageNote__item .icon--floor {
  background-color: #efe0d4;
  border: 1px solid #999;
}
.usageNote__item .icon--storage {
  background-color: #eadab9;
  border: 1px solid #999;
}
.usageNote__item .icon--water {
  background-color: #eaf6fd;
  border: 1px solid #999;
}
.descriptionCard__visual .photo {
  overflow: hidden;
}
.descriptionCard__visual .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .descriptionCard__body {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .descriptionCard__body {
    margin-top: 1.2rem;
  }
}
.descriptionCard__body .heading {
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .descriptionCard__body .txt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .descriptionCard__body .txt {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .descriptionCard__body .heading + .txt {
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .descriptionCard__body .heading + .txt {
    margin-top: 0.8rem;
  }
}
.premiumBnr {
  background: url("../imgs/bg-bnr-premium-01.jpg") no-repeat top center/cover;
  color: #fff;
  display: flex;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .premiumBnr {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .premiumBnr {
    flex-direction: column;
  }
}
.premiumBnr__body {
  position: relative;
}
@media screen and (min-width: 768px) {
  .premiumBnr__body {
    align-items: center;
    display: flex;
    padding-left: 11.4rem;
    width: calc(100% - 50rem);
  }
}
@media screen and (max-width: 768px) {
  .premiumBnr__body {
    padding: 2.9rem 2.4rem 7.2rem;
  }
}
.premiumBnr__ttl {
  font-family: "EB Garamond", serif;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .premiumBnr__ttl {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .premiumBnr__ttl {
    font-size: 4.4rem;
  }
}
.premiumBnr__guide {
  align-items: center;
  aspect-ratio: 1/1;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.25;
  padding-top: 0.8rem;
  position: absolute;
  text-align: center;
  transition: 0.7s ease;
  transition-property: background-color, border-color, transform;
}
@media screen and (min-width: 768px) {
  .premiumBnr__guide {
    font-size: 2.6rem;
    right: 6rem;
    top: 50%;
    transform: translate(0, -50%);
    width: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .premiumBnr__guide {
    font-size: 2.2rem;
    left: 13.8rem;
    top: 2.6rem;
    width: 20rem;
  }
}
.premiumBnr__visual {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .premiumBnr__visual {
    width: 50rem;
  }
}
.premiumBnr__visual .photo__image {
  transition: 0.7s ease;
  transition-property: filter, transform;
}
@media screen and (min-width: 768px) {
  .premiumBnr--link:hover .premiumBnr__visual .photo__image {
    filter: brightness(1.2);
    transform: scale(1.1);
  }
  .premiumBnr--link:hover .premiumBnr__guide {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(0.98) translate(0, -50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .premiumBnr--link:hover .premiumBnr__visual .photo__image {
    filter: brightness(1.2);
    transform: scale(1.1);
  }
  .premiumBnr--link:hover .premiumBnr__guide {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(0.98) translate(0, -50%);
  }
}
.relativeBox {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .relativeBox {
    max-width: 120rem;
    padding: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .relativeBox {
    padding: 5.6rem 2rem;
  }
}
.relativeBox--dark {
  background-color: #dcd7cb;
}
.relativeBox--light {
  background-color: #ebe7de;
}
.relativeBox__inner {
  align-items: center;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .relativeBox__inner {
    gap: 4rem;
  }
}
.relativeBox__head {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.relativeBox__cont {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.relativeBox__body {
  display: flex;
  flex-direction: column;
}
.bottomBnr {
  color: #fff;
  display: grid;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .bottomBnr {
    align-content: center;
    border-radius: 0.8rem;
    -moz-column-gap: 3.9rem;
         column-gap: 3.9rem;
    grid-template: "visual ttl btn" auto "visual txt btn" auto/13rem 1fr 1fr;
    height: 16.2rem;
    justify-items: center;
    margin-top: 14rem;
    max-width: 45rem;
    padding: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr {
    align-content: center;
    border-radius: 0.8rem;
    grid-template: "visual . divider . txt . btn" auto "ttl    . divider . txt . btn" auto/auto 2.6rem 1px 3.2rem 1fr 2.3rem auto;
    height: 8rem;
    margin-top: 10rem;
    max-width: 31rem;
    padding: 0 2rem 0 2.6rem;
    row-gap: 0.6rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .bottomBnr:hover .bottomBnr__bg .photo__image {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .bottomBnr:hover .bottomBnr__btn {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .bottomBnr:hover .bottomBnr__bg .photo__image {
    transform: scale(1.1);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .bottomBnr:hover .bottomBnr__btn {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
  }
}
.bottomBnr::before {
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  display: block;
  grid-area: divider;
  height: 4.8rem;
  align-self: center;
  justify-self: center;
  place-self: center;
  position: relative;
  width: 1px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bottomBnr::before {
    display: none;
  }
}
.bottomBnr__bg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .bottomBnr__bg {
    overflow: hidden;
  }
}
.bottomBnr__bg .photo,
.bottomBnr__bg .photo__pic {
  display: block;
  height: 100%;
  width: 100%;
}
.bottomBnr__bg .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bottomBnr__bg .photo__image {
    transform: scale(1);
    transition: transform 0.6s ease;
  }
}
.bottomBnr__visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bottomBnr__visual {
    align-self: center;
    background-color: #fff;
    border-radius: 0.4rem;
    overflow: hidden;
    width: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr__visual {
    align-self: end;
    justify-self: center;
    place-self: end center;
    width: 2rem;
  }
}
.bottomBnr__visual .photo,
.bottomBnr__visual .photo__pic {
  display: block;
}
.bottomBnr__visual .photo__image {
  display: block;
  height: auto;
  width: 100%;
}
.bottomBnr__ttl {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  grid-area: ttl;
  letter-spacing: 0;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bottomBnr__ttl {
    align-self: end;
    font-size: 2.4rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr__ttl {
    font-size: 1.6rem;
    align-self: start;
    justify-self: center;
    place-self: start center;
    text-align: center;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .bottomBnr__ttl::after {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 2.4rem;
  }
}
.bottomBnr__txt {
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  grid-area: txt;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bottomBnr__txt {
    align-self: start;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-top: 1rem;
    text-align: center;
    white-space: nowrap;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr__txt {
    font-size: 1rem;
    line-height: 1.25;
    align-self: center;
    justify-self: start;
    place-self: center start;
    text-align: left;
    width: -moz-max-content;
    width: max-content;
  }
}
.bottomBnr__btn {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  display: flex;
  grid-area: btn;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
  transition-property: background-color, border-color;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bottomBnr__btn {
    align-self: center;
    width: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr__btn {
    align-self: center;
    width: 3rem;
  }
}
.bottomBnr__btn svg {
  display: block;
  height: auto;
  width: 40%;
}
.bottomBnr + .caption {
  color: #FE3C47;
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bottomBnr + .caption {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .bottomBnr + .caption {
    margin-top: 1rem;
  }
}
/* 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 */
