/**
 * 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 ;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.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-inline-start: 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-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.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 {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev .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-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.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: 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);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.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 {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-pagination-bullet button {
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.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 {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.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 {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.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,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  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;
}

.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,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

/* Zen Old Mincho - Regular (400) */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../../dist/font/Zen_Old_Mincho/ZenOldMincho-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Zen Old Mincho - Medium (500) */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../../dist/font/Zen_Old_Mincho/ZenOldMincho-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Zen Old Mincho - SemiBold (600) */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../../dist/font/Zen_Old_Mincho/ZenOldMincho-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* Zen Old Mincho - Bold (700) */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../../dist/font/Zen_Old_Mincho/ZenOldMincho-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Zen Old Mincho - Black (900) */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../../dist/font/Zen_Old_Mincho/ZenOldMincho-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* EB Garamond - Regular (400) */
@font-face {
  font-family: "EB Garamond";
  src: url("../../dist/font/EB_Garamond/static/EBGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* EB Garamond - Medium (500) */
@font-face {
  font-family: "EB Garamond";
  src: url("../../dist/font/EB_Garamond/static/EBGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* EB Garamond - SemiBold (600) */
@font-face {
  font-family: "EB Garamond";
  src: url("../../dist/font/EB_Garamond/static/EBGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* EB Garamond - Bold (700) */
@font-face {
  font-family: "EB Garamond";
  src: url("../../dist/font/EB_Garamond/static/EBGaramond-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* EB Garamond - ExtraBold (800) */
@font-face {
  font-family: "EB Garamond";
  src: url("../../dist/font/EB_Garamond/static/EBGaramond-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
.section {
  width: 100%;
}
.section__inner {
  margin: 0 auto;
  width: calc(100% - 6.4vw);
}
@media screen and (min-width: 768px) {
  .section__inner {
    width: 96%;
    max-width: 1200px;
  }
}
.section--lead {
  background-color: #F5F5F0;
}
.section--news {
  background-color: rgba(142, 121, 80, 0.15);
}
@media screen and (min-width: 768px) {
  .section--news .section__inner {
    max-width: 900px;
  }
}
.section--summary {
  background-color: #F5F5F0;
}
.section--gallery {
  background-color: #8E7950;
}
.section--equipment {
  background-color: #F5F5F0;
}
.section--share {
  background-color: #F5F5F0;
}

.keyvisual {
  width: 100%;
  position: relative;
}
.keyvisual__swiper {
  opacity: 0;
}
.keyvisual__item {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.keyvisual__img {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1.025);
}
.keyvisual__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.keyvisual__gradation {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  height: auto;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, #3b3c41 90%);
  padding: 10.6666666667vw 5.3333333333vw 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__gradation {
    padding: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__gradation {
    padding: 60px;
  }
}
.keyvisual__container {
  position: relative;
  opacity: 0;
}
.keyvisual__title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: #F5F5F0;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__title {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__title {
    margin-bottom: 20px;
  }
}
.keyvisual__logo {
  display: block;
  width: 53.3333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__logo {
    width: 24.7222222222vw;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__logo {
    width: 356px;
    margin-bottom: 10px;
  }
}
.keyvisual__logo img {
  width: 100%;
  height: auto;
}
.keyvisual__logo--rg {
  width: 66.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__logo--rg {
    width: 17.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__logo--rg {
    width: 258px;
  }
}
.keyvisual__logo--rjp {
  width: 80vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__logo--rjp {
    width: 43.75vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__logo--rjp {
    width: 630px;
  }
}
.keyvisual__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #F5F5F0;
}
@media screen and (min-width: 768px) {
  .keyvisual__text {
    line-height: 1.5;
    font-size: 1.8rem;
  }
}

.lead__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .lead__text {
    font-size: 3rem;
    padding: 8.3333333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .lead__text {
    padding: 120px 0;
  }
}
.lead__container {
  width: 100%;
  background-color: #8E7950;
}
.lead__list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4vw;
  width: calc(100% - 6.4vw);
  margin: 0 auto;
  padding: 6.4vw 0;
}
@media screen and (min-width: 768px) {
  .lead__list {
    width: 96%;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.7777777778vw;
    max-width: 1200px;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .lead__list {
    gap: 40px;
    padding: 60px 0;
  }
}
.lead__item {
  width: 100%;
}
.lead__item a {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: inherit;
  height: 20vw;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #F5F5F0;
  text-align: center;
  border: 0.2666666667vw solid #F5F5F0;
}
@media screen and (min-width: 768px) {
  .lead__item a {
    width: 18.75vw;
    height: 10.4166666667vw;
    line-height: 1.1;
    font-size: 3.2rem;
    border: 0.0694444444vw solid #F5F5F0;
  }
}
@media screen and (min-width: 1440px) {
  .lead__item a {
    width: 270px;
    height: 150px;
    border: 1px solid #F5F5F0;
  }
}
.lead__item a:hover {
  background-color: rgba(245, 245, 240, 0.3);
  transition: 0.5s;
}
.lead__item a:before {
  position: absolute;
  content: "";
  background-image: url("../../dist/img/rp/lead_item_icon1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: 2.6666666667vw;
  bottom: 2.6666666667vw;
  width: 2.4vw;
  height: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .lead__item a:before {
    right: 1.7361111111vw;
    bottom: 1.7361111111vw;
    width: 0.625vw;
    height: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .lead__item a:before {
    right: 25px;
    bottom: 25px;
    width: 9px;
    height: 16px;
  }
}

.news {
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .news {
    padding: 60px 0;
  }
}
.news__title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "EB Garamond", "Times New Roman", "Georgia", serif;
  line-height: 1;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 2.4rem;
  }
}
.news__title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news__title span {
    font-size: 6rem;
  }
}
.news__title {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-bottom: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__title {
    margin-bottom: 45px;
  }
}
.news__list p {
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .news__list p {
    font-size: 1.8rem;
  }
}
.news__item {
  border-bottom: 0.2666666667vw solid #1D2024;
}
@media screen and (min-width: 768px) {
  .news__item {
    border-bottom: 0.0694444444vw solid #1D2024;
  }
}
@media screen and (min-width: 1440px) {
  .news__item {
    border-bottom: 1px solid #1D2024;
  }
}
.news__item:first-child {
  border-top: 0.2666666667vw solid #1D2024;
}
@media screen and (min-width: 768px) {
  .news__item:first-child {
    border-top: 0.0694444444vw solid #1D2024;
  }
}
@media screen and (min-width: 1440px) {
  .news__item:first-child {
    border-top: 1px solid #1D2024;
  }
}
.news__item a {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 4.2666666667vw;
  padding: 6.4vw 0;
}
@media screen and (min-width: 768px) {
  .news__item a {
    gap: 2.0833333333vw;
    padding: 1.6666666667vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .news__item a {
    gap: 30px;
    padding: 24px 0;
  }
}
.news__item a:hover {
  background-color: rgba(29, 32, 36, 0.2);
  transition: 0.5s;
}
.news__date {
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 1.5rem;
  }
}
.news__title {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 1.35rem;
  }
}

.summary {
  padding: 0 0 26.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .summary {
    padding: 0 0 6.9444444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .summary {
    padding: 0 0 100px 0;
  }
}
.summary__title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "EB Garamond", "Times New Roman", "Georgia", serif;
  line-height: 1;
  margin: 0 auto;
  padding-top: 19.2vw;
}
@media screen and (min-width: 768px) {
  .summary__title {
    font-size: 2.4rem;
    padding-top: 9.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .summary__title {
    padding-top: 140px;
  }
}
.summary__title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .summary__title span {
    font-size: 6rem;
  }
}
.summary__title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2666666667vw;
  height: 16vw;
  background-color: #1D2024;
}
@media screen and (min-width: 768px) {
  .summary__title:before {
    width: 0.0694444444vw;
    height: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .summary__title:before {
    width: 1px;
    height: 120px;
  }
}
.summary__title {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .summary__title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .summary__title {
    margin-bottom: 100px;
  }
}

.gallery {
  padding: 0 0 13.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .gallery {
    padding: 0 0 6.9444444444vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .gallery {
    padding: 0 0 100px 0;
  }
}
.gallery__title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "EB Garamond", "Times New Roman", "Georgia", serif;
  color: #F5F5F0;
  line-height: 1;
  margin: 0 auto;
  padding-top: 19.2vw;
}
@media screen and (min-width: 768px) {
  .gallery__title {
    font-size: 2.4rem;
    padding-top: 9.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__title {
    padding-top: 140px;
  }
}
.gallery__title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .gallery__title span {
    font-size: 6rem;
  }
}
.gallery__title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2666666667vw;
  height: 16vw;
  background-color: #F5F5F0;
}
@media screen and (min-width: 768px) {
  .gallery__title:before {
    width: 0.0694444444vw;
    height: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__title:before {
    width: 1px;
    height: 120px;
  }
}
.gallery__title {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .gallery__title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__title {
    margin-bottom: 100px;
  }
}
.gallery__container {
  position: relative;
  margin: 0 auto;
  max-width: 87.2vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .gallery__container {
    max-width: 55.2083333333vw;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__container {
    max-width: 810px;
    margin-bottom: 20px;
  }
}
.gallery__swiper--view {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .gallery__swiper--view {
    max-width: 55.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__swiper--view {
    max-width: 800px;
  }
}
.gallery__swiper--thumbnail {
  max-width: 87.2vw;
}
@media screen and (min-width: 768px) {
  .gallery__swiper--thumbnail {
    max-width: 55.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__swiper--thumbnail {
    max-width: 810px;
  }
}
.gallery__swiper--thumbnail .swiper-wrapper {
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .gallery__swiper--thumbnail .swiper-wrapper {
    width: 100% !important;
    display: flex;
    gap: 0;
    grid-template-columns: none;
  }
}
.gallery__swiper--thumbnail .swiper-slide-thumb-active::before {
  opacity: 0;
  transition: 0.3s;
}
.gallery__list {
  width: fit-content;
  margin: 0 auto;
}
.gallery__item {
  width: 100%;
  background-color: #9F946D;
  overflow: hidden;
  height: 53.3333333333vw;
}
@media screen and (min-width: 768px) {
  .gallery__item {
    width: 55.5555555556vw;
    height: 37.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__item {
    width: 800px;
    height: 533px;
  }
}
.gallery__img {
  height: 100%;
}
.gallery__img img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.gallery__thumbnail {
  cursor: pointer;
  position: relative;
  width: 26.9333333333vw !important;
  height: 18.6666666667vw !important;
  background-color: #9F946D;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gallery__thumbnail {
    width: 4.8611111111vw !important;
    height: 3.2291666667vw !important;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__thumbnail {
    width: 70px !important;
    height: 46.5px !important;
  }
}
.gallery__thumbnail img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.gallery__thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(29, 32, 36, 0.8);
  transition: 0.5s;
  z-index: 1;
}
.gallery__next {
  background: url(../img/rp/gallery_next_icon1.svg), rgba(245, 245, 240, 0.8);
  right: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .gallery__next {
    right: -2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__next {
    right: -30px;
  }
}
.gallery__prev {
  background: url(../img/rp/gallery_prev_icon1.svg), rgba(245, 245, 240, 0.8);
  left: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .gallery__prev {
    left: -2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__prev {
    left: -30px;
  }
}
.gallery__next, .gallery__prev {
  position: absolute;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 3.2vw 1.8vw;
  background-position: center;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .gallery__next, .gallery__prev {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
    background-size: 0.8333333333vw 0.46875vw;
  }
}
@media screen and (min-width: 1440px) {
  .gallery__next, .gallery__prev {
    width: 60px;
    height: 60px;
    background-size: 12px 6.75px;
  }
}

.share {
  position: relative;
  padding: 16vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .share {
    padding: 4.8611111111vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .share {
    padding: 70px 0;
  }
}
.share__title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "EB Garamond", "Times New Roman", "Georgia", serif;
  line-height: 1;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .share__title {
    font-size: 2.4rem;
  }
}
.share__title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .share__title span {
    font-size: 6rem;
  }
}
.share__title {
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .share__title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__title {
    margin-bottom: 100px;
  }
}
.share__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .share__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.share__item {
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.share__item .share__thumbnail {
  filter: brightness(0.75);
}
@media screen and (min-width: 768px) {
  .share__item .share__thumbnail {
    filter: brightness(0.7);
  }
}
.share__item:hover .share__thumbnail {
  filter: brightness(1);
  transition: 0.5s;
}
.share__item:before {
  position: absolute;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/rp/share_item_icon1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 3.2vw;
  bottom: 3.2vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .share__item:before {
    width: 1.25vw;
    height: 1.25vw;
    right: 1.6666666667vw;
    bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__item:before {
    width: 18px;
    height: 18px;
    right: 24px;
    bottom: 24px;
  }
}
.share__thumbnail {
  position: relative;
  width: 100%;
  height: 48vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .share__thumbnail {
    height: auto;
    aspect-ratio: 360/607.5;
  }
}
.share__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.share__group {
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding: 2.9333333333vw 6.4vw;
}
@media screen and (min-width: 768px) {
  .share__group {
    padding: 0.7638888889vw 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__group {
    padding: 11px 24px;
  }
}
.share__subtitle {
  font-size: 1.8rem;
  color: #F5F5F0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .share__subtitle {
    font-size: 2.4rem;
    margin-bottom: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__subtitle {
    margin-bottom: 8px;
  }
}
.share__subtitle--modal {
  font-size: 2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .share__subtitle--modal {
    font-size: 2.4rem;
  }
}
.share__property {
  font-size: 1.2rem;
  color: #F5F5F0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .share__property {
    font-size: 1.4rem;
  }
}
.share__property--modal {
  font-size: 1.4rem;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .share__property--modal {
    font-size: 1.6rem;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__property--modal {
    margin-bottom: 24px;
  }
}
.share__modal {
  display: none;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(29, 32, 36, 0.8);
  z-index: 101;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.share__modal--active {
  display: flex;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.share__container {
  position: relative;
  width: calc(100% - 6.4vw);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .share__container {
    width: 46.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__container {
    width: 675px;
  }
}
.share__close {
  position: absolute;
  content: "";
  width: 6.9333333333vw;
  height: 6.6666666667vw;
  background-image: url(../img/rp/share_modal_icon1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: -12vw;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .share__close {
    width: 1.8416666667vw;
    height: 1.8416666667vw;
    top: -1.3888888889vw;
    right: -3.925vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__close {
    width: 26.52px;
    height: 26.52px;
    top: -20px;
    right: -56.52px;
  }
}
.share__img {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 66.6666666667vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .share__img {
    width: inherit;
    height: 27.7777777778vw;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__img {
    height: 400px;
    margin-bottom: 30px;
  }
}
.share__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease;
}
.share__text {
  font-size: 1.6rem;
  color: #F5F5F0;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .share__text {
    line-height: 1.8;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__text {
    margin-bottom: 24px;
  }
}
.share__btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  border: 0.2666666667vw solid #F5F5F0;
  font-size: 1.2rem;
  margin-top: 3.2vw;
  background-color: transparent;
  letter-spacing: 0.14rem;
}
@media screen and (min-width: 768px) {
  .share__btn {
    border: 0.0694444444vw solid #F5F5F0;
    font-size: 1.4rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .share__btn {
    border: 1px solid #F5F5F0;
  }
}
.share__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5F0;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.share__btn a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background-image: url(../img/module/arrow_right_white_icon1.svg);
  background-repeat: no-repeat;
  background-size: 3.7333333333vw 1.8666666667vw;
  background-position: right 4vw center;
}
@media screen and (min-width: 768px) {
  .share__btn a {
    background-size: 1.1111111111vw 0.625vw;
    background-position: right 1.3888888889vw center;
  }
}
@media screen and (min-width: 1440px) {
  .share__btn a {
    background-size: 16px 9px;
    background-position: right 20px center;
  }
}
.share__btn a span {
  display: block;
  font-size: 1rem;
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .share__btn a span {
    font-size: 1.2rem;
    margin-top: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__btn a span {
    margin-top: 8px;
  }
}
.share__btn:hover {
  color: #1D2024;
}
.share__btn:hover:before {
  transform: translateX(0);
}
.share__btn:hover a {
  background-image: url(../img/module/arrow_right_black_icon1.svg);
  color: #1D2024;
}
.share__btn {
  letter-spacing: 0.12em;
  width: 50.6666666667vw;
  height: 10.1333333333vw;
}
@media screen and (min-width: 768px) {
  .share__btn {
    width: 18.75vw;
    height: 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .share__btn {
    width: 270px;
    height: 42px;
  }
}

.equipment {
  position: relative;
  padding: 16vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .equipment {
    padding: 4.8611111111vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .equipment {
    padding: 70px 0;
  }
}
.equipment__title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "EB Garamond", "Times New Roman", "Georgia", serif;
  line-height: 1;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .equipment__title {
    font-size: 2.4rem;
  }
}
.equipment__title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .equipment__title span {
    font-size: 6rem;
  }
}
.equipment__title {
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .equipment__title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__title {
    margin-bottom: 100px;
  }
}
.equipment__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .equipment__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.equipment__item {
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.equipment__item .equipment__thumbnail {
  filter: brightness(0.75);
}
@media screen and (min-width: 768px) {
  .equipment__item .equipment__thumbnail {
    filter: brightness(0.7);
  }
}
.equipment__item:hover .equipment__thumbnail {
  filter: brightness(1);
  transition: 0.5s;
}
.equipment__item:before {
  position: absolute;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/rp/equipment_item_icon1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 3.2vw;
  bottom: 3.2vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .equipment__item:before {
    width: 1.25vw;
    height: 1.25vw;
    right: 1.6666666667vw;
    bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__item:before {
    width: 18px;
    height: 18px;
    right: 24px;
    bottom: 24px;
  }
}
.equipment__thumbnail {
  position: relative;
  width: 100%;
  height: 48vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .equipment__thumbnail {
    height: auto;
    aspect-ratio: 360/607.5;
  }
}
.equipment__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.equipment__group {
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding: 2.9333333333vw 6.4vw;
}
@media screen and (min-width: 768px) {
  .equipment__group {
    padding: 0.7638888889vw 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__group {
    padding: 11px 24px;
  }
}
.equipment__subtitle {
  font-size: 1.8rem;
  color: #F5F5F0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .equipment__subtitle {
    font-size: 2.4rem;
    margin-bottom: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__subtitle {
    margin-bottom: 8px;
  }
}
.equipment__subtitle--modal {
  font-size: 2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .equipment__subtitle--modal {
    font-size: 2.4rem;
  }
}
.equipment__property {
  font-size: 1.2rem;
  color: #F5F5F0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .equipment__property {
    font-size: 1.4rem;
  }
}
.equipment__property--modal {
  font-size: 1.4rem;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment__property--modal {
    font-size: 1.6rem;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__property--modal {
    margin-bottom: 24px;
  }
}
.equipment__modal {
  display: none;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(29, 32, 36, 0.8);
  z-index: 101;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.equipment__modal--active {
  display: flex;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.equipment__container {
  position: relative;
  width: calc(100% - 6.4vw);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .equipment__container {
    width: 46.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__container {
    width: 675px;
  }
}
.equipment__close {
  position: absolute;
  content: "";
  width: 6.9333333333vw;
  height: 6.6666666667vw;
  background-image: url(../img/rp/equipment_modal_icon1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: -12vw;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .equipment__close {
    width: 1.8416666667vw;
    height: 1.8416666667vw;
    top: -1.3888888889vw;
    right: -3.925vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__close {
    width: 26.52px;
    height: 26.52px;
    top: -20px;
    right: -56.52px;
  }
}
.equipment__img {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 66.6666666667vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .equipment__img {
    width: inherit;
    height: 27.7777777778vw;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__img {
    height: 400px;
    margin-bottom: 30px;
  }
}
.equipment__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease;
}
.equipment__text {
  font-size: 1.6rem;
  color: #F5F5F0;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment__text {
    line-height: 1.8;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__text {
    margin-bottom: 24px;
  }
}
.equipment__btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  border: 0.2666666667vw solid #F5F5F0;
  font-size: 1.2rem;
  margin-top: 3.2vw;
  background-color: transparent;
  letter-spacing: 0.14rem;
}
@media screen and (min-width: 768px) {
  .equipment__btn {
    border: 0.0694444444vw solid #F5F5F0;
    font-size: 1.4rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__btn {
    border: 1px solid #F5F5F0;
  }
}
.equipment__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5F0;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.equipment__btn a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background-image: url(../img/module/arrow_right_white_icon1.svg);
  background-repeat: no-repeat;
  background-size: 3.7333333333vw 1.8666666667vw;
  background-position: right 4vw center;
}
@media screen and (min-width: 768px) {
  .equipment__btn a {
    background-size: 1.1111111111vw 0.625vw;
    background-position: right 1.3888888889vw center;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__btn a {
    background-size: 16px 9px;
    background-position: right 20px center;
  }
}
.equipment__btn a span {
  display: block;
  font-size: 1rem;
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment__btn a span {
    font-size: 1.2rem;
    margin-top: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__btn a span {
    margin-top: 8px;
  }
}
.equipment__btn:hover {
  color: #1D2024;
}
.equipment__btn:hover:before {
  transform: translateX(0);
}
.equipment__btn:hover a {
  background-image: url(../img/module/arrow_right_black_icon1.svg);
  color: #1D2024;
}
.equipment__btn {
  letter-spacing: 0.12em;
  width: 50.6666666667vw;
  height: 10.1333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment__btn {
    width: 18.75vw;
    height: 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .equipment__btn {
    width: 270px;
    height: 42px;
  }
}

.main {
  padding-top: 0;
}
.main--maintenance {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .main--maintenance {
    padding-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .main--maintenance {
    padding-top: 122px;
  }
}

.maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 0 2.6666666667vw 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .maintenance {
    padding: 0 0 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .maintenance {
    padding: 0 0 100px;
  }
}
.maintenance__text {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .maintenance__text {
    font-weight: 500;
    font-size: 5rem;
  }
}