@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

/**
 * 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 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  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 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

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

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

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

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

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

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

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

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

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

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5019607843)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5019607843)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5019607843)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5019607843)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
    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);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

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

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

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

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  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 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--swiper-navigation-size);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.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 {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-next, .swiper-button-prev {
  margin-top: -webkit-calc(0px - var(--swiper-navigation-size) / 2);
  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-navigation-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

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

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

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
  &.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 {
  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-bullet {
    position: relative;
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    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& {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .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 {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  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%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      -webkit-transition: top 0.2s, -webkit-transform 0.2s;
      transition: top 0.2s, -webkit-transform 0.2s;
      transition: transform 0.2s, top 0.2s;
      transition: transform 0.2s, top 0.2s, -webkit-transform 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%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      -webkit-transition: left 0.2s, -webkit-transform 0.2s;
      transition: left 0.2s, -webkit-transform 0.2s;
      transition: transform 0.2s, left 0.2s;
      transition: transform 0.2s, left 0.2s, -webkit-transform 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: right 0.2s, -webkit-transform 0.2s;
  transition: right 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, right 0.2s;
  transition: transform 0.2s, right 0.2s, -webkit-transform 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-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    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;
  -ms-touch-action: none;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    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: -webkit-calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: -webkit-calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    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 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  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;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

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

.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    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 {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      -webkit-filter: blur(50px);
      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-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0;
  }
}

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

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

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

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

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

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

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-primary: #0065b1;
  --color-primary-lgt: #0088cd;
  --color-sky-blue: #d2ecfa;
  --color-gray-lgt: #EEEAE5;
  --color-text: #231815;
  --color-red: #e50012;
}

html {
  font-size: 10px;
}

body {
  background-color: var(--color-gray-lgt);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2;
}
body.of-hidden {
  overflow: hidden;
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1130px;
  }
}

.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.header {
  background-color: var(--color-primary);
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 12px;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo img {
  height: 50px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 767px) {
  .header__logo img {
    height: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .header__logo:hover img {
    opacity: 0.7;
  }
}

.footer {
  padding: 35px 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__desc {
  font-size: 3rem;
  line-height: 1.6666666667;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .footer__desc {
    font-size: 2rem;
  }
}
.footer__desc a {
  color: inherit;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  display: inline-block;
}
.footer__desc a:not(:last-child) {
  margin-right: 63px;
}
@media only screen and (max-width: 575px) {
  .footer__desc a:not(:last-child) {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__desc a {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer__desc a:hover {
    color: var(--color-primary);
  }
}

.section-top {
  background-color: var(--color-white);
  padding-block: 40px 52px;
}
@media only screen and (max-width: 767px) {
  .section-top {
    padding-block: 18px 27px;
  }
}
.section-top__heading {
  font-size: 9.6rem;
  line-height: 1.5104166667;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .section-top__heading {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 991px) {
  .section-top__heading {
    font-size: 5.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-top__heading {
    font-size: 4.7rem;
    line-height: 1.170212766;
  }
}

.cover {
  padding-block: 55px 54px;
}
@media only screen and (max-width: 767px) {
  .cover {
    padding-bottom: 34px;
  }
}
.cover__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cover__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cover__heading {
  font-size: 5rem;
  line-height: 1.4;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .cover__heading {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .cover__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .cover__heading {
    font-size: 2.7rem;
    text-align: center;
    line-height: 1.1851851852;
  }
}
.cover__heading .hide-mobile {
  display: block;
}
@media only screen and (max-width: 992px) {
  .cover__heading .hide-mobile {
    display: none;
  }
}
.cover__img {
  margin-top: -106px;
  width: 100%;
}
.cover__img picture {
  margin-right: -25px;
  max-width: -webkit-calc(100% + 25px);
  max-width: calc(100% + 25px);
}
@media only screen and (max-width: 767px) {
  .cover__img picture {
    max-width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cover__img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cover__img {
    max-width: 390px;
    width: 100%;
    margin: -68px auto 0;
  }
}
.cover__img img {
  width: 100%;
}
.cover__text {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  padding-right: 54px;
}
@media only screen and (max-width: 991px) {
  .cover__text {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    padding-right: 0;
    margin-inline: auto;
  }
}
.cover__logo-text {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 12.3rem;
  position: absolute;
  bottom: -18px;
  line-height: 1.1138211382;
}
@media only screen and (max-width: 1199px) {
  .cover__logo-text {
    font-size: 11rem;
  }
}
@media only screen and (max-width: 991px) {
  .cover__logo-text {
    font-size: 6.2rem;
    line-height: 1.1129032258;
    position: static;
    text-align: center;
  }
}

.download {
  background-color: var(--color-white);
  padding-block: 35px;
}
@media only screen and (max-width: 767px) {
  .download {
    padding-block: 17px;
  }
}
.download__btns-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 38px;
}
@media only screen and (max-width: 767px) {
  .download__btns-group {
    gap: 19px;
  }
}
.download__btn {
  border-radius: 14px;
  opacity: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .download__btn img {
    max-width: 118px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .download__btn:hover {
    opacity: 0.8;
  }
}

.contact-reservation {
  padding-block: 33px;
}
.contact-reservation__wrapper {
  background-color: var(--color-white);
  padding: 10px 22px;
  border-radius: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__wrapper {
    border-radius: 11px;
    padding: 20px 50px;
  }
}
.contact-reservation__shape {
  width: 247px;
  height: 126px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.0555555556;
  letter-spacing: -0.025em;
  color: var(--color-white);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 247.41 125.3'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %2321ade4; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-miterlimit: 10; stroke-width: 1.76px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M0,61.25C-.42,26.66,54.63-.76,122.95.02c68.32.77,124.04,29.44,124.46,64.04.42,34.59-54.63,62.01-122.95,61.24C56.14,124.51.42,95.84,0,61.25Z'/%3E%3Cpath class='cls-2' d='M86.83,117.01C39.04,108.59,5.46,85.68,5.16,61.31c-.18-14.87,11.55-28.95,33.04-39.65C60.69,10.46,90.81,4.49,123.01,4.86c12.84.14,25.48,1.3,37.58,3.43,47.79,8.43,81.37,31.33,81.66,55.7.18,14.87-11.55,28.95-33.04,39.65-22.49,11.2-52.6,17.17-84.81,16.8-12.84-.14-25.48-1.3-37.58-3.43Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
}
.contact-reservation__shape span {
  font-size: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__shape span {
    display: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__shape {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .contact-reservation__shape {
    width: 197px;
    height: 86px;
    font-size: 2rem;
  }
}
.contact-reservation__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.contact-reservation__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 14px;
  }
}
.contact-reservation__title {
  font-size: 3.6rem;
  letter-spacing: -0.025em;
  font-weight: 800;
}
@media only screen and (max-width: 1199px) {
  .contact-reservation__title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  .contact-reservation__title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__title {
    font-size: 1.8rem;
    line-height: 1.02;
  }
}
.contact-reservation__phone-no {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-red);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media only screen and (min-width: 1200px) {
  .contact-reservation__phone-no:hover {
    border-color: var(--color-red);
  }
}
@media only screen and (max-width: 1199px) {
  .contact-reservation__phone-no {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__phone-no {
    font-size: 2.6rem;
  }
}
.contact-reservation__opening {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__opening {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__opening-info {
    margin-bottom: 4px;
  }
}
.contact-reservation__opening-hr {
  font-size: 2.7rem;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.025em;
  line-height: 1;
  gap: 10px;
}
@media only screen and (max-width: 1199px) {
  .contact-reservation__opening-hr {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .contact-reservation__opening-hr {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__opening-hr {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 0;
  }
}
.contact-reservation__opening-hr span:not(.hour) {
  margin-top: 3px;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__opening-hr span:not(.hour) {
    margin-top: 0;
  }
}
.contact-reservation__opening-hr .hour {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
}
@media only screen and (max-width: 1199px) {
  .contact-reservation__opening-hr .hour {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  .contact-reservation__opening-hr .hour {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-reservation__opening-hr .hour {
    font-size: 2rem;
  }
}
.contact-reservation__note {
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  margin-top: 2px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__note {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.contact-reservation__holiday {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .contact-reservation__holiday {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 10PX;
  }
}
.contact-reservation__holiday-title {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  line-height: 1.2222222222;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__holiday-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.contact-reservation__holiday-text {
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1.1428571429;
}
@media only screen and (max-width: 767px) {
  .contact-reservation__holiday-text {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.contact,
.contact-form {
  background: #D2ECFA;
  padding: 68px 0 60px;
}
@media only screen and (max-width: 767px) {
  .contact,
  .contact-form {
    padding: 34px 0 30px;
  }
}
.contact .form-title,
.contact-form .form-title {
  font-size: 4.4rem;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.2272727273;
  font-weight: 700;
  color: #231815;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .contact .form-title,
  .contact-form .form-title {
    font-size: 2.2rem;
    margin-bottom: 17px;
    margin-top: 0;
  }
}
.contact .form-group,
.contact-form .form-group {
  margin-bottom: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .contact .form-group,
  .contact-form .form-group {
    margin-bottom: 22px;
  }
}
.contact label,
.contact .label,
.contact-form label,
.contact-form .label {
  font-family: "M PLUS 1p", sans-serif;
  margin-bottom: 6px;
  color: #231815;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .contact label,
  .contact .label,
  .contact-form label,
  .contact-form .label {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contact label,
  .contact .label,
  .contact-form label,
  .contact-form .label {
    font-size: 15px;
  }
}
.contact .required,
.contact-form .required {
  background: #d40000;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.8;
  margin-left: 14px;
  width: 74px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .contact .required,
  .contact-form .required {
    font-size: 12px;
    width: 37px;
    height: 17px;
    margin-left: 7px;
  }
}
.contact input,
.contact select,
.contact textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  color: #231815;
  border: none;
  border-radius: 20px;
  padding: 13px 20px;
  font-size: 40px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.35;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  resize: none;
}
.contact input::-webkit-input-placeholder, .contact select::-webkit-input-placeholder, .contact textarea::-webkit-input-placeholder, .contact-form input::-webkit-input-placeholder, .contact-form select::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder {
  color: #DCDDDD;
}
.contact input::-moz-placeholder, .contact select::-moz-placeholder, .contact textarea::-moz-placeholder, .contact-form input::-moz-placeholder, .contact-form select::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #DCDDDD;
}
.contact input:-ms-input-placeholder, .contact select:-ms-input-placeholder, .contact textarea:-ms-input-placeholder, .contact-form input:-ms-input-placeholder, .contact-form select:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
  color: #DCDDDD;
}
.contact input::-ms-input-placeholder, .contact select::-ms-input-placeholder, .contact textarea::-ms-input-placeholder, .contact-form input::-ms-input-placeholder, .contact-form select::-ms-input-placeholder, .contact-form textarea::-ms-input-placeholder {
  color: #DCDDDD;
}
.contact input::placeholder,
.contact select::placeholder,
.contact textarea::placeholder,
.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #DCDDDD;
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4ea3d8;
  -webkit-box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
  box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
}
@media only screen and (max-width: 991px) {
  .contact input,
  .contact select,
  .contact textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact input,
  .contact select,
  .contact textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    border-radius: 10px;
  }
}
.contact textarea,
.contact-form textarea {
  height: 570px;
}
@media only screen and (max-width: 767px) {
  .contact textarea,
  .contact-form textarea {
    height: 255px;
  }
}
.contact select,
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.87 31.07'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23231815; %7D %3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1' data-name='レイヤー 1'%3E%3Cpolygon class='cls-1' points='17.94 31.07 35.87 0 0 0 17.94 31.07'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 35px;
  cursor: pointer;
  font-family: "M PLUS 1p", sans-serif;
}
@media only screen and (max-width: 767px) {
  .contact select,
  .contact-form select {
    background-size: 15px;
  }
}
.contact select:focus,
.contact-form select:focus {
  border-color: #4ea3d8;
  -webkit-box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
  box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
  outline: none;
}
.contact select::-ms-expand,
.contact-form select::-ms-expand {
  display: none;
}
.contact .btn-submit,
.contact-form .btn-submit {
  width: 100%;
  background: #1DADE5;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 13px 5px;
  font-size: 38px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.4210526316;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-width: 390px;
  margin: 0 auto;
  display: block;
  -webkit-box-shadow: 5px 5px 0px 0px rgb(255, 255, 255);
  box-shadow: 5px 5px 0px 0px rgb(255, 255, 255);
  margin-top: 52px;
}
.contact .btn-submit.correct,
.contact-form .btn-submit.correct {
  background-color: #d40000;
}
@media only screen and (max-width: 767px) {
  .contact .btn-submit,
  .contact-form .btn-submit {
    font-size: 20px;
    max-width: 180px;
    -webkit-box-shadow: 3px 3px 0px 0px rgb(255, 255, 255);
    box-shadow: 3px 3px 0px 0px rgb(255, 255, 255);
    margin-top: 0;
  }
}
.contact .btn-submit:active, .contact .btn-submit:focus-visible,
.contact-form .btn-submit:active,
.contact-form .btn-submit:focus-visible {
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.7;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
  outline: none;
}
@media only screen and (min-width: 768px) {
  .contact .btn-submit:hover,
  .contact-form .btn-submit:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.7;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
  }
}
.contact .form-btn,
.contact-form .form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .contact .form-btn,
  .contact-form .form-btn {
    margin-top: 45px;
  }
}

.conformation-page .inquiry-form__title {
  font-size: 30px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.5;
  margin: 25px 0 45px;
}
@media only screen and (max-width: 767px) {
  .conformation-page .inquiry-form__title {
    font-size: 20px;
  }
}
.conformation-page .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 45px;
}
@media only screen and (max-width: 767px) {
  .conformation-page .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
}
@media only screen and (min-width: 768px) {
  .conformation-page .form-group .label {
    min-width: 285px;
    font-family: "M PLUS 1p", sans-serif;
    margin-bottom: 0;
  }
}
.conformation-page .form-text {
  background: #fff;
  color: #231815;
  border: none;
  border-radius: 20px;
  padding: 13px 20px;
  font-size: 40px;
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.35;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  resize: none;
  min-height: 80px;
}
.conformation-page .form-text::-webkit-input-placeholder {
  color: #DCDDDD;
}
.conformation-page .form-text::-moz-placeholder {
  color: #DCDDDD;
}
.conformation-page .form-text:-ms-input-placeholder {
  color: #DCDDDD;
}
.conformation-page .form-text::-ms-input-placeholder {
  color: #DCDDDD;
}
.conformation-page .form-text::placeholder {
  color: #DCDDDD;
}
.conformation-page .form-text:focus {
  outline: none;
  border-color: #4ea3d8;
  -webkit-box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
  box-shadow: 0 0 0 3px rgba(78, 163, 216, 0.2);
}
@media only screen and (max-width: 991px) {
  .conformation-page .form-text {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .conformation-page .form-text {
    font-size: 16px;
    min-height: 47px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .conformation-page .form-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.send-page .form-title {
  text-align: center;
  margin-top: 0;
}
.send-page .lead {
  font-size: 30px;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.5;
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .send-page .lead {
    font-size: 20px;
  }
}
.send-page .contact-form {
  height: -webkit-calc(100vh - 210px);
  height: calc(100vh - 210px);
}
@media only screen and (max-width: 767px) {
  .send-page .contact-form {
    height: -webkit-calc(100vh - 155px);
    height: calc(100vh - 155px);
  }
}

.heading__primary {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 4.4rem;
  line-height: 1.2272727273;
  color: #231815;
  font-weight: 900;
  padding-left: 62px;
}
@media only screen and (max-width: 1199px) {
  .heading__primary {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .heading__primary {
    font-size: 3.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading__primary {
    font-size: 1.8rem;
    padding-left: 20px;
  }
}

.steps {
  background-color: #eeeae5;
  padding: 45px 0;
}
@media only screen and (max-width: 767px) {
  .steps {
    padding: 24px 0 22px 0;
  }
}

.step {
  background-color: #ffffff;
  padding: 30px 54px 30px;
  border-radius: 28px;
  margin-top: 37px;
}
@media only screen and (max-width: 1199px) {
  .step {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 991px) {
  .step {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .step {
    padding: 30px 20px 15px;
    border-radius: 10px;
    margin-top: 22px;
  }
  .step:first-child {
    padding: 30px 20px;
  }
}
.step:first-child::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .step:first-child::after {
    display: block;
  }
}
.step:not(:first-child) {
  margin-top: 67px;
}
@media only screen and (max-width: 767px) {
  .step:not(:first-child) {
    margin-top: 35px;
  }
}
.step:not(:last-child) {
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  background-image: url(../img/steps/img-arrow-down.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 305px;
  height: 54px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .step:not(:last-child)::after {
    width: 95px;
    height: 17px;
  }
}
.step:nth-of-type(4)::after {
  content: none;
}
.step-3 {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .step-3 {
    padding-bottom: 10px;
  }
}
.step-3--extended {
  padding-bottom: 9px;
  padding-inline: 28px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
@media only screen and (max-width: 767px) {
  .step-3--extended {
    padding-inline: 14px;
    padding-bottom: 42px;
  }
}
.step-3--extended .step-three__row {
  margin-top: 0;
}
.step-3--extended .step-three__row .step-three__desc {
  display: none;
}
@media only screen and (max-width: 767px) {
  .step-3--extended .step-three__row .step-three__desc {
    display: block;
  }
}
.step-3--extended .step-three__row .step-three__desc {
  padding-inline: 0;
}
.step__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 57px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .step__row {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .step__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 193px;
    margin-inline: auto;
  }
}
.step__left {
  width: 100%;
  max-width: 334px;
}
@media only screen and (max-width: 1199px) {
  .step__left {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .step__left {
    max-width: 100%;
    text-align: center;
  }
  .step__left img {
    max-width: 193px;
  }
}
.step__right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-block: 20px 20px;
}
@media only screen and (max-width: 767px) {
  .step__right {
    padding-block: 4px 0;
  }
}
.step__right-content {
  background-color: #1dade5;
  padding: 10px 15px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 15px;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .step__right-content {
    background-color: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    position: static;
    border-radius: unset;
  }
}
@media only screen and (max-width: 1199px) {
  .step__right {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .step__right {
    max-width: 100%;
  }
}
.step__right-num {
  font-size: 5.2rem;
  font-weight: 900;
  border: 2px solid #fff;
  background-color: #0065b1;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media only screen and (max-width: 1199px) {
  .step__right-num {
    font-size: 4.2rem;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .step__right-num {
    font-size: 27.5px;
    left: -7px;
    top: -6px;
  }
}
@media only screen and (max-width: 575px) {
  .step__right-num {
    width: 34px;
    height: 34px;
  }
}
.step__right-text {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6666666667;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .step__right-text {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  .step__right-text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .step__right-text {
    font-size: 1.6rem;
    color: #231815;
    text-align: center;
    margin-inline: -20px;
    line-height: 1.4;
  }
}
.step__right-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .step__right-icon {
    max-width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .step__right-icon {
    display: none;
  }
}
.step__heading {
  padding-bottom: 3px;
  border-bottom: 1px solid #231815;
  color: #1dade5;
  margin-top: -80px;
}
@media only screen and (max-width: 1199px) {
  .step__heading {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 991px) {
  .step__heading {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .step__heading {
    margin-top: -46px;
    padding-bottom: 5px;
  }
}
.step__heading-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.step__heading-num {
  font-size: 12.8rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  margin-right: 25px;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
@media only screen and (max-width: 1199px) {
  .step__heading-num {
    font-size: 10rem;
  }
}
@media only screen and (max-width: 991px) {
  .step__heading-num {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .step__heading-num {
    font-size: 5rem;
    margin-right: 10px;
  }
}
.step__heading-text {
  font-size: 4.8rem;
  font-weight: 900;
}
@media only screen and (max-width: 1199px) {
  .step__heading-text {
    font-size: 3.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .step__heading-text {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .step__heading-text {
    font-size: 1.8rem;
  }
}
.step .one__wraning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-left: 25px;
  padding-block: 6px;
  background-color: #eeeeef;
  border: 1px solid #231815;
  max-width: 563px;
  margin: 0 auto 25px;
}
@media only screen and (max-width: 767px) {
  .step .one__wraning {
    padding-block: 1px;
    padding-left: 9px;
    gap: 5px;
    margin: 0 auto 15px;
  }
}
.step .one__wraning-left {
  display: block;
}
@media only screen and (max-width: 767px) {
  .step .one__wraning-left img {
    max-width: 17.5px;
  }
}
.step .one__wraning-left p {
  font-size: 0.9rem;
  color: #e50012;
}
@media only screen and (max-width: 767px) {
  .step .one__wraning-left p {
    font-size: 0.4rem;
  }
}
.step .one__wraning-right-desc {
  text-align: center;
  text-align: start;
}
.step .one__wraning-right-desc span {
  color: #231815;
  display: block;
}
.step .one__wraning-right-desc span:first-child {
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .step .one__wraning-right-desc span:first-child {
    font-size: 0.65rem;
  }
}
.step .one__wraning-right-desc span:last-child {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .step .one__wraning-right-desc span:last-child {
    font-size: 0.8rem;
  }
}
.step .one__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 67px;
  margin-bottom: 15px;
  position: relative;
  padding-inline: 14px;
  margin-top: 28px;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-inline: 0;
    margin-bottom: 0;
    gap: 23px;
    margin-top: 23px;
  }
}
.step .one__bottom-left, .step .one__bottom-right {
  width: -webkit-calc(50% - 32.5px);
  width: calc(50% - 32.5px);
}
@media only screen and (max-width: 991px) {
  .step .one__bottom-left, .step .one__bottom-right {
    width: 100%;
    position: relative;
  }
}
.step .one__bottom .bottom-title {
  font-size: 3.9rem;
  color: #7d7d7d;
  letter-spacing: -1px;
  text-align: center;
  border-bottom: 0.5px solid #231815;
  padding-bottom: 10px;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .step .one__bottom .bottom-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .step .one__bottom .bottom-title {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .step .one__bottom .bottom-title {
    font-size: 1.5rem;
    padding-bottom: 3px;
    letter-spacing: unset;
  }
}
.step .one__bottom-left .one__bottom-inner:first-child .one__bottom-inner-num {
  margin-top: -32px;
}
.step .one__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 10px;
  position: relative;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-inner {
    padding-top: 8px;
    padding-inline: 4px;
  }
}
.step .one__bottom-inner-num {
  width: 60px;
  height: 60px;
  border: 1px solid #5f5f5f;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 5rem;
  line-height: 69px;
  color: #5f5f5f;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-inner-num {
    width: 29px;
    height: 29px;
    font-size: 2rem;
    line-height: 1.5;
    margin-right: 15px;
  }
}
.step .one__bottom-inner-top {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #231815;
  margin-bottom: 7px;
}
.step .one__bottom-inner-bottom {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #231815;
}
.step .one__bottom-inner-img {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.step .one__bottom-inner-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.step .one__bottom-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eeeeef;
  border: 0.4px solid #231815;
  padding: 6px 10px;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-middle {
    position: absolute;
    top: 86px;
  }
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-middle-left img {
    max-width: 17.5px;
  }
}
.step .one__bottom-middle-left-p {
  font-size: 0.9rem;
  color: #e50012;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-middle-left-p {
    font-size: 0.4rem;
  }
}
.step .one__bottom-middle-right-top, .step .one__bottom-middle-right-bottom {
  color: #231815;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-middle-right-top, .step .one__bottom-middle-right-bottom {
    font-size: 0.65rem;
  }
}
.step .one__bottom-middle-right-bottom {
  letter-spacing: -1px;
}
.step .one__bottom-middle-right-bottom-span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .step .one__bottom-middle-right-bottom-span {
    font-size: 0.8rem;
  }
}
.step .one__bottom-right .bottom-title {
  color: #00af95;
}
.step .one__bottom-right .one__bottom-inner-num {
  color: #00af95;
  border-color: #00af95;
}
.step__note {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: #231815;
  letter-spacing: -1px;
}
@media only screen and (max-width: 1199px) {
  .step__note {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 991px) {
  .step__note {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .step__note {
    margin-top: 10px;
  }
}
.step .stepSwiper {
  overflow: hidden;
  padding-inline: 70px;
  padding-top: 22px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .step .stepSwiper {
    padding-inline: 42px;
    padding-top: 22px;
  }
}
.step .stepSwiper .swiper-button-prev,
.step .stepSwiper .swiper-button-next {
  position: absolute;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .step .stepSwiper .swiper-button-prev img,
  .step .stepSwiper .swiper-button-next img {
    max-width: 17.5px;
  }
}
.step .stepSwiper .swiper-navigation-icon {
  display: none;
}
.step .stepSwiper .swiper-button-disabled {
  opacity: 0;
}
.step-three__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 40px;
  padding-inline: 30px;
  margin-top: 20px;
  padding-top: 34px;
  margin-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .step-three__row {
    padding-inline: 0;
  }
}
@media only screen and (max-width: 767px) {
  .step-three__row {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #1dade5;
    border-radius: 10px;
    gap: 0;
    margin-bottom: 0;
    margin-top: 35px;
  }
}
.step-three__row::before {
  content: "";
  background-image: url(../img/steps/img-arrow-down.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 305px;
  height: 54px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
}
@media only screen and (max-width: 767px) {
  .step-three__row::before {
    width: 95px;
    height: 17px;
  }
}
.step-three__col {
  padding: 55px 26px 47px 25px;
  background-color: #1dade5;
  border-radius: 15px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
}
@media only screen and (max-width: 767px) {
  .step-three__col {
    width: 100%;
    padding: 25px 28px;
  }
  .step-three__col:first-child {
    position: relative;
  }
  .step-three__col:first-child::after {
    content: "";
    position: absolute;
    width: 84%;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.step-three__img {
  text-align: center;
}
.step-three__img img {
  max-width: 357px;
  aspect-ratio: 357/648;
  margin-left: -26px;
}
@media only screen and (max-width: 991px) {
  .step-three__img {
    max-width: 193px;
    margin: auto;
  }
  .step-three__img img {
    max-width: -webkit-calc(100% + 18px);
    max-width: calc(100% + 18px);
    margin-left: -15px;
  }
}
.step-three__title {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1.3260869565;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .step-three__title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .step-three__title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .step-three__title {
    font-size: 2.3rem;
  }
}
.step-three__subtitle {
  max-width: 275px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15625;
  color: #00a0e9;
  background-color: #ffffff;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 10px 25px;
  margin: 10px auto 27px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .step-three__subtitle {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .step-three__subtitle {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .step-three__subtitle {
    font-size: 1.6rem;
    max-width: 136px;
    padding: 4px 10px;
    border-radius: 7px;
    margin: 9px auto 15px;
  }
}
.step-three__subtitle span {
  display: none;
}
@media only screen and (max-width: 767px) {
  .step-three__subtitle span {
    display: block;
    position: absolute;
    right: -20px;
    color: white;
    bottom: 0;
    font-size: 1.2rem;
    color: #fff100;
  }
}
.step-three__desc {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4117647059;
  color: #fff100;
  padding: 15px 0 0 10px;
}
@media only screen and (max-width: 1199px) {
  .step-three__desc {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 991px) {
  .step-three__desc {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .step-three__desc {
    font-size: 1.6rem;
    padding: 10px 34px 0 34px;
  }
}
.step-three__note {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #e50012;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .step-three__note {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .step-three__note {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .step-three__note {
    display: none;
  }
}
.step-four__desc {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0088cd;
  margin-top: 8px;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .step-four__desc {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .step-four__desc {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .step-four__desc {
    display: none;
  }
}

.-my0 {
  margin-top: 0 !important;
}

@media only screen and (min-width: 768px) {
  .-brb0 {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
  }
}

.steps .one__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-block: 0 46px;
  gap: 20px;
  padding-left: 80px;
}
@media only screen and (max-width: 767px) {
  .steps .one__top {
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-block: 0 27px;
  }
}
.steps .one__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-white);
  border-radius: 17px;
}
@media only screen and (max-width: 767px) {
  .steps .one__top-left {
    max-width: 51px;
    border-radius: 7px;
  }
}
.steps .one__top-right-top {
  font-size: 2.4rem;
  font-weight: 700;
  color: #231815;
}
@media only screen and (max-width: 1199px) {
  .steps .one__top-right-top {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .steps .one__top-right-top {
    font-size: 1.4rem;
  }
}
.steps .one__top-right-title {
  font-size: 3.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .steps .one__top-right-title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .steps .one__top-right-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .steps .one__top-right-title {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.steps .one__top-right-title-bg {
  font-size: 5rem;
  font-weight: 900;
  color: #0065b1;
}
@media only screen and (max-width: 1199px) {
  .steps .one__top-right-title-bg {
    font-size: 3.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .steps .one__top-right-title-bg {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .steps .one__top-right-title-bg {
    font-size: 1.8rem;
  }
}

table {
  margin-block: 20px;
  width: 100%;
}

th {
  text-align: left;
  background: #949494;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}

td {
  padding: 10px;
}

.btn {
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 2rem;
  font-family: "M PLUS 1p", sans-serif;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media only screen and (max-width: 767px) {
  .btn {
    padding: 5px 7px;
    font-size: 1rem;
  }
}
.btn-outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
}
.btn-outline:after {
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.29 19.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M9.54,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3Cpath class='cls-1' d='M19.2,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3Cpath class='cls-1' d='M0,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .btn-outline:after {
    width: 18px;
    height: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .btn-outline:hover:after {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.29 19.04'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %230065b1; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M9.54,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3Cpath class='cls-1' d='M19.2,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3Cpath class='cls-1' d='M0,19.04V0c2.33,4.34,3.7,6.81,5.09,9.5-1.74,3.34-2.71,5.37-5.09,9.54Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination__item {
  background-color: var(--color-black);
  height: 30px;
  min-width: 30px;
}
.pagination__item:not(:last-of-type) {
  margin-right: 10px;
}
.pagination__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: var(--color-white);
  height: 100%;
  padding: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pagination__item a:hover {
  opacity: 0.7;
}
.pagination__item.-dots {
  background-color: transparent;
  min-width: auto;
}
.pagination__item.-dots a {
  color: var(--color-black);
  padding-left: 0;
  padding-right: 0;
}
.pagination__item.-active {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
}
.pagination__item.-active a {
  color: var(--color-black);
}
.pagination__item.-prev a, .pagination__item.-next a {
  position: relative;
  width: auto;
}
.pagination__item.-prev a::after, .pagination__item.-next a::after {
  content: "";
  background-image: url(../img/pagination-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 6px;
  width: 8px;
  position: absolute;
}
.pagination__item.-prev a {
  padding: 5px 7px 5px 20px;
}
.pagination__item.-prev a:after {
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pagination__item.-next a {
  padding: 5px 20px 5px 7px;
}
.pagination__item.-next a:after {
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.modal.show-modal {
  opacity: 1;
  visibility: visible;
}
.modal.show-modal .modal__content {
  margin-bottom: 0;
}
.modal .privacy-policy a {
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.modal .privacy-policy a:hover {
  text-decoration: underline;
}
.modal__content {
  width: max(350px, 90vw);
  height: 90dvh;
  background-color: var(--color-white);
  border-radius: 8px;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin-bottom: 100px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.modal__title {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .modal__title {
    font-size: 1.8rem;
  }
}
.modal-sub-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.modal__header {
  padding: 15px;
  border-bottom: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 40px 20px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #231815;
  position: relative;
}
.modal__body iframe {
  width: 100%;
  height: 100%;
}
.modal__body .privacy-policy h3 {
  margin-block: 20px 10px;
}
.modal__body .privacy-policy p {
  margin-bottom: 10px;
  padding-left: 15px;
}
.modal__body .privacy-policy ol {
  list-style: auto;
  padding-left: 30px;
}
.modal__close {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .modal__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.modal__col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 15px);
  flex: 0 0 -webkit-calc(50% - 15px);
  flex: 0 0 calc(50% - 15px);
}
@media only screen and (max-width: 767px) {
  .modal__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 10px;
  }
}
.modal__col:first-child {
  position: relative;
}
.modal__col:first-child::after {
  position: absolute;
  content: "";
  background-color: #efefef;
  width: 1px;
  height: 100%;
  right: -15px;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .modal__col:first-child::after {
    content: none;
  }
}
/*# sourceMappingURL=app.css.map */
