@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

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

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      flex-shrink: 0;
      order: 9999;
      content: "";
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: var(--swiper-centered-offset-after);
      height: 100%;
      min-height: 1px;
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    width: var(--swiper-virtual-size);
    height: 1px;
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

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

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

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

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

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

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-sides-offset, 4px);
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-top-offset, 50%);
    margin-top: 0;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    top: auto;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

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

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &: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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    width: 8px;
    transform: translateY(-50%);
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

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

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

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

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

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

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

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

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

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

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

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

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

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.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-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

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

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    visibility: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
            backface-visibility: hidden;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    visibility: visible;
    pointer-events: auto;
  }
  .swiper-cube-shadow {
    z-index: 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    &:before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #000;
      content: "";
      filter: blur(50px);
    }
  }
}

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

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    z-index: 1;
            backface-visibility: hidden;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    -webkit-backface-visibility: hidden;
    overflow: hidden;
            backface-visibility: hidden;
    transition-property: transform, opacity, height;
  }
}

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

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

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

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

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

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

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

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

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    right: auto;
    left: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    right: auto;
    left: var(--swiper-navigation-top-offset, 50%);
    margin-top: 0;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    top: auto;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

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

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

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    -webkit-appearance: none;
            appearance: none;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &: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 {
  top: 50%;
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    width: 8px;
    transform: translateY(-50%);
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .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 {
  position: absolute;
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  .swiper-pagination-progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    top: 0;
    left: 0;
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    top: 0;
    left: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
  }
}

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

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  min-width: 0;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  margin: 0;
  clear: both;
  overflow: visible; /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  overflow: hidden auto;
  color: #000000;
  font-style: normal;
  font-weight: 400;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-word;
  overflow-wrap: break-word;
}

img, svg {
  display: block;
  width: 100%;
  height: auto;
}

small, button, label, picture, video {
  display: block;
}

a, button {
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

a:hover, a:active, button:hover, button:active {
  outline: none;
  text-decoration: underline;
}

a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px #000000;
}

b, strong {
  font-weight: 700;
}

input, textarea, select, optgroup {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}

button {
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
          appearance: none;
}

button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #000000;
}

select {
  cursor: pointer;
}

input[type=radio], input[type=checkbox] {
  width: auto;
  margin: 0 5px 0 0;
  border: none;
}

input[type=submit] {
  text-align: center;
}

::placeholder {
  color: #000000;
}

dt {
  font-weight: 400;
}

li {
  display: block;
}

.wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden auto;
}
.innerbox {
  width: 100%;
  padding: 0 5.3333333333vw;
}

.bold {
  font-weight: 700;
}

.visible_s {
  display: none !important;
}

.visible_m {
  display: none !important;
}

.visible_l {
  display: none !important;
}

.visible_xl {
  display: none !important;
}

.visible_xxl {
  display: none !important;
}

.visible_xxxl {
  display: none !important;
}

.inline_block {
  display: inline-block;
  max-width: 100%;
}

.pt1em {
  padding-top: 1em;
}

.pr1em {
  padding-right: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pl1em {
  padding-left: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mr1em {
  margin-right: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.ml1em {
  margin-left: 1em;
}

.txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.l-footer__wrap {
  padding: 8.5333333333vw 0 4.2666666667vw;
}
.l-footer__logo {
  display: block;
  width: 37.3333333333vw;
  margin: 0 auto;
}
.l-footer__item_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 66.6666666667vw;
  margin: 2.6666666667vw auto 0;
  gap: 2.1333333333vw 0;
}
.l-footer__item_list > li {
  padding: 0 2.6666666667vw;
  line-height: 1;
}
.l-footer__item_list > li > a {
  display: inline-block;
  font-size: 2.6666666667vw;
  line-height: 1.5;
}
.l-footer__item_list > li:nth-child(1) {
  border-right: 1px solid #000000;
}
.l-footer__copyright {
  margin-top: 4.2666666667vw;
  font-size: 12px;
  line-height: 2;
  text-align: center;
}

.l-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16vw;
}
.l-header__logo {
  flex: 0 0 27.2vw;
  margin-left: 2.6666666667vw;
}
.l-header__right {
  display: flex;
  flex: 0 0 53.3333333333vw;
  align-items: center;
  justify-content: flex-end;
}
.l-header__sns_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 2.6666666667vw;
  gap: 1.6vw;
}
.l-header__sns_list > li {
  flex: 0 0 5.8666666667vw;
}
.l-header__sns_list > li > a {
  display: block;
}
.l-header__sns_list > li > a.is-shadow_red {
  position: relative;
}
.l-header__sns_list > li > a.is-shadow_red:focus-visible::before {
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 3px #EB1E1E;
          user-select: none;
}
.l-header__niigata_link {
  display: flex;
  flex: 0 0 33.0666666667vw;
  align-items: center;
  justify-content: center;
  height: 16vw;
  background-color: #eb1e1e;
  color: #fff;
  font-size: 2.9333333333vw;
  line-height: 1.4;
  text-align: center;
}
.l-header__bottom {
  display: flex;
  z-index: 1325;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 18.6666666667vw;
  background-color: #49719D;
}
.l-header__bottom.is-active, .l-header__bottom.is-header_scroll {
  position: fixed;
  top: 0;
  left: 0;
}
.l-header__bottom__ttl {
  padding: 0 5.3333333333vw;
  color: #ffffff;
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.3888888889;
  letter-spacing: 0.01em;
}

.l-main {
  flex-grow: 1;
}
.l-main.is-header_scroll {
  padding-top: 16vw;
}

.l-nav {
  position: fixed;
  inset: 0;
  padding: 32vw 15.4666666667vw 16vw;
  overflow: hidden auto;
  background-color: #49719D;
  color: #ffffff;
  -webkit-user-select: none;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
          user-select: none;
}
.l-nav.is-active {
  -webkit-user-select: auto;
  opacity: 1;
  pointer-events: auto;
          user-select: auto;
}
.l-nav__item_list > li {
  padding: 8vw 0;
}
.l-nav__item_list > li + li {
  border-top: 0.4vw solid #ffffff;
}
.l-nav__item_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 1.3333333333vw 0;
  gap: 2.6666666667vw;
}
.l-nav__item_link_txt {
  position: relative;
  flex-shrink: 0;
  padding-left: 8vw;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1;
}
.l-nav__item_link_txt::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 5.3333333333vw;
  height: 1.0666666667vw;
  transform: translate3d(0, -50%, 0);
  background-color: #EB1E1E;
  content: "";
}
.l-nav__item_icon_external {
  flex: 0 0 2.6666666667vw;
}
.l-nav__item_icon_external svg {
  width: auto;
}

.o-bnr__txt_wrap {
  display: block;
  position: relative;
  aspect-ratio: 400/220;
  width: 100%;
  overflow: hidden;
  border-radius: 2.6666666667vw;
}
.o-bnr__txt_wrap::before {
  display: block;
  z-index: 2;
  position: absolute;
  inset: 0;
  background-color: rgba(1, 21, 45, 0.5);
  content: "";
}
.o-bnr__txt_wrap img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.o-bnr__txt_wrap:hover {
  opacity: 1;
}
.o-bnr__txt_wrap:focus-visible::after {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #000000;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border-radius: 2.6666666667vw;
          user-select: none;
}
.o-bnr__txt_box {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.o-bnr__txt_inner {
  color: #ffffff;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0 2.1333333333vw rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.o-bnr__icon_external {
  display: inline-block;
  width: 4vw;
  margin-left: 1.6vw;
}
.o-bnr__icon_external svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
.o-btn__movie {
  display: block;
  position: relative;
  width: 100%;
}
.o-btn__movie:focus-visible {
  box-shadow: none;
}
.o-btn__movie:focus-visible::before {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #000000;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  border-radius: 2.6666666667vw;
          user-select: none;
}
.o-btn__movie_img {
  position: relative;
  aspect-ratio: 400/220;
  overflow: hidden;
  border-radius: 2.6666666667vw;
}
.o-btn__movie_bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-btn__icon_movie_play {
  z-index: 2;
  position: absolute;
  right: 2.6666666667vw;
  bottom: 2.6666666667vw;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.o-hamburger {
  z-index: 1350;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.o-hamburger.is-header_scroll {
  position: fixed;
}
.o-hamburger__box {
  display: flex;
  position: absolute;
  top: 19.6vw;
  right: 3.8666666667vw;
  align-items: center;
  justify-content: center;
  width: 12vw;
  height: 12vw;
  transition: none;
}
.o-hamburger__box.is-active .o-hamburger__box_line {
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
}
.o-hamburger__box.is-active .o-hamburger__box_line:nth-child(2) {
  transform: translate3d(0, -50%, 0) rotate(45deg);
}
.o-hamburger__box.is-active .o-hamburger__box_line:nth-child(3) {
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
}
.o-hamburger__box.is-header_scroll {
  top: 3.3333333333vw;
}
.o-hamburger__box.is-active {
  position: fixed;
  top: 4.2666666667vw;
}
.o-hamburger__box_inner {
  position: relative;
  width: 9.0666666667vw;
  height: 6.4vw;
}
.o-hamburger__box_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.8vw;
  background-color: #ffffff;
  transition: 0.5s;
}
.o-hamburger__box_line:nth-child(2) {
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.o-hamburger__box_line:nth-child(3) {
  top: 100%;
  transform: translate3d(0, -100%, 0);
}

.o-list__bnr_clm3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 84vw;
  margin: 10.6666666667vw auto 0;
  gap: 5.3333333333vw;
}
.o-list__bnr_clm3 > li {
  flex: 0 0 100%;
}
.o-list__link_clm3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 84vw;
  margin: 13.3333333333vw auto 0;
  gap: 4.2666666667vw;
}
.o-list__link_clm3 > li {
  flex: 0 0 100%;
}
.o-list__link_clm3_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17.3333333333vw;
  overflow: hidden;
  border-radius: 2.6666666667vw;
  background-color: #F0F0F0;
  color: #49719D;
}
.o-list__link_clm3_txt {
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.4;
}
.o-list__link_clm3_arrow {
  flex: 0 0 2.1333333333vw;
  margin-left: 2.6666666667vw;
  transform: translate3d(0, 10%, 0);
}

.o-modal__cnt {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  display: flex;
  z-index: 1500;
  align-items: center;
  justify-content: center;
  overflow: hidden auto;
  background-color: rgba(1, 21, 45, 0.7);
  transition: opacity 0.2s;
          user-select: none;
}
.o-modal__cnt.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-user-select: auto;
          user-select: auto;
}
.o-modal__cnt_inner {
  z-index: 5;
  position: relative;
  width: 89.3333333333vw;
  margin: auto;
}
.o-modal__close {
  display: block;
  position: absolute;
  top: -1.3333333333vw;
  right: 0;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  transform: translate3d(0, -100%, 0);
}
.o-modal__close::before, .o-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.4vw;
  height: 0.8vw;
  min-height: 1px;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  border-radius: 9999px;
  background-color: #ffffff;
  content: "";
}
.o-modal__close::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.o-modal__cnt_movie iframe {
  aspect-ratio: 100/56.5;
  width: 100%;
}

.o-swiper--base {
  position: relative;
  margin-top: 13.3333333333vw;
}
.o-swiper__item_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.o-swiper__item_list > li {
  flex: 0 0 100%;
  padding: 0 8vw;
}
.o-swiper__item_btn {
  display: block;
  position: relative;
  aspect-ratio: 400/220;
  width: 100%;
  overflow: hidden;
  border-radius: 2.6666666667vw;
}
.o-swiper__item_btn img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.o-swiper__item_btn:focus-visible::before {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #000000;
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.o-swiper__item_bottom_txt {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 12.2666666667vw;
  padding: 2.6666666667vw 1.3333333333vw;
  background-color: rgba(11, 44, 80, 0.8);
  color: #ffffff;
  font-weight: 500;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
.o-swiper__item_bottom_external {
  flex: 0 0 4vw;
  margin-left: 2.6666666667vw;
}
.o-swiper__btn {
  z-index: 2;
  position: absolute;
  top: 23.0666666667vw !important;
  left: 1.7333333333vw !important;
  width: 10.6666666667vw;
  transform: translate3d(0, -50%, 0);
  filter: drop-shadow(0 0 1.6vw rgba(0, 0, 0, 0.15));
}
.o-swiper__btn svg path {
  transition: 0.5s;
}
.o-swiper__btn--next {
  right: 1.7333333333vw !important;
  left: auto !important;
}
.o-swiper__btn:hover {
  opacity: 1;
}
.o-swiper__item_detail {
  margin-top: 2.6666666667vw;
  font-size: 3.7333333333vw;
  line-height: 1.6;
}
.o-swiper__pagination {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 10.6666666667vw;
  gap: 4vw;
}
.o-swiper__pagination .swiper-pagination-bullet {
  width: 10.6666666667vw !important;
  height: 1.3333333333vw !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background-color: #F0F0F0;
  opacity: 1;
}
.o-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #49719D;
}
.o-swiper__pagination--bg_white .swiper-pagination-bullet {
  background-color: #ffffff;
}
.o-swiper__pagination--bg_white .swiper-pagination-bullet-active {
  background-color: #49719D;
}
[class*=o-ttl] {
  font-weight: 700;
}

.o-ttl__lang_border {
  color: #49719D;
  text-align: center;
}
.o-ttl__lang_border_en {
  display: block;
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.o-ttl__lang_border_en::after {
  display: block;
  width: 10.6666666667vw;
  height: 1.3333333333vw;
  margin: 3.2vw auto;
  background-color: #EB1E1E;
  content: "";
}
.o-ttl__lang_border_en--c_white {
  color: #ffffff;
}
.o-ttl__lang_border_jp {
  display: block;
  font-weight: 700;
  font-size: 7.4666666667vw;
  line-height: 1.4642857143;
}
.o-ttl__lang_border_jp--c_white {
  color: #ffffff;
}
.o-ttl__lang_border_jp--safety {
  color: #ffffff;
  font-size: 6.9333333333vw;
}
.o-ttl__sub {
  font-weight: 700;
  font-size: 6.4vw;
  line-height: 1.4583333333;
  text-align: center;
}
.o-ttl__sub--c_white {
  color: #ffffff;
}
.o-ttl__sub--c_blue {
  color: #49719D;
}
.o-txt__lang_border {
  max-width: 89.3333333333vw;
  margin: 13.3333333333vw auto 0;
  font-size: 3.7333333333vw;
}
.o-txt__lang_border--c_white {
  color: #ffffff;
}
.o-txt__care {
  margin: 0 auto;
  font-size: 3.7333333333vw;
  line-height: 1.6;
}
.o-txt__care--c_white {
  color: #ffffff;
}
.p-index-j__kv {
  display: block;
  position: relative;
}
.p-index-j__kv:focus-visible::before {
  content: "";
  pointer-events: none;
  -webkit-user-select: none;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 3px #000000;
          user-select: none;
}
.p-index-j__pickup {
  padding: 10.6666666667vw 0 16vw;
}
.p-index-j__info {
  padding: 16vw 0 0;
  background-color: #F0F0F0;
}
.p-index-j__step {
  padding: 16vw 0;
  background-color: #F0F0F0;
}
.p-index-j__step_flow {
  max-width: 91.6vw;
  margin: 13.3333333333vw auto 0;
}
.p-index-j__safety {
  background-color: #F0F0F0;
}
.p-index-j__safety_inner {
  max-width: 94.6666666667vw;
  margin: 0 auto;
  padding: 16vw 5.3333333333vw;
  overflow: hidden;
  border-radius: 2.6666666667vw;
  background-color: #49719D;
}
.p-index-j__safety_bnr_counterplan {
  max-width: 84vw;
  margin: 13.3333333333vw auto 0;
}
.p-index-j__safety_movie_ttl {
  margin-top: 16vw;
}
.p-index-j__safety_movie_counterplan {
  max-width: 84vw;
  margin: 10.6666666667vw auto 0;
}
.p-index-j__safety_movie_counterplan_bottom {
  margin-top: 2.6666666667vw;
}
.p-index-j__find_out_more {
  padding: 16vw 0 0;
  background-color: #F0F0F0;
}
.p-index-j__movie_collection {
  padding: 16vw 0;
  background-color: #F0F0F0;
}
.p-index-j__link_collection {
  padding: 16vw 0;
  background-color: #49719D;
}
@media (min-width: 376px){
  .visible_to_xs {
    display: none !important;
  }
}
@media (min-width: 751px){
  .visible_to_s {
    display: none !important;
  }
  .visible_s {
    display: block !important;
  }
}
@media (min-width: 768px){
  body {
    font-size: clamp(12px, 1.1805555556vw, 17px);
  }
  a:hover, a:active, button:hover, button:active {
    opacity: 0.7;
  }
  .innerbox {
    max-width: min(1440px, 112.5vw);
    margin: 0 auto;
    padding: 0;
  }
  .visible_to_m {
    display: none !important;
  }
  .visible_m {
    display: block !important;
  }
  .l-footer__wrap {
    padding: min(20px, 1.3888888889vw) 0 min(12px, 0.8333333333vw);
  }
  .l-footer__logo {
    display: none;
  }
  .l-footer__item_list {
    max-width: none;
    margin: 0 auto;
    gap: min(8px, 0.5555555556vw) 0;
  }
  .l-footer__item_list > li {
    padding: 0 min(12px, 0.8333333333vw);
    border-left: 1px solid #000000;
  }
  .l-footer__item_list > li > a {
    font-size: 12px;
  }
  .l-footer__item_list > li:nth-child(1) {
    border-right: none;
    border-left: none;
  }
  .l-footer__copyright {
    margin-top: min(16px, 1.1111111111vw);
  }
  .l-header__wrap {
    max-width: min(1440px, 100vw);
    height: min(100px, 6.9444444444vw);
    margin: 0 auto;
  }
  .l-header__logo {
    flex: 0 0 min(162px, 11.25vw);
    margin-left: min(20px, 1.3888888889vw);
  }
  .l-header__right {
    flex: 0 0 min(400px, 27.7777777778vw);
  }
  .l-header__sns_list {
    margin-right: min(33px, 2.2916666667vw);
    gap: min(27px, 1.875vw);
  }
  .l-header__sns_list > li {
    flex: 0 0 min(33px, 2.2916666667vw);
  }
  .l-header__niigata_link {
    flex: 0 0 min(248px, 17.2222222222vw);
    height: min(100px, 6.9444444444vw);
    font-size: clamp(12px, 1.3888888889vw, 20px);
    line-height: 1.5;
  }
  .l-header__niigata_link:hover {
    text-decoration: none;
  }
  .l-header__bottom {
    height: 0;
    -webkit-user-select: none;
    pointer-events: none;
            user-select: none;
  }
  .l-header__bottom.is-active, .l-header__bottom.is-header_scroll {
    position: relative;
  }
  .l-header__bottom__ttl {
    position: absolute;
    top: min(15px, 1.0416666667vw);
    left: 50%;
    width: 100%;
    max-width: min(1200px, 83.3333333333vw);
    margin: 0 auto;
    padding: 0;
    transform: translate3d(-50%, 0, 0);
    font-size: clamp(12px, 1.3888888889vw, 20px);
    line-height: 1.5;
  }
  .l-main.is-header_scroll {
    padding-top: 0;
  }
  .l-nav {
    position: relative;
    padding: 0;
    -webkit-user-select: auto;
    opacity: 1;
    pointer-events: auto;
            user-select: auto;
  }
  .l-nav__item_list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: min(1060px, 73.6111111111vw);
    min-height: min(90px, 6.25vw);
    margin: 0 auto;
    padding-left: min(160px, 11.1111111111vw);
    gap: min(50px, 3.4722222222vw);
  }
  .l-nav__item_list > li {
    padding: 0;
  }
  .l-nav__item_list > li + li {
    border-top: none;
  }
  .l-nav__item_link {
    align-items: flex-end;
    padding: min(5px, 0.3472222222vw) 0;
    gap: min(10px, 0.6944444444vw);
  }
  .l-nav__item_link_txt {
    padding-left: 0;
    font-size: clamp(12px, 1.1111111111vw, 16px);
  }
  .l-nav__item_link_txt::before {
    content: none;
  }
  .l-nav__item_icon_external {
    flex: 0 0 min(10px, 0.6944444444vw);
  }
  .o-bnr__txt_wrap {
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-bnr__txt_wrap--safety_bnr {
    aspect-ratio: 780/220;
  }
  .o-bnr__txt_wrap:hover img {
    transform: scale(1.2);
  }
  .o-bnr__txt_wrap:focus-visible::after {
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-bnr__txt_inner {
    font-size: clamp(12px, 1.6666666667vw, 24px);
    line-height: 1.375;
    text-shadow: 0 0 min(8px, 0.5555555556vw) rgba(0, 0, 0, 0.45);
  }
  .o-bnr__icon_external {
    width: min(15px, 1.0416666667vw);
    margin-left: min(10px, 0.6944444444vw);
  }
  .o-btn__movie:focus-visible::before {
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-btn__movie_img {
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-btn__icon_movie_play {
    right: min(12px, 0.8333333333vw);
    bottom: min(12px, 0.8333333333vw);
    width: min(40px, 2.7777777778vw);
    height: min(40px, 2.7777777778vw);
  }
  .o-btn__icon_movie_play--w780 {
    right: min(20.24px, 1.4055555556vw);
    bottom: min(20.24px, 1.4055555556vw);
    width: min(71.76px, 4.9833333333vw);
    height: min(71.76px, 4.9833333333vw);
  }
  .o-hamburger {
    display: none;
  }
  .o-list__bnr_clm3 {
    max-width: min(1280px, 88.8888888889vw);
    margin-top: min(40px, 2.7777777778vw);
    gap: min(40px, 2.7777777778vw);
  }
  .o-list__bnr_clm3 > li {
    flex: 0 0 min(400px, 27.7777777778vw);
  }
  .o-list__link_clm3 {
    max-width: min(1100px, 76.3888888889vw);
    margin-top: min(60px, 4.1666666667vw);
    gap: min(16px, 1.1111111111vw);
  }
  .o-list__link_clm3 > li {
    flex: 0 0 min(356px, 24.7222222222vw);
  }
  .o-list__link_clm3_btn {
    min-height: min(65px, 4.5138888889vw);
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-list__link_clm3_btn:hover {
    color: #EB1E1E;
    opacity: 1;
  }
  .o-list__link_clm3_btn:hover .o-list__link_clm3_arrow svg path {
    stroke: #EB1E1E;
  }
  .o-list__link_clm3_txt {
    font-size: clamp(12px, 1.25vw, 18px);
  }
  .o-list__link_clm3_arrow {
    flex: 0 0 min(8px, 0.5555555556vw);
    margin-left: min(10px, 0.6944444444vw);
  }
  .o-modal__cnt_inner {
    width: min(780px, 54.1666666667vw);
  }
  .o-modal__close {
    top: max(-5px, -0.3472222222vw);
    width: min(25px, 1.7361111111vw);
    height: min(25px, 1.7361111111vw);
  }
  .o-modal__close::before, .o-modal__close::after {
    width: min(24px, 1.6666666667vw);
    height: min(3px, 0.2083333333vw);
  }
  .o-swiper--base {
    max-width: min(1320px, 91.6666666667vw);
    margin: min(60px, 4.1666666667vw) auto 0;
  }
  .o-swiper__item {
    max-width: min(1320px, 91.6666666667vw);
    margin: 0 auto;
  }
  .o-swiper__item_list > li {
    flex: 0 0 min(440px, 30.5555555556vw);
    padding: 0 min(20px, 1.3888888889vw);
  }
  .o-swiper__item_btn {
    border-radius: min(10px, 0.6944444444vw);
  }
  .o-swiper__item_btn:hover img {
    transform: scale(1.2);
  }
  .o-swiper__item_bottom_txt {
    min-height: min(56px, 3.8888888889vw);
    padding: min(10px, 0.6944444444vw) min(5px, 0.3472222222vw);
    font-size: clamp(12px, 1.25vw, 18px);
  }
  .o-swiper__item_bottom_external {
    flex: 0 0 min(15px, 1.0416666667vw);
    margin-left: min(10px, 0.6944444444vw);
  }
  .o-swiper__btn {
    top: min(110px, 7.6388888889vw) !important;
    left: min(20px, 1.3888888889vw) !important;
    width: min(62.2px, 4.3194444444vw);
    transform: translate3d(-50%, -50%, 0);
    filter: drop-shadow(0 0 min(11px, 0.7638888889vw) rgba(0, 0, 0, 0.15));
  }
  .o-swiper__btn--next {
    right: min(20px, 1.3888888889vw) !important;
    left: auto !important;
    transform: translate3d(50%, -50%, 0);
  }
  .o-swiper__btn:hover svg path {
    stroke: #EB1E1E;
  }
  .o-swiper__item_detail {
    margin-top: min(20px, 1.3888888889vw);
    font-size: clamp(12px, 1.1111111111vw, 16px);
  }
  .o-swiper__pagination {
    margin-top: min(60px, 4.1666666667vw);
    gap: min(20px, 1.3888888889vw);
  }
  .o-swiper__pagination .swiper-pagination-bullet {
    width: min(50px, 3.4722222222vw) !important;
    height: min(6px, 0.4166666667vw) !important;
  }
  .o-ttl__lang_border_en {
    font-size: clamp(12px, 1.4583333333vw, 21px);
  }
  .o-ttl__lang_border_en::after {
    width: min(40px, 2.7777777778vw);
    height: min(5px, 0.3472222222vw);
    margin: min(16px, 1.1111111111vw) auto;
  }
  .o-ttl__lang_border_jp {
    font-size: clamp(12px, 2.2222222222vw, 32px);
    line-height: 1.4375;
  }
  .o-ttl__lang_border_jp--safety {
    font-size: clamp(12px, 2.2222222222vw, 32px);
  }
  .o-ttl__sub {
    font-size: clamp(12px, 1.6666666667vw, 24px);
  }
  .o-txt__lang_border {
    max-width: min(1280px, 88.8888888889vw);
    margin: min(50px, 3.4722222222vw) auto 0;
    font-size: clamp(12px, 1.1805555556vw, 17px);
    text-align: center;
  }
  .o-txt__care {
    font-size: clamp(12px, 1.1111111111vw, 16px);
  }
  .o-txt__care--w780 {
    max-width: min(780px, 54.1666666667vw);
  }
  .p-index-j__kv {
    max-width: min(1440px, 100vw);
    margin: 0 auto;
  }
  .p-index-j__pickup {
    padding: min(60px, 4.1666666667vw) 0;
  }
  .p-index-j__info {
    padding: min(100px, 6.9444444444vw) 0 0;
  }
  .p-index-j__step {
    padding: min(100px, 6.9444444444vw) 0;
  }
  .p-index-j__step_flow {
    max-width: min(1007px, 69.9305555556vw);
    margin: min(50px, 3.4722222222vw) auto 0;
  }
  .p-index-j__safety_inner {
    max-width: min(1280px, 88.8888888889vw);
    padding: min(60px, 4.1666666667vw) min(90px, 6.25vw);
    border-radius: min(10px, 0.6944444444vw);
  }
  .p-index-j__safety_bnr_counterplan {
    max-width: min(780px, 54.1666666667vw);
    margin-top: min(50px, 3.4722222222vw);
  }
  .p-index-j__safety_movie_ttl {
    margin-top: min(80px, 5.5555555556vw);
  }
  .p-index-j__safety_movie_counterplan {
    max-width: min(780px, 54.1666666667vw);
    margin: min(50px, 3.4722222222vw) auto 0;
  }
  .p-index-j__safety_movie_counterplan_bottom {
    margin-top: min(20px, 1.3888888889vw);
  }
  .p-index-j__find_out_more {
    padding: min(100px, 6.9444444444vw) 0 0;
  }
  .p-index-j__movie_collection {
    padding: min(100px, 6.9444444444vw) 0 min(60px, 4.1666666667vw);
  }
  .p-index-j__link_collection {
    padding: min(60px, 4.1666666667vw) 0;
  }
}
@media (min-width: 1025px){
  .visible_to_l {
    display: none !important;
  }
  .visible_l {
    display: block !important;
  }
}
@media (min-width: 1280px){
  .visible_to_xl {
    display: none !important;
  }
  .visible_xl {
    display: block !important;
  }
}
@media (min-width: 1441px){
  .visible_to_xxl {
    display: none !important;
  }
  .visible_xxl {
    display: block !important;
  }
}
@media (min-width: 1601px){
  .visible_to_xxxl {
    display: none !important;
  }
  .visible_xxxl {
    display: block !important;
  }
}