/**
 * 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;
  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));
}
button .swiper-pagination-bullet {
  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;
}

.n-main {
  padding-block: 6.25em;
  background-color: #eee;
  flex-direction: column;
  display: flex;
}
.n-main__container {
  flex-direction: column;
  display: flex;
  justify-content: center;
  flex: 1 0 auto;
}
.n-main__box {
  width: 100%;
  text-align: center;
}
.n-main__error {
  font-weight: 800;
  color: #666666;
  font-size: clamp(1.38rem, 17.8947368421vw + 0.07rem, 21.25rem);
}
.n-main__error:not(:last-child) {
  margin-bottom: 1.25rem;
}
.n-main__ttl {
  font-size: 1.38rem;
  font-weight: 500;
  color: #000;
}
.n-main__ttl:not(:last-child) {
  margin-bottom: 2.5rem;
}
.n-main__btn {
  display: inline-block;
  align-self: center;
}

@media (max-width: 75em) {
  .n-main {
    padding-block: 3.75em;
  }
  .n-main__error {
    font-size: clamp(1.38rem, 28.3333333333vw + 0.07rem, 21.25rem);
  }
}
@media (max-width: 46.25em) {
  .n-main__error {
    font-size: clamp(1.38rem, 45.9459459459vw + 0.07rem, 21.25rem);
  }
}
@media (min-width: 43.75em) {
  html {
    scrollbar-gutter: stable;
  }
}
.lh {
  text-box: trim-both cap alphabetic;
}

.ttl {
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-box: trim-both cap alphabetic;
  font-weight: 500;
}
@media (min-width: 37.5em) {
  .ttl {
    font-size: 1.88em;
  }
}

.crumbs {
  padding-block: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-neutral-400);
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--c-1) transparent;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
  padding-right: 0.75em;
}
@-moz-document url-prefix() {
  .crumbs {
    padding-bottom: 0.63rem;
    margin-bottom: -0.62rem;
  }
}
.crumbs > * {
  flex: 0 0 auto;
  min-width: 0;
}
:where(.crumbs) li {
  display: flex;
  align-items: center;
  gap: inherit;
}
:where(.crumbs) li:not(:last-child)::after {
  content: "/";
  display: inline-block;
}

.link-crumb {
  transition: 0.3s ease-out 0s;
  padding-block: 0.32em;
  margin-block: -0.31em;
}
@media (hover) and (min-width: 34.38em) {
  .link-crumb:hover, .link-crumb:focus-visible {
    color: var(--c-1);
    text-decoration: underline;
  }
}

@media (min-width: 37.5em) {
  .s-pre-main {
    padding-block: 1.88em 1.25em;
  }
  .sd-main {
    padding-block: 1.38em 3.38em;
  }
  .info-sc-project {
    display: grid;
    justify-content: start;
    gap: 3.75em;
    grid-template-columns: repeat(4, 1fr);
  }
  .info-sc-project > * {
    min-width: 0;
  }
  .sd-main__ttl:not(:last-child) {
    margin-bottom: 1.43em;
  }
  .info-sc-project__ttl {
    font-size: 1.25em;
  }
  .info-sc-project__ttl:not(:last-child) {
    padding-bottom: 0.6em;
    border-bottom: 2px solid var(--c-neutral-200);
    margin-bottom: 0.6em;
  }
  .info-sc-project__val {
    font-size: 1.13em;
  }
  .s-card-project__info:not(:last-child) {
    margin-bottom: 2.5em;
  }
}
.info-sc-project__val {
  text-box: trim-both cap alphabetic;
}

.info-sc-project__ttl {
  color: var(--c-neutral-500);
}

@media (min-width: 37.5em) {
  .el-card-project {
    display: grid;
    justify-content: start;
    align-items: start;
    gap: 3.75em;
    grid-template-columns: repeat(2, 1fr);
  }
  .el-card-project > * {
    min-width: 0;
  }
  .fx-tab-img {
    flex-direction: column;
    display: flex;
    gap: 1.88em;
  }
  .fx-tab-img > * {
    min-width: 0;
  }
  .fx-tab-img__box {
    aspect-ratio: 89/45;
    overflow: clip;
  }
  .fx-tab-img__pic {
    opacity: 0;
    pointer-events: none;
  }
  .fx-menu {
    gap: 1.25em;
  }
}
.fx-menu {
  display: flex;
  align-items: flex-start;
}
.fx-menu > * {
  min-width: 0;
}
.fx-menu__itm {
  position: relative;
  isolation: isolate;
  flex: 1 1 100%;
  overflow: clip;
  aspect-ratio: 28/14;
}
.fx-menu__itm > * {
  aspect-ratio: inherit;
}
.fx-menu__btn {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  aspect-ratio: 28/14;
}
:where(.fx-menu__btn) input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  opacity: 0;
}

.fx-tab-img:has(.fx-menu__itm:nth-child(1) input:checked) .fx-tab-img__pic:nth-child(1) {
  opacity: 1;
  pointer-events: auto;
}
.fx-tab-img:has(.fx-menu__itm:nth-child(2) input:checked) .fx-tab-img__pic:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
}
.fx-tab-img:has(.fx-menu__itm:nth-child(3) input:checked) .fx-tab-img__pic:nth-child(3) {
  opacity: 1;
  pointer-events: auto;
}
.fx-tab-img:has(.fx-menu__itm:nth-child(4) input:checked) .fx-tab-img__pic:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
}
.fx-tab-img:has(.fx-menu__itm:nth-child(5) input:checked) .fx-tab-img__pic:nth-child(5) {
  opacity: 1;
  pointer-events: auto;
}
.fx-tab-img:has(.fx-menu__itm:nth-child(6) input:checked) .fx-tab-img__pic:nth-child(6) {
  opacity: 1;
  pointer-events: auto;
}

.fx-menu__itm {
  transition: 0.2s ease-out;
  outline: 3px solid transparent;
}
.fx-menu__itm:has(input:checked) {
  outline-color: var(--c-1);
}

.fx-menu__pic-btn {
  transition: 0.3s ease-out;
}

.fx-menu__itm {
  cursor: pointer;
}
@media (hover) and (min-width: 34.38em) {
  .fx-menu__itm:hover .fx-menu__pic-btn, .fx-menu__itm:focus-visible .fx-menu__pic-btn {
    scale: 1.05;
  }
}

.fx-tab-img__pic {
  transition: 0.3s ease-out;
}

.el-card-project__s-ttl {
  letter-spacing: -0.02em;
  text-box: trim-both cap alphabetic;
}

.el-card-project__s-txt {
  text-box: trim-both cap alphabetic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--c-neutral-600);
}

.list-elc-project__s-ttl {
  color: var(--c-neutral-500);
}

@media (min-width: 37.5em) {
  .el-card-project__info-box {
    flex-direction: column;
    display: flex;
    gap: 3.75em;
  }
  .el-card-project__info-box > * {
    min-width: 0;
  }
  .el-card-project__s-ttl {
    font-size: 1.63em;
  }
  .el-card-project__s-ttl:not(:last-child) {
    margin-bottom: 1.16em;
  }
  .list-elc-project__row {
    display: grid;
    justify-content: start;
    gap: 1em;
    grid-template-columns: 1fr 21.5em;
    border-bottom: 2px solid var(--c-neutral-200);
  }
  .list-elc-project__row > * {
    min-width: 0;
  }
  .list-elc-project__row:first-child {
    padding-block: 0 1.25em;
  }
  .list-elc-project__row:not(:first-child) {
    padding-block: 1.25em;
  }
  .el-card-project__box-btn {
    font-size: 1.19em;
    display: flex;
    gap: 1.25em;
  }
  .el-card-project__box-btn > * {
    flex: 0 0 auto;
    min-width: 0;
  }
}
@media (min-width: 37.5em) {
  .s-pre-main, .s-card-project__info, .el-card-project {
    font-size: 0.9em;
  }
}
@media (max-width: 100em) and (min-width: 37.5em) {
  .sd-main {
    padding-block: 2.5em 3.13em;
  }
  .info-sc-project {
    font-size: 0.75rem;
  }
  .el-card-project {
    font-size: 0.88rem;
    gap: 1.25rem;
  }
  .fx-tab-img {
    gap: 1rem;
  }
}
@media (max-width: 75em) and (min-width: 37.5em) {
  .ttl {
    font-size: 2.5rem;
  }
  .s-pre-main {
    padding-block: 1.25rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 68.75em) and (min-width: 37.5em) {
  .info-sc-project {
    font-size: 0.63rem;
    gap: 2.5em 1.25em;
  }
  .info-sc-project__itm {
    gap: 1.25em;
  }
  .info-sc-project__ttl:not(:last-child) {
    padding-bottom: 0.6em;
    margin-bottom: 0.6em;
  }
}
@media (max-width: 62.5em) {
  .el-card-project {
    flex-direction: column;
    display: flex;
  }
  .el-card-project > * {
    min-width: 0;
  }
}
@media (max-width: 62.5em) and (min-width: 37.5em) {
  .el-card-project__sect, .el-card-project__box-btn {
    font-size: 0.75rem;
  }
  .el-card-project__info-box {
    gap: 1.88em;
  }
  .list-elc-project__row {
    font-size: 1.25em;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 56.25em) and (min-width: 37.5em) {
  .info-sc-project {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 50em) and (min-width: 37.5em) {
  .ttl {
    font-size: 2.25rem;
  }
}
@media (max-width: 37.5em) {
  .s-pre-main {
    padding-block: 1.25em 1.25em;
  }
  .sd-main {
    padding-block: 1.88em 1.88em;
  }
  .ttl {
    font-size: 1.5rem;
  }
  .sd-main__ttl:not(:last-child) {
    margin-bottom: 1.88rem;
  }
  .info-sc-project__ttl {
    font-size: 12px;
  }
  .info-sc-project__ttl:not(:last-child) {
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--c-neutral-200);
    margin-bottom: 0.5em;
  }
  .s-card-project__info:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 37.5em) and (min-width: 25em) {
  .info-sc-project {
    display: grid;
    justify-content: start;
    gap: 1.5em 1.25em;
    grid-template-columns: repeat(2, 1fr);
  }
  .info-sc-project > * {
    min-width: 0;
  }
}
@media (max-width: 37.5em) {
  .el-card-project {
    gap: 2em;
  }
  .fx-tab-img {
    flex-direction: column;
    display: flex;
    gap: 0.75em;
  }
  .fx-tab-img > * {
    min-width: 0;
  }
  .fx-tab-img__box {
    aspect-ratio: 33/25;
    overflow: clip;
  }
  .fx-tab-img__pic {
    opacity: 0;
    pointer-events: none;
  }
  .fx-menu {
    gap: 0.63em;
  }
  .el-card-project__info-box {
    flex-direction: column;
    display: flex;
    gap: 2.5em;
  }
  .el-card-project__info-box > * {
    min-width: 0;
  }
  .el-card-project__s-ttl {
    font-size: 1.38em;
  }
  .el-card-project__s-ttl:not(:last-child) {
    margin-bottom: 1rem;
  }
  .el-card-project__s-txt {
    font-size: 1em;
  }
  .list-elc-project__row {
    display: grid;
    justify-content: start;
    gap: 0.38em 0.63em;
    border-bottom: 2px solid var(--c-neutral-200);
  }
  .list-elc-project__row > * {
    min-width: 0;
  }
  .list-elc-project__row:first-child {
    padding-block: 0 0.63em;
  }
  .list-elc-project__row:not(:first-child) {
    padding-block: 0.63em;
  }
  .el-card-project__box-btn {
    display: flex;
    gap: 0.75em 0.63em;
    flex-wrap: wrap;
  }
  .el-card-project__box-btn > * {
    flex: 0 0 auto;
    min-width: 0;
  }
}
@media (max-width: 37.5em) and (min-width: 31.25em) {
  .list-elc-project__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 31.25em) {
  .list-elc-project__s-ttl {
    font-weight: 500;
    color: var(--c-1);
  }
}
@media (max-width: 30.63em) {
  .el-card-project__box-btn {
    flex-direction: column;
    font-size: 1.13rem;
  }
}
@media (max-width: 25em) {
  .info-sc-project {
    flex-direction: column;
    display: flex;
    gap: 1.5em;
  }
  .info-sc-project > * {
    min-width: 0;
  }
}
@media (min-width: 37.5em) {
  .s-address {
    padding-block: 3.38em 6.75em;
  }
  .p-sect {
    padding-block: 3.75em;
  }
  .p__ttl:not(:last-child) {
    margin-bottom: 1.15em;
  }
  .s-address__map {
    aspect-ratio: 184/54;
  }
}
.p-map {
  cursor: pointer;
}

.p-map__box-iframe {
  pointer-events: none;
}

.p-map._js-active .p-map__box-iframe {
  pointer-events: auto;
}

@media (max-width: 100em) and (min-width: 37.5em) {
  .s-address {
    padding-block: 3.13em 6.25em;
  }
}
@media (max-width: 93.75em) and (min-width: 81.25em) {
  .s-address__map {
    aspect-ratio: 184/64;
  }
}
@media (max-width: 81.25em) and (min-width: 75em) {
  .s-address__map {
    aspect-ratio: 184/74;
  }
}
@media (max-width: 75em) and (min-width: 37.5em) {
  .s-address__map {
    aspect-ratio: 184/94;
  }
}
@media (max-width: 62.5em) and (min-width: 37.5em) {
  .s-address {
    padding-block: 2.5em 5em;
  }
}
@media (max-width: 43.75em) and (min-width: 37.5em) {
  .s-address__map {
    aspect-ratio: 184/124;
  }
}
@media (max-width: 37.5em) {
  .s-address {
    padding-block: 1.88em 3.75em;
  }
  .s-address__map {
    aspect-ratio: 34/40;
  }
  .p__ttl:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (min-width: 37.5em) {
  .s-reviews {
    padding-block: 6.75em;
  }
  .s-reviews__box {
    display: flex;
    justify-content: space-between;
    gap: 1.75em;
  }
  .s-reviews__box > * {
    min-width: 0;
  }
  .s-reviews__slider {
    max-width: 53.13em;
  }
  .s-reviews__l {
    flex: 0 0 auto;
    flex-direction: column;
    display: flex;
    gap: 10.63em;
  }
  .s-reviews__l > * {
    min-width: 0;
  }
  .s-reviews__box-btn {
    flex: 0 0 auto;
    gap: 1.25em;
  }
  .s-reviews__box-btn > * {
    flex: 0 0 auto;
  }
  .btn-l-sw svg {
    display: block;
    rotate: 180deg;
  }
}
.btn-sw, .btn-l-sw {
  display: block;
  width: 3.5em;
  height: 3.5em;
  transition: 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .btn-sw:hover, .btn-sw:focus-visible, .btn-l-sw:hover, .btn-l-sw:focus-visible {
    color: var(--c-neutral-400);
  }
}

.btn-l-sw svg {
  display: block;
  rotate: 180deg;
}

.s-reviews {
  background: var(--gradient);
  color: var(--white);
}

.s-reviews__box-btn {
  display: flex;
}
.s-reviews__box-btn > * {
  flex: 0 0 auto;
}

.info-card-rev__ico {
  transition: 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .info-card-rev__ico:hover, .info-card-rev__ico:focus-visible {
    color: var(--c-neutral-400);
  }
}

@media (min-width: 37.5em) {
  .s-reviews__ico {
    width: 10em;
    height: 6.44em;
  }
  .card-rev__txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 2em;
  }
  .card-rev__txt:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .fx-show-btn__name {
    font-size: 1.38em;
  }
  .fx-show__show-btn:not(:last-child) {
    margin-bottom: 5em;
  }
  .info-card-rev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
  .info-card-rev > * {
    min-width: 0;
  }
  .info-card-rev__ico {
    flex: 0 0 auto;
  }
  .info-card-rev__author {
    font-size: 1.75em;
  }
  .info-card-rev__author:not(:last-child) {
    margin-bottom: 0.58em;
  }
  .info-card-rev__desc-author {
    font-size: 1.25em;
  }
}
.info-card-rev__desc-author {
  opacity: 0.5;
}

.info-card-rev__ico {
  width: 4.25em;
  height: 4.25em;
}

.fx-show-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.fx-show-btn > * {
  flex: 0 0 auto;
}
:where(.fx-show-btn) input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
}
.fx-show-btn__open-name {
  display: none;
}
.fx-show-btn__name {
  width: 10.91em;
}
.fx-show-btn__arr {
  width: 1.25em;
  height: 1.25em;
  margin-top: 0.19em;
  transition: 0.3s ease;
}
@media (hover) and (min-width: 34.38em) {
  .fx-show-btn:hover, .fx-show-btn:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }
}

.fx-show:has(.fx-show__show-btn input:checked) .fx-show-btn__arr {
  rotate: 180deg;
}
.fx-show:has(.fx-show__show-btn input:checked) .fx-show-btn__close-name {
  display: none;
}
.fx-show:has(.fx-show__show-btn input:checked) .fx-show-btn__open-name {
  display: block;
}
.fx-show:has(.fx-show__show-btn input:checked) .fx-show__txt.card-rev__txt {
  -webkit-line-clamp: initial;
}

@media (min-width: 37.5em) {
  .s-reviews__box {
    font-size: 0.9em;
  }
}
@media (max-width: 93.75em) and (min-width: 37.5em) {
  .s-reviews {
    padding-block: 6.25em;
  }
  .s-reviews__box {
    font-size: 0.82rem;
  }
}
@media (max-width: 75em) and (min-width: 37.5em) {
  .s-reviews {
    padding-block: 5.63em;
  }
}
@media (max-width: 62.5em) and (min-width: 37.5em) {
  .card-rev__txt {
    font-size: 1.25rem;
  }
}
@media (max-width: 56.25em) and (min-width: 37.5em) {
  .s-reviews__ico {
    border: 1px solid #f80808;
    display: none;
  }
  .s-reviews__l {
    gap: 0;
    grid-column: span 2;
  }
  .s-reviews__box {
    display: grid;
    justify-content: start;
    grid-template-columns: 1fr auto;
  }
  .s-reviews__box > * {
    min-width: 0;
  }
  .s-reviews__slider {
    max-width: 100%;
    width: initial;
    min-width: 0;
  }
}
@media (max-width: 37.5em) {
  .s-reviews__box {
    display: grid;
    justify-content: start;
    align-items: center;
    gap: 2em 1.25em;
    grid-template-columns: 1fr auto;
  }
  .s-reviews__box > * {
    min-width: 0;
  }
  .s-reviews__slider {
    grid-column: span 2;
    order: 10;
  }
  .s-reviews__ttl {
    align-self: stretch;
  }
  .s-reviews__ico {
    position: absolute;
    top: 0;
    left: 1.25em;
    z-index: 5;
    width: 3.75em;
    height: 2.5em;
    translate: 0 -60%;
  }
  .s-reviews {
    padding-block: 3em;
    position: relative;
    isolation: isolate;
  }
  .s-reviews__box-btn {
    font-size: 0.88rem;
  }
  .s-reviews__slider {
    max-width: 100%;
  }
  .card-rev__txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 1.13em;
  }
  .card-rev__txt:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .fx-show__show-btn {
    font-size: 1.13em;
  }
  .fx-show__show-btn:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .info-card-rev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
  .info-card-rev > * {
    min-width: 0;
  }
  .info-card-rev__ico {
    flex: 0 0 auto;
    font-size: 0.82em;
  }
  .info-card-rev__author {
    font-size: 1.38em;
  }
  .info-card-rev__author:not(:last-child) {
    margin-bottom: 0.88rem;
  }
  .info-card-rev__desc-author {
    font-size: 1em;
  }
}
@media (min-width: 37.5em) {
  .s-other {
    padding-block: 6.75em;
  }
  .cs-other__img {
    margin: 0 -1.56em -1.56em 0;
    border-radius: 0.75em;
    overflow: clip;
  }
  @supports (corner-shape: bevel) {
    .cs-other__img {
      border-radius: 50% 50% 0 0/40% 14% 0 0;
      corner-shape: bevel;
    }
  }
  .s-other__top {
    display: flex;
    justify-content: space-between;
    gap: 1.25em;
  }
  .s-other__top:not(:last-child) {
    margin-bottom: 3.75em;
  }
  .s-other__top > * {
    min-width: 0;
  }
  .s-other__box-btn {
    flex: 0 0 auto;
    display: flex;
    gap: 1.25em;
    color: var(--c-1);
  }
  .s-other__box-btn > * {
    flex: 0 0 auto;
    min-width: 0;
  }
  .cs-other {
    padding: 1.5em;
    align-self: stretch;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 2.5em;
  }
  .cs-other > * {
    min-width: 0;
  }
}
.s-other {
  background-color: var(--c-neutral-200);
}

.cs-other {
  background-color: var(--white);
  overflow: clip;
}

.cs-other__ttl, .cs-other__img {
  display: block;
}

@media (min-width: 37.5em) {
  .cs-other__box {
    display: flex;
    gap: 2em;
  }
  .cs-other__box > * {
    min-width: 0;
  }
  .cs-other__l {
    flex: 0 0 9.13em;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 1em;
  }
  .cs-other__l > * {
    min-width: 0;
  }
  .cs-other__ttl {
    font-size: 1.5em;
    text-box: trim-both cap alphabetic;
  }
  .cs-other__img {
    flex: 1 1 auto;
    aspect-ratio: 35/27;
  }
}
.cs-other__img {
  align-self: end;
}

@media (min-width: 37.5em) {
  .cs-other__s-ttl {
    font-size: 14px;
    color: var(--c-neutral-500);
    border-bottom: 1px solid var(--c-neutral-300);
    padding-bottom: 0.43em;
  }
  .cs-other__s-ttl:not(:last-child) {
    margin-bottom: 0.43em;
  }
}
@media (min-width: 31.25em) {
  .list-cs-other {
    flex-direction: column;
    display: flex;
    gap: 1.88em;
  }
  .list-cs-other > * {
    min-width: 0;
  }
}
@media (min-width: 37.5em) {
  .s-reviews__box {
    font-size: 0.9em;
  }
}
@media (max-width: 100em) and (min-width: 37.5em) {
  .s-other {
    padding-block: 6.25em;
  }
}
@media (max-width: 93.75em) and (min-width: 37.5em) {
  .s-other__swiper {
    font-size: 0.88rem;
  }
}
@media (max-width: 81.25em) and (min-width: 37.5em) {
  .s-other {
    padding-block: 5em;
  }
}
@media (max-width: 53.75em) and (min-width: 37.5em) {
  .cs-other__box {
    gap: 0.63em;
  }
}
@media (max-width: 50em) and (min-width: 47.5em) {
  .s-other {
    padding-block: 4.38em;
  }
  .cs-other__img {
    aspect-ratio: 35/37;
  }
  @supports (corner-shape: bevel) {
    .cs-other__img {
      border-radius: 30% 70% 0 0/20% 14% 0 0;
    }
  }
}
@media (max-width: 37.5em) {
  .s-other {
    padding-block: 3.75em;
  }
  .s-other__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25em;
  }
  .s-other__top:not(:last-child) {
    margin-bottom: 2em;
  }
  .s-other__top > * {
    min-width: 0;
  }
  .s-other__box-btn {
    flex: 0 0 auto;
    display: flex;
    gap: 0.75em;
    font-size: 0.88rem;
    color: var(--c-1);
  }
  .s-other__box-btn > * {
    flex: 0 0 auto;
    min-width: 0;
  }
  .cs-other {
    padding: 0.75em;
    align-self: stretch;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 1.25em;
  }
  .cs-other > * {
    min-width: 0;
  }
  .cs-other__ttl {
    font-size: 1.25em;
    text-box: trim-both cap alphabetic;
  }
  .cs-other__img {
    border-radius: 0.63em;
    overflow: clip;
  }
  @supports (corner-shape: bevel) {
    .cs-other__img {
      border-radius: 20% 80% 0 0/10% 9% 0 0;
      corner-shape: bevel;
    }
  }
  .cs-other__s-ttl {
    font-size: 12px;
    color: var(--c-neutral-500);
    border-bottom: 1px solid var(--c-neutral-300);
    padding-bottom: 0.38rem;
  }
  .cs-other__s-ttl:not(:last-child) {
    margin-bottom: 0.38rem;
  }
  .cs-other__s-val {
    font-size: 13px;
  }
}
@media (max-width: 37.5em) and (min-width: 31.25em) {
  .cs-other__img {
    margin: 0 -0.75em -0.75em 0;
  }
  .cs-other__btn-pc {
    font-size: 0.88rem;
  }
  .cs-other__box {
    display: flex;
    gap: 1.88em;
  }
  .cs-other__box > * {
    min-width: 0;
  }
  .cs-other__l {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    gap: 0.75em;
  }
  .cs-other__l > * {
    min-width: 0;
  }
}
@media (min-width: 31.25em) {
  .cs-other__mbl-btn {
    display: none;
  }
}
@media (max-width: 31.25em) {
  .cs-other__l:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .cs-other__btn-pc {
    display: none;
  }
  .cs-other__img:not(:last-child) {
    margin-bottom: 0.63rem;
  }
  .cs-other__mbl-btn {
    width: 100%;
  }
}
@media (min-width: 37.5em) {
  .s-form {
    padding-block: 6.75em;
  }
  .s-form__box {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 3.75em;
  }
  .s-form__box > * {
    min-width: 0;
  }
  .s-form__desc {
    font-size: 1.38em;
  }
  .s-form__e-request {
    max-width: 53.13rem;
  }
  .p-form__box-btn {
    display: flex;
    gap: 2em;
  }
  .p-form__box-btn > * {
    min-width: 0;
  }
  .p-form__submit {
    flex: 0 0 auto;
  }
}
.s-form {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.s-form__decor-a, .s-form__decor-b {
  display: block;
  position: absolute;
  z-index: -10;
  width: 33.5em;
  height: 44.82em;
}
.s-form__decor-a {
  top: -1px;
  left: -1px;
}
.s-form__decor-b {
  right: -1px;
  bottom: -1px;
}
.s-form__desc {
  color: var(--c-neutral-600);
}

.s-form__top {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 53.13rem;
}
@media (min-width: 37.5em) {
  .s-form__top {
    max-width: 53.13rem;
    gap: 1.63em;
  }
}
.s-form__top > * {
  min-width: 0;
}

.c-apply {
  font-size: 0.88em;
  flex: 0 0 auto;
  appearance: none;
  width: 1.88em;
  height: 1.88em;
  border-radius: 0.13em;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-1);
  cursor: pointer;
  transition: 0.25s ease-out 0s;
}
.c-apply::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: var(--url-svg-ok) 50% 50%/contain no-repeat;
  pointer-events: none;
  opacity: 0;
  transition: inherit;
}
@media (hover) and (min-width: 34.38em) {
  .c-apply:hover, .c-apply:focus-visible {
    background-color: var(--c-blue-100);
  }
}

.c-apply:checked::before {
  opacity: 1;
}

.apply-form {
  font-size: 0.88rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.63em;
}
.apply-form__link-apply {
  transition: 0.2s ease-out 0s;
  text-decoration: underline;
}
@media (hover) and (min-width: 34.38em) {
  .apply-form__link-apply:hover, .apply-form__link-apply:focus-visible {
    color: var(--c-1);
  }
}

.p-form:not(.p-form:has(.c-apply:checked)) .p-form__submit {
  pointer-events: none;
  filter: grayscale(90%);
  opacity: 0.5;
}

.p-form {
  flex-direction: column;
  display: flex;
}
.p-form > * {
  min-width: 0;
}
@media (min-width: 37.5em) {
  .p-form {
    gap: 5em;
  }
}

.p-input {
  background-color: transparent;
  transition: 0.3s ease-out 0s;
  border-bottom: 1px solid #fff;
  outline: none;
}
@media (min-width: 37.5em) {
  .p-input {
    padding: 1.6em 1em 1.6em 0;
    border-bottom: 2px solid var(--c-neutral-500);
    font-size: 1.25em;
  }
}
.p-input::-webkit-input-placeholder {
  color: var(--c-neutral-400);
}
.p-input::-moz-placeholder {
  color: var(--c-neutral-400);
}
@media (hover) and (min-width: 34.38em) {
  .p-input:hover::-webkit-input-placeholder, .p-input:focus-visible::-webkit-input-placeholder {
    color: var(--c-black);
  }
  .p-input:hover::-moz-placeholder, .p-input:focus-visible::-moz-placeholder {
    color: var(--c-black);
  }
}

.p-input:user-invalid {
  border-color: #f82929;
  color: #f82929;
}
.p-input:user-invalid::-webkit-input-placeholder {
  color: #f82929;
}
.p-input:user-invalid::-moz-placeholder {
  color: #f82929;
}

@media (min-width: 37.5em) {
  .s-form__box {
    font-size: 0.9em;
  }
}
@media (max-width: 112.5em) and (min-width: 37.5em) {
  .s-form__decor-a, .s-form__decor-b {
    font-size: 0.7777777778vw;
  }
}
@media (max-width: 100em) and (min-width: 37.5em) {
  .s-form {
    padding-block: 6.25em;
  }
}
@media (max-width: 81.25em) and (min-width: 37.5em) {
  .s-form {
    padding-block: 5em;
  }
  .s-form__e-request {
    font-size: 0.82rem;
  }
}
@media (max-width: 56.25em) and (min-width: 37.5em) {
  .s-form {
    padding-block: 5.63em;
  }
  .p-form__box-btn {
    gap: 1.25em;
  }
}
@media (max-width: 37.5em) {
  .s-form__decor-a, .s-form__decor-b {
    display: none;
  }
  .s-form {
    padding-block: 3.75em;
  }
  .s-form__box {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 2em;
  }
  .s-form__box > * {
    min-width: 0;
  }
  .s-form__e-request {
    max-width: 53.13rem;
  }
  .p-form__box-btn {
    flex-direction: column;
    display: flex;
    gap: 0.75em;
  }
  .p-form__box-btn > * {
    min-width: 0;
  }
  .s-form__top {
    gap: 0.75em;
  }
  .p-form {
    gap: 3.75em;
  }
  .p-input {
    padding: 1.75em 1.25em 1.88em 0;
    border-bottom: 2px solid var(--c-neutral-500);
  }
}
.p-menu {
  gap: 1.88em;
  padding: 0.88em 0.75em;
}

.p__menu {
  position: fixed;
  top: 8.75rem;
  right: 0;
  z-index: 50;
}

.p-menu {
  flex-direction: column;
  display: flex;
  border-radius: var(--radius);
  background-color: var(--c-neutral-200);
  box-shadow: var(--shadow);
}

.btn-p-menu {
  display: block;
  width: 1.6em;
  height: 1.6em;
  color: var(--c-red-300);
  transition: 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .btn-p-menu:hover, .btn-p-menu:focus-visible {
    color: var(--c-1);
  }
}

@media (min-width: 37.5em) {
  .p__menu {
    top: 20%;
  }
  .p-menu {
    gap: 2em;
    padding: 1.13em 1em;
  }
}
[data-lp] {
  padding-right: var(--g-padding-right, 0px);
}

.lock body {
  overflow: hidden;
}

.wrapper::after, p-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1200;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
}

.popup-show .wrapper::after, .popup-show p-wrapper::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
}
@media (min-width: 37.5em) {
  .popup__wrapper {
    padding: 1.88rem 0.63rem;
  }
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  border-radius: 1.25rem;
  background-color: #eee;
  position: relative;
}
@media (min-width: 37.5em) {
  .popup__content {
    padding: 1.25rem;
  }
}
.lock .popup__content {
  visibility: visible;
}

.popup__close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  width: 1.57em;
  height: 1.57em;
  transition: 0.3s ease-out 0s;
  translate: -50% 50%;
  transition: 0.3s ease-out;
  outline: none;
  background-color: transparent;
}
@media (any-hover: hover) {
  .popup__close:hover {
    scale: 1.2;
  }
}

.wrapper::after, p-wrapper::after {
  background-color: #000;
  transform: translate3d(0, 0, 0);
}

.popup-show .wrapper::after, .popup-show p-wrapper::after {
  opacity: 0.7;
}

.pp-form {
  border-radius: 0rem;
  flex: 0 0 auto;
}

@media (min-width: 37.5em) {
  .w-pp {
    padding: 2.5em 2.5em 2.5em;
  }
  .w-pp__form {
    font-size: 0.82rem;
  }
  .w-pp__ttl {
    font-size: 1.88em;
  }
}
.w-pp {
  width: 100%;
  position: relative;
  isolation: isolate;
  border-radius: 0.32rem;
  background-color: var(--white);
  overflow: clip;
  max-width: 55.63em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 14px 14px 0 rgba(0, 0, 0, 0.09), 0 32px 19px 0 rgba(0, 0, 0, 0.05), 0 57px 23px 0 rgba(0, 0, 0, 0.01), 0 90px 25px 0 rgba(0, 0, 0, 0);
}
.w-pp__box-ttl {
  text-align: center;
  align-self: center;
  max-width: 37.5rem;
  margin-inline: auto;
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.w-pp__box-ttl:not(:last-child) {
  margin-bottom: 1.5em;
}
.w-pp__box-ttl > * {
  min-width: 0;
}
.w-pp__sub-ttl {
  font-size: 1.75em;
  font-weight: 700;
  text-align: center;
}
.w-pp__sub-ttl:not(:last-child) {
  margin-bottom: 1.22em;
}

@media (min-width: 37.5em) {
  .w-pp__close {
    position: absolute;
    top: 1.25em;
    right: 1.25em;
    z-index: 5;
  }
  .w-pp__desc {
    font-size: 0.94rem;
  }
}
.close-pp {
  outline: none;
}
@media (min-width: 37.5em) {
  .close-pp {
    padding: 0.63em;
  }
}
.close-pp__ico {
  width: 1.88em;
  height: 1.88em;
  transition: 0.3s ease-out 0s;
}
.close-pp::before {
  content: "";
  display: inline-block;
  width: 11.07em;
  height: 11.57em;
  background: var(--url-pp-triangle-r) 50% 50%/contain no-repeat;
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: -1;
  transition: 0.3s ease-out 0s;
  pointer-events: none;
}
@media (hover) and (min-width: 34.38em) {
  .close-pp:hover .close-pp__ico, .close-pp:focus-visible .close-pp__ico {
    rotate: 90deg;
  }
  .close-pp:hover::before, .close-pp:focus-visible::before {
    filter: brightness(120%);
  }
}

.pp-form__ta {
  width: 100%;
}

.w-pp__close {
  background-color: transparent;
}

.pp-form {
  flex-direction: column;
  display: flex;
  gap: 0.75em;
}
.pp-form > * {
  min-width: 0;
}

@media (min-width: 37.5em) {
  .w-pp--ok {
    padding-block: 5em;
    gap: 1.25em;
  }
}
.w-pp--ok {
  flex-direction: column;
  display: flex;
  align-items: center;
}
.w-pp--ok > * {
  min-width: 0;
}

@media (max-width: 37.5em) {
  .w-pp {
    padding: 3.75em 1.25em 1.25em;
  }
  .w-pp__close {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 5;
    font-size: 0.88rem;
  }
  .popup {
    padding: 1.25em 0.75em;
  }
  .w-pp__ttl {
    font-size: 1.5em;
  }
  .w-pp--ok {
    padding-block: 3.75em;
    gap: 1.25em;
  }
}

@media (min-width: 37.5em) {
  .p__footer {
    padding-block: 5em;
  }
  .footer__c-box {
    display: flex;
    justify-content: space-between;
    gap: 1.88em 2.5em;
  }
  .footer__c-box > * {
    min-width: 0;
  }
  .footer__address-clm {
    flex: 0 1 19.57em;
  }
  .footer__logo:not(:last-child) {
    margin-bottom: 4.94em;
  }
  .footer__list-address:not(:last-child) {
    margin-bottom: 2em;
  }
  .link-ftr {
    font-size: 1.5em;
    font-weight: 500;
    display: block;
  }
  .f-list-address {
    flex-direction: column;
    display: flex;
    gap: 0.5em;
  }
  .f-list-address > * {
    min-width: 0;
  }
  .footer__container {
    flex-direction: column;
    display: flex;
    gap: 4em;
  }
  .footer__container > * {
    min-width: 0;
  }
  .list-m-pay {
    display: flex;
    gap: 1.5em;
    height: 2.38em;
    flex: 0 0 auto;
  }
  .list-m-pay > * {
    flex: 0 0 auto;
    min-width: 0;
  }
}
.footer__clm, .footer__xx-clm {
  flex-direction: column;
  display: flex;
}
.footer__clm > *, .footer__xx-clm > * {
  min-width: 0;
}

@media (min-width: 37.5em) {
  .footer__clm {
    gap: 1.25em;
    max-width: 14.38em;
  }
  .footer__xx-clm {
    gap: 1.25em;
  }
}
.footer__s-ttl {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 37.5em) {
  .footer__s-ttl {
    font-size: 1.38em;
  }
}

.list-nvf {
  flex-direction: column;
  display: flex;
}
.list-nvf > * {
  min-width: 0;
}
@media (min-width: 37.5em) {
  .list-nvf {
    gap: 1em;
  }
}
.list-nvf__link {
  display: block;
  padding-block: 0.38em;
  margin-block: -0.37em;
  color: rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .list-nvf__link:hover, .list-nvf__link:focus-visible {
    color: var(--c-1);
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }
}

.footer__hr {
  width: 100%;
  height: 1px;
  background-color: var(--c-neutral-300);
}

.footer__inf-txt {
  color: var(--c-neutral-600);
}

@media (min-width: 37.5em) {
  .footer__inf-txt {
    font-size: 1.13em;
  }
  .footer__end-box {
    display: flex;
    justify-content: space-between;
    gap: 1.25em 1.88em;
  }
  .footer__end-box > * {
    min-width: 0;
  }
  .footer__btn {
    width: 100%;
  }
  .footer__btn:not(:last-child) {
    margin-bottom: 2rem;
  }
  .f-list-info-address {
    flex-direction: column;
    display: flex;
    gap: 1.25em;
  }
  .f-list-info-address > * {
    min-width: 0;
  }
  .f-list-info-address__ttl, .f-list-info-address__val {
    font-size: 1.13em;
  }
  .footer__il-address:not(:last-child) {
    margin-bottom: 2em;
  }
  .footer__nav-box {
    display: flex;
    justify-content: space-between;
    gap: 2em 1.38em;
    max-width: 80em;
    width: 100%;
  }
  .footer__nav-box > * {
    min-width: 0;
  }
}
.f-list-info-address__ttl {
  color: var(--c-neutral-400);
}

.social-ft {
  display: flex;
  gap: 1.25em;
}
.social-ft > * {
  flex: 0 0 auto;
}
.social-ft__link {
  display: block;
  width: 2em;
  height: 2em;
  color: var(--c-black);
  --_c-svg-ico-2: var(--white);
  transition: 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .social-ft__link:hover, .social-ft__link:focus-visible {
    color: var(--c-1);
  }
}

@media (min-width: 37.5em) {
  .footer {
    font-size: 0.9em;
  }
}
@media (max-width: 100em) and (min-width: 37.5em) {
  .footer__nav-box {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__nav-box > * {
    min-width: 0;
  }
  .footer__end-box {
    font-size: 0.82em;
  }
}
@media (max-width: 62.5em) {
  .footer__c-box {
    flex-direction: column;
    display: flex;
    gap: 1.5em;
  }
  .footer__c-box > * {
    min-width: 0;
  }
  .footer__address-clm {
    order: 10;
  }
  .footer__end-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 62.5em) and (min-width: 37.5em) {
  .footer__address-clm {
    flex: initial;
    align-items: flex-start;
  }
  .footer__address-clm > * {
    flex: 0 0 auto;
    min-width: 0;
  }
  .footer__btn {
    width: initial;
    min-width: 25em;
  }
  .footer__logo:not(:last-child), .footer__list-address:not(:last-child) {
    margin-bottom: 1.25em;
  }
  .footer__container {
    gap: 1.88em;
  }
  .p__footer {
    padding-block: 3.75em;
  }
}
@media (max-width: 43.75em) and (min-width: 37.5em) {
  .footer__nav-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .p__footer {
    padding-block: 3.75em;
  }
  .footer__clm, .footer__xx-clm {
    gap: 1.13em;
    border-bottom: 2px solid var(--c-neutral-300);
    padding-bottom: 1.5em;
  }
  .footer__nav-box {
    flex-direction: column;
    display: flex;
    gap: 1.5em;
  }
  .footer__nav-box > * {
    min-width: 0;
  }
  .list-nvf {
    gap: 0.75em;
  }
  .footer__s-ttl {
    font-size: 1.25em;
  }
  .footer__address-clm {
    flex-direction: column;
    display: flex;
    gap: 1.88em;
  }
  .footer__address-clm > * {
    min-width: 0;
  }
  .link-ftr {
    font-size: 1.25em;
    font-weight: 500;
    display: block;
  }
  .f-list-address {
    flex-direction: column;
    display: flex;
    gap: 0.5em;
  }
  .f-list-address > * {
    min-width: 0;
  }
  .footer__container {
    flex-direction: column;
    display: flex;
    gap: 1.5em;
  }
  .footer__container > * {
    min-width: 0;
  }
  .f-list-info-address {
    flex-direction: column;
    display: flex;
    gap: 1em;
  }
  .f-list-info-address > * {
    min-width: 0;
  }
  .footer__end-box {
    gap: 1em;
  }
}
[data-lp] {
  padding-right: var(--g-padding-right);
}

@media (prefers-reduced-motion) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}
.p__btn-to-top {
  font-size: 16px;
}

@media (max-width: 37.5em) {
  .p__btn-to-top {
    display: none;
  }
}
.p-nofocus:focus {
  outline: none;
}

.p-f-nofocus:focus, .p-f-nofocus:focus-visible {
  outline: none;
}