@charset "UTF-8";
/*! kiso.css v1.2.1 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}

:where(
input:is(
[type="tel" i],
[type="url" i],
[type="email" i],
[type="number" i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(
input:not([type="button" i]):not([type="submit" i]):not([type="reset" i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(
button,
input:is([type="button" i], [type="submit" i], [type="reset" i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(
button,
input:is([type="button" i], [type="submit" i], [type="reset" i]),
[role="tab" i],
[role="button" i],
[role="option" i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(
button:enabled,
label[for],
select:enabled,
input:is(
[type="button" i],
[type="submit" i],
[type="reset" i],
[type="radio" i],
[type="checkbox" i]):enabled,
[role="tab" i],
[role="button" i],
[role="option" i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open]):not([popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

:root {
  --white: #fff;
  --deep-gray: #999;
  --black: #000;
  --light-blue: #67B9FF;
  --blue: #1F06FF;
  --purple-blue: #3627C5;
  --primary-color: var(--black);
  --base-gray-color: var(--deep-gray);
  --base-text-color: var(--black);
  --sub-text-color: var(--deep-gray);
  --base-border-color: var(--deep-gray);
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  font-size: 2.66666666vw;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 0.69444444vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}

@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.875;
  letter-spacing: 0;
}

html[lang="en"] body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.875;
  letter-spacing: 0;
}

body.is-fixed {
  overflow: hidden;
}

p {
  line-break: strict;
}

a, button, ::file-selector-button {
  touch-action: manipulation;
  -weblit-user-select: none;
  user-select: none;
}

a {
  color: var(--base-text-color);
}

p a {
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p a:active:not(:disabled), p a:hover:not(:disabled) {
  color: var(--primary-color);
  transition-duration: 0.4s;
}

button, select {
  cursor: pointer;
}

picture, video, iframe {
  display: block;
}

.wp-post-image {
  height: auto;
}

figcaption {
  margin-top: 1rem !important;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1.4rem !important;
    font-size: 1.2rem;
  }
}

th {
  text-align: left;
}

caption {
  caption-side: bottom;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.6rem;
    font-size: 1.2rem;
  }
}

caption p + p {
  margin-top: 1rem;
}

caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ul {
  list-style-type: '';
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {
  .md, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .sm {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sm, .lg, .lg--small, .lg--medium, .lg--large {
    display: none !important;
  }
  .md {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sm, .md, .lg--medium, .lg--large {
    display: none !important;
  }
  .lg, .lg--small {
    display: revert !important;
  }
}

@media screen and (min-width: 1280px) {
  .lg--small {
    display: none !important;
  }
  .lg--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .lg--small, .lg--medium {
    display: none !important;
  }
  .lg--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

.is-in {
  pointer-events: visible;
}

.is-in a {
  pointer-events: visible;
}

.fade, .fade--medium, .fade--large {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

.fade--medium {
  transition-duration: 700ms;
}

.fade--large {
  transition-duration: 1400ms;
}

.is-in .fade, .is-in .fade--medium, .is-in .fade--large, .is-in.fade, .is-in.fade--medium, .is-in.fade--large {
  opacity: 1;
}

.fade--up {
  opacity: 0;
  transform: translate(0, 3rem);
  transition-property: opacity, transform;
  transition-duration: 350ms, 1750ms;
  transition-timing-function: ease-in, cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media screen and (min-width: 1024px) {
  .fade--up {
    transform: translate(0, 6rem);
  }
}

.is-in .fade--up, .is-in.fade--up {
  opacity: 1;
  transform: translate(0, 0);
}

.fade--right {
  opacity: 0;
  transform: translate(-3rem, 0);
  transition-property: opacity, transform;
  transition-duration: 350ms, 1750ms;
  transition-timing-function: ease-in, cubic-bezier(0.075, 0.82, 0.165, 1);
}

.is-in .fade--right, .is-in.fade--right {
  opacity: 1;
  transform: translate(0, 0);
}

.delay--100 {
  transition-delay: 100ms;
  animation-delay: 100ms;
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

.delay--300 {
  transition-delay: 300ms;
  animation-delay: 300ms;
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

.delay--500 {
  transition-delay: 500ms;
  animation-delay: 500ms;
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

.delay--700 {
  transition-delay: 700ms;
  animation-delay: 700ms;
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

.delay--900 {
  transition-delay: 900ms;
  animation-delay: 900ms;
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

.delay--1100 {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}

.delay--1200 {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}

.delay--1300 {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}

.delay--1400 {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}

.delay--1500 {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}

.delay--1600 {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}

.delay--1700 {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}

.delay--1800 {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}

.delay--1900 {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}

.delay--2000 {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 11.2.10
 * 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: June 28, 2025
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

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

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

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -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-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

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

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

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

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

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

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

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

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

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

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  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.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 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 {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

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

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

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

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

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

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

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

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

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

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

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

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -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;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

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

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

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

/* customize */
.swiper {
  width: 100%;
}

.swiper-wrapper.linear {
  transition-timing-function: linear;
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (min-width: 600px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
  padding-top: 2.66667rem;
  padding-bottom: 2.66667rem;
}

@media screen and (min-width: 1024px) {
  .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
    padding-top: 5.33333rem;
    padding-bottom: 5.33333rem;
  }
}

.l-container--xs--pt-0 {
  padding-top: 0;
}

.l-container--xs--pb-0 {
  padding-bottom: 0;
}

.l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 5.33333rem;
  padding-bottom: 5.33333rem;
}

@media screen and (min-width: 1024px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 10.66667rem;
    padding-bottom: 10.66667rem;
  }
}

.l-container--small--pt-0 {
  padding-top: 0;
}

.l-container--small--pb-0 {
  padding-bottom: 0;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .l-center {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center {
    max-width: calc(134rem + 10rem);
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 10rem;
}

@media screen and (min-width: 1024px) {
  .l-header .inner {
    height: 14.8rem;
  }
}

.l-header .logo {
  display: block;
  position: relative;
  z-index: 300;
  transform-origin: left center;
  width: 6.3rem;
  margin-left: 2rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 10rem;
    margin-left: 2.5rem;
  }
}

.l-header .logo img, .l-header .logo svg {
  width: 100%;
  height: auto;
}

.l-main {
  overflow: hidden;
  position: relative;
}

.l-main > * {
  position: relative;
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

.l-footer > picture {
  overflow: hidden;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.l-footer > picture img {
  transform: scale(1.01);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .l-footer > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.l-footer > div > div:nth-of-type(2) {
  display: grid;
  gap: .4rem;
}

@media screen and (max-width: 599px) {
  .l-footer > div > div:nth-of-type(2) {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div > div:nth-of-type(2) {
    gap: 1rem;
    margin-left: auto;
  }
}

.l-footer > div > div:nth-of-type(2) a {
  width: fit-content;
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer > div > div:nth-of-type(2) a {
    font-size: 1.6rem;
  }
}

.l-footer > div > div:nth-of-type(2) a:active:not(:disabled), .l-footer > div > div:nth-of-type(2) a:hover:not(:disabled) {
  color: var(--light-blue);
  transition-duration: 0.4s;
}

.l-footer > div > div:nth-of-type(3) {
  display: grid;
  grid-template-columns: repeat(4, auto);
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .l-footer > div > div:nth-of-type(3) {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div > div:nth-of-type(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

.l-footer > div > div:nth-of-type(3) a {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border: 0.1rem solid var(--white);
  border-radius: 50%;
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer > div > div:nth-of-type(3) a {
    width: 8rem;
    height: 8rem;
  }
}

.l-footer > div > div:nth-of-type(3) a:active:not(:disabled), .l-footer > div > div:nth-of-type(3) a:hover:not(:disabled) {
  border-color: var(--light-blue);
  transition-duration: 0.4s;
}

.l-footer > div > div:nth-of-type(3) a:active:not(:disabled) path, .l-footer > div > div:nth-of-type(3) a:hover:not(:disabled) path {
  fill: var(--light-blue);
  transition-duration: 0.4s;
}

.l-footer > div > div:nth-of-type(3) svg {
  object-fit: contain;
  width: 2.6rem;
  height: 2.2rem;
}

@media screen and (min-width: 1024px) {
  .l-footer > div > div:nth-of-type(3) svg {
    width: 3rem;
    height: 2.6rem;
  }
}

.l-footer > div > div:nth-of-type(3) path {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-footer .logo {
  display: block;
  width: 25rem;
  margin-bottom: 3rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-footer .logo {
    width: 31rem;
    margin-bottom: 5rem;
  }
}

.l-footer .logo img {
  width: 100%;
}

.l-footer p {
  margin-bottom: 3rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .l-footer p {
    margin-bottom: 6rem;
    font-size: 1.6rem;
  }
}

.l-footer p + a {
  display: block;
  width: 20rem;
  margin-bottom: 3rem;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer p + a {
    width: 23rem;
    margin-bottom: 4rem;
  }
}

.l-footer p + a:active:not(:disabled), .l-footer p + a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.l-footer small {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .l-footer small {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    font-size: 1.2rem;
  }
}

.l-pagetop {
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  position: absolute;
  top: 0;
  left: 88%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 3rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .l-pagetop {
    left: 93%;
  }
}

@media screen and (min-width: 1024px) {
  .l-pagetop {
    left: 91%;
    width: 10rem;
    height: 6rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-pagetop {
    left: 92%;
  }
}

.l-pagetop:active:not(:disabled), .l-pagetop:hover:not(:disabled) {
  border-color: var(--light-blue);
  transition-duration: 0.4s;
}

.l-pagetop:active:not(:disabled) span, .l-pagetop:hover:not(:disabled) span {
  animation-duration: 400ms;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-name: arrow-up;
}

.l-pagetop:active:not(:disabled) rect, .l-pagetop:hover:not(:disabled) rect {
  fill: var(--light-blue);
  transition-duration: 0.4s;
}

.l-pagetop span {
  display: grid;
}

.l-pagetop img, .l-pagetop svg {
  transform: rotate(-90deg);
  width: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-pagetop img, .l-pagetop svg {
    width: 3rem;
  }
}

.l-pagetop rect {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) {
  .s-index .a-line {
    min-height: 202rem;
  }
}

.s-index .a-line svg {
  position: absolute;
  top: 51.3%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.03);
  width: auto;
  max-width: none;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .s-index .a-line svg {
    top: 49.9%;
    transform: translate(-50%, -50%) scale(1.01);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-line svg {
    top: 49.8%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-line svg {
    top: 49.2%;
    transform: translate(-50%, -50%);
  }
}

.s-index .a-line path {
  stroke-opacity: 0;
}

@media screen and (max-width: 599px) {
  .s-index .a-line path {
    stroke-width: 5.4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-line path {
    stroke-width: 7rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-line path {
    stroke-width: 9rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-line path {
    stroke-width: 11rem;
  }
}

.s-index .a-mv {
  position: relative;
  height: 100svh;
}

.s-index .a-mv figure {
  overflow: hidden;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 46.4vw;
  border-radius: 50%;
  transition: filter 6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure {
    width: 35vw;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv figure {
    width: 25vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure {
    width: 23.33333333vw;
  }
}

.s-index .a-mv figure:active:not(:disabled), .s-index .a-mv figure:hover:not(:disabled) {
  filter: contrast(1.2) saturate(1.2) sepia(0.4);
}

.s-index .a-mv figure:nth-of-type(1) {
  top: 28%;
  left: 0%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(1) {
    left: 10%;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(1) {
    left: 15%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(1) {
    top: 29%;
  }
}

.s-index .a-mv figure:nth-of-type(2) {
  top: 28%;
  left: 50%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(2) {
    top: 29%;
    left: 40%;
  }
}

.s-index .a-mv figure:nth-of-type(3) {
  top: 28%;
  left: 100%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(3) {
    left: 90%;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(3) {
    left: 85%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(3) {
    top: 29%;
    left: 65%;
  }
}

.s-index .a-mv figure:nth-of-type(4) {
  top: 75%;
  left: 0%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(4) {
    left: 10%;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(4) {
    left: 15%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(4) {
    top: 29%;
    left: 90%;
  }
}

.s-index .a-mv figure:nth-of-type(5) {
  top: 75%;
  left: 50%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(5) {
    top: 74%;
    left: 72%;
  }
}

.s-index .a-mv figure:nth-of-type(6) {
  top: 75%;
  left: 100%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(6) {
    left: 90%;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(6) {
    left: 85%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(6) {
    top: 74%;
    left: 97%;
  }
}

.s-index .a-mv h1 {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88vw;
}

@media (orientation: landscape) {
  .s-index .a-mv h1 {
    width: 50vw;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 {
    width: 65vw;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv h1 {
    width: 45vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv h1 {
    top: 75%;
    left: 40%;
    width: 73vw;
  }
}

.s-index .a-mv > a {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv > a {
    top: 97%;
  }
}

.s-index .a-mv > a:active:not(:disabled) img, .s-index .a-mv > a:active:not(:disabled) svg, .s-index .a-mv > a:hover:not(:disabled) img, .s-index .a-mv > a:hover:not(:disabled) svg {
  animation-duration: 400ms;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-name: arrow-down;
}

@keyframes arrow-up {
  0% {
    transform: translate(0, 0.3rem);
  }
  50% {
    transform: translate(0, -0.4rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes arrow-down {
  0% {
    transform: translate(0, -0.3rem);
  }
  50% {
    transform: translate(0, 0.4rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes arrow-right {
  0% {
    transform: translate(-0.3rem, 0);
  }
  50% {
    transform: translate(0.4rem, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.s-index .a-index {
  display: grid;
}

@media screen and (max-width: 599px) {
  .s-index .a-index {
    gap: 5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-index {
    grid-template-columns: 48% 50%;
    gap: 2%;
    align-items: start;
  }
}

.s-index .a-index > div:nth-of-type(1) {
  position: relative;
}

.s-index .a-index > div:nth-of-type(2) {
  padding: 1rem 1rem 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media screen and (min-width: 600px) {
  .s-index .a-index > div:nth-of-type(2) {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-index > div:nth-of-type(2) {
    border-radius: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index > div:nth-of-type(2) {
    padding: 2rem 4rem 4rem;
  }
}

.s-index .a-index h2 {
  margin-bottom: 2.6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index h2 {
    font-size: 3rem;
  }
}

.s-index .a-index h2 + p {
  line-height: 2.2;
}

@media screen and (min-width: 1280px) {
  .s-index .a-index h2 + p {
    margin-bottom: 4rem;
    margin-right: 24%;
  }
}

@media screen and (max-width: 1279px) {
  .s-index .a-index h2 + p + picture {
    width: 11.6rem;
    margin-top: -2rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-index h2 + p + picture {
    width: 18.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index h2 + p + picture {
    position: absolute;
    top: 16rem;
    left: 85%;
    transform: translate(-50%, -50%);
    width: 18.4rem;
  }
}

.s-index .a-index .data + .data {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data + .data {
    margin-top: 3rem;
  }
}

.s-index .a-index .data:nth-of-type(1) h3, .s-index .a-index .data:nth-of-type(2) h3, .s-index .a-index .data:nth-of-type(3) h3 {
  width: fit-content;
  margin-bottom: 1rem;
  padding-bottom: .2rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  font-size: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data:nth-of-type(1) h3, .s-index .a-index .data:nth-of-type(2) h3, .s-index .a-index .data:nth-of-type(3) h3 {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    font-size: 2rem;
  }
}

.s-index .a-index .data:nth-of-type(1) div, .s-index .a-index .data:nth-of-type(2) div, .s-index .a-index .data:nth-of-type(3) div {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data:nth-of-type(1) div, .s-index .a-index .data:nth-of-type(2) div, .s-index .a-index .data:nth-of-type(3) div {
    grid-template-columns: 38% 1fr;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index .data:nth-of-type(1) div, .s-index .a-index .data:nth-of-type(2) div, .s-index .a-index .data:nth-of-type(3) div {
    grid-template-columns: 42% 1fr;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-index .data:nth-of-type(1) div, .s-index .a-index .data:nth-of-type(2) div, .s-index .a-index .data:nth-of-type(3) div {
    grid-template-columns: 24rem 1fr;
  }
}

.s-index .a-index .data:nth-of-type(1) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data:nth-of-type(1) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index .data:nth-of-type(1) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1), .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) {
    font-size: 3.2rem;
  }
}

.s-index .a-index .data:nth-of-type(1) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) span {
  display: inline-block;
  margin-right: .6rem;
  margin-left: .6rem;
  color: var(--purple-blue);
  font-size: 5.8rem;
  font-weight: 700;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data:nth-of-type(1) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) span {
    font-size: 7.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index .data:nth-of-type(1) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(2) p:nth-of-type(1) span, .s-index .a-index .data:nth-of-type(3) p:nth-of-type(1) span {
    font-size: 10rem;
  }
}

.s-index .a-index .data:nth-of-type(1) p:nth-of-type(2), .s-index .a-index .data:nth-of-type(2) p:nth-of-type(2), .s-index .a-index .data:nth-of-type(3) p:nth-of-type(2) {
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .data:nth-of-type(1) p:nth-of-type(2), .s-index .a-index .data:nth-of-type(2) p:nth-of-type(2), .s-index .a-index .data:nth-of-type(3) p:nth-of-type(2) {
    font-size: 1.8rem;
  }
}

.s-index .a-index .navigator {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .navigator {
    margin-top: 10rem;
  }
}

.s-index .a-index .navigator h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index .navigator h3 {
    font-size: 2rem;
  }
}

.s-index .a-index .navigator div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: fit-content;
}

.s-index .a-index .navigator section {
  max-width: 13rem;
}

.s-index .a-index .navigator figure {
  margin-bottom: .6rem;
}

.s-index .a-index h4 {
  margin-bottom: .4rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index h4 {
    font-size: 1.6rem;
  }
}

.s-index .a-index h4 + p {
  width: fit-content;
  margin-right: .4rem;
  margin-left: .4rem;
  font-size: 1rem;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index h4 + p {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.2rem;
  }
}

.s-index .a-index article {
  border-bottom: 0.1rem dashed var(--black);
}

.s-index .a-index article a {
  display: grid;
  grid-template-columns: 4.4rem 5rem 1fr 3.4rem;
  align-items: center;
  gap: 1rem;
  height: 6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index article a {
    grid-template-columns: 8rem 7rem 1fr 6rem;
    height: 11rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index article a {
    grid-template-columns: 8rem 8rem 1fr 6rem;
    gap: 3rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-index article a {
    gap: 3.6rem;
  }
}

.s-index .a-index article a:active:not(:disabled) div, .s-index .a-index article a:hover:not(:disabled) div {
  border-color: var(--light-blue);
  transition-duration: 0.4s;
}

.s-index .a-index article a:active:not(:disabled) div img, .s-index .a-index article a:active:not(:disabled) div svg, .s-index .a-index article a:hover:not(:disabled) div img, .s-index .a-index article a:hover:not(:disabled) div svg {
  animation-duration: 400ms;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-name: arrow-down;
}

.s-index .a-index article a:active:not(:disabled) rect, .s-index .a-index article a:hover:not(:disabled) rect {
  fill: var(--light-blue);
  transition-duration: 0.4s;
}

.s-index .a-index article p {
  display: grid;
  place-items: center;
  padding-bottom: .1rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index article p {
    font-size: 1.6rem;
  }
}

.s-index .a-index article h3 {
  transform: translate(0, -0.1rem);
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-index article h3 {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-index article h3 {
    font-size: 1.8rem;
  }
}

.s-index .a-index article div {
  display: grid;
  place-items: center;
  height: 2.2rem;
  padding-top: .1rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-index article div {
    height: 3.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-index article div img, .s-index .a-index article div svg {
    width: 1.6rem;
  }
}

.s-index .a-index article rect {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-spot-wrap {
  position: relative;
}

.s-index .a-spot-wrap > picture,
.s-index .a-spot-wrap .pin-spacer picture {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.s-index .a-spot-wrap > picture img,
.s-index .a-spot-wrap .pin-spacer picture img {
  width: 100%;
  height: auto;
}

.s-index .a-carousel .swiper-slide {
  width: auto;
  max-width: none;
  height: 6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-carousel .swiper-slide {
    height: 9rem;
  }
}

.s-index .a-carousel .swiper-slide img {
  height: 100%;
}

.s-index .a-spot > div {
  display: grid;
  gap: 4rem;
  align-items: start;
  padding: 4rem 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

@media screen and (min-width: 600px) {
  .s-index .a-spot > div {
    grid-template-columns: 46% 1fr;
    gap: 4%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot > div {
    padding: 6rem 3rem;
    border-radius: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot > div {
    grid-template-columns: 40% 1fr;
    gap: 20%;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.s-index .a-spot > div > div:nth-of-type(2) {
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot > div > div:nth-of-type(2) {
    padding-top: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot > div > div:nth-of-type(2) {
    padding-top: 5rem;
  }
}

.s-index .a-spot p:has(+ h2) {
  width: fit-content;
  margin-bottom: .8rem;
  padding-bottom: .1rem;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  font-weight: 700;
}

.s-index .a-spot p:nth-of-type(2), .s-index .a-spot p:nth-of-type(3) {
  margin-bottom: 1.6rem;
}

.s-index .a-spot p:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: 700;
}

.s-index .a-spot p span {
  font-size: 1.1rem;
  font-weight: 400;
}

.s-index .a-spot p + div {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem;
  width: fit-content;
  margin-top: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot p + div {
    gap: 1.6rem;
    margin-top: 4rem;
  }
}

.s-index .a-spot h2 {
  display: grid;
  gap: .8rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot h2 {
    margin-bottom: 3.6rem;
  }
}

.s-index .a-spot h2 span:nth-of-type(1) {
  font-size: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot h2 span:nth-of-type(1) {
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot h2 span:nth-of-type(1) {
    font-size: 3.9rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-spot h2 span:nth-of-type(1) {
    font-size: 4.2rem;
  }
}

.s-index .a-spot h2 span:nth-of-type(2) {
  font-size: 1.4rem;
  font-weight: 200;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.s-index .a-spot a {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 0.1rem solid var(--black);
  border-radius: 50%;
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot a {
    width: 8rem;
    height: 8rem;
  }
}

.s-index .a-spot a:active:not(:disabled), .s-index .a-spot a:hover:not(:disabled) {
  border-color: var(--blue);
  transition-duration: 0.4s;
}

.s-index .a-spot a:active:not(:disabled) path, .s-index .a-spot a:hover:not(:disabled) path {
  fill: var(--blue);
  transition-duration: 0.4s;
}

.s-index .a-spot a img, .s-index .a-spot a svg {
  width: 1.6rem;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot a img, .s-index .a-spot a svg {
    width: 2.2rem;
  }
}

.s-index .a-spot a path {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-spot figure {
  transition: filter 6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-spot figure:active:not(:disabled), .s-index .a-spot figure:hover:not(:disabled) {
  filter: contrast(1.2) saturate(1.2) sepia(0.4);
}

.s-index .a-spot figure + p {
  position: absolute;
  top: 86%;
  right: 42%;
  z-index: 1;
  transform: translate(0, -50%);
  width: fit-content;
  padding: 1.2rem 1.6rem 1.4rem;
  border: 0.1rem solid var(--black);
  border-radius: 1.6rem;
  background: var(--white);
  font-size: 1.2rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot figure + p {
    top: 88%;
    right: 37%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot figure + p {
    top: 80%;
    right: 52%;
    padding: 2.2rem 3rem 2.4rem;
    border-radius: 2.6rem;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot figure + p {
    top: 56%;
    right: 104%;
  }
}

.s-index .a-spot figure:nth-of-type(2) {
  position: relative;
  width: 12rem;
  margin-top: -2rem;
  margin-right: -1rem;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot figure:nth-of-type(2) {
    width: 22rem;
    margin-right: -2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot figure:nth-of-type(2) {
    position: absolute;
    top: 98%;
    left: -6%;
    transform: translate(-50%, -50%);
    margin-right: 0;
  }
}

.s-index .a-spot figcaption {
  font-size: 1.2rem;
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot figcaption {
    text-align: right;
  }
}

.s-index .a-spot-01-deco picture {
  transform: translate(0, -2rem);
  width: 28rem;
  margin-left: -2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot-01-deco picture {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot-01-deco picture {
    transform: translate(0, -5rem);
    width: 31rem;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot-01-deco picture {
    margin-left: 4rem;
  }
}

.s-index .a-spot-02-deco picture {
  transform: translate(0, -2rem);
  width: 28rem;
  margin-right: -2rem;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot-02-deco picture {
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot-02-deco picture {
    transform: translate(0, -5rem);
    width: 31rem;
    margin-right: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot-02-deco picture {
    margin-right: 4rem;
  }
}

.s-index .a-spot-06-deco picture {
  transform: translate(0, -2rem);
  width: 28rem;
  margin-left: -2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot-06-deco picture {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot-06-deco picture {
    transform: translate(0, -5rem);
    width: 31rem;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot-06-deco picture {
    margin-left: 4rem;
  }
}

.s-index .a-spot-09-deco picture {
  transform: translate(0, -2rem);
  width: 26rem;
  margin-right: -2rem;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-spot-09-deco picture {
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot-09-deco picture {
    transform: translate(0, -5rem);
    width: 29rem;
    margin-right: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot-09-deco picture {
    margin-right: 4rem;
  }
}

.s-index .a-spot-12-deco picture {
  transform: translate(0, -2rem);
  width: 30rem;
  margin-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-spot-12-deco picture {
    transform: translate(0, -5rem);
    width: 33rem;
    margin-left: 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-spot-12-deco picture {
    margin-left: 6rem;
  }
}

.s-index .a-link {
  display: grid;
  place-items: center;
  border-radius: 1rem 1rem 0 0;
  background: #005288;
}

@media screen and (min-width: 1024px) {
  .s-index .a-link {
    border-radius: 2rem 2rem 0 0;
  }
}

.s-index .a-link a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  width: 28rem;
  height: 7rem;
  border-radius: 1rem;
  background: #f0f0f0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-link a {
    width: 56rem;
    height: 14rem;
    border-radius: 2rem;
  }
}

.s-index .a-link a:active:not(:disabled) > span:nth-of-type(1), .s-index .a-link a:hover:not(:disabled) > span:nth-of-type(1) {
  color: var(--light-blue);
  transition-duration: 0.4s;
}

.s-index .a-link a:active:not(:disabled) > span:nth-of-type(2), .s-index .a-link a:hover:not(:disabled) > span:nth-of-type(2) {
  border-color: var(--light-blue);
  transition-duration: 0.4s;
}

.s-index .a-link a:active:not(:disabled) > span:nth-of-type(2) span, .s-index .a-link a:hover:not(:disabled) > span:nth-of-type(2) span {
  animation-duration: 400ms;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-name: arrow-right;
}

.s-index .a-link a:active:not(:disabled) rect, .s-index .a-link a:hover:not(:disabled) rect {
  fill: var(--light-blue);
  transition-duration: 0.4s;
}

.s-index .a-link a > span:nth-of-type(1) {
  transform: translate(0, -0.1rem);
  font-size: 1.6rem;
  font-weight: 700;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-link a > span:nth-of-type(1) {
    font-size: 2.2rem;
  }
}

.s-index .a-link a > span:nth-of-type(2) {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 86%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 2rem;
  border: 0.1rem solid var(--black);
  border-radius: calc(infinity * .1rem);
  transition: border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-link a > span:nth-of-type(2) {
    width: 6rem;
    height: 4rem;
  }
}

.s-index .a-link a > span:nth-of-type(2) span {
  display: grid;
}

@media screen and (min-width: 1024px) {
  .s-index .a-link img, .s-index .a-link svg {
    width: 2rem;
  }
}

.s-index .a-link rect {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-dis-none {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .u-sm-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-dis-none {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-md-dis-none {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-dis-none {
    display: none !important;
  }
}

.u-dis-block {
  display: block !important;
}

.u-dis-ib {
  display: inline-block !important;
}

.u-of-hidden {
  overflow: hidden;
}

.u-pos-relative {
  position: relative;
}

.u-before-con-none:before {
  content: none !important;
}

.u-after-con-none:after {
  content: none !important;
}

.u-opa-0 {
  opacity: 0;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-auto {
  margin-right: auto;
}

.u-ml-auto {
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .u-md-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mt-0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mr-0 {
    margin-right: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ml-0 {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ml-0 {
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-mr-auto {
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-mr-auto {
    margin-right: auto;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ml-auto {
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ml-auto {
    margin-left: auto;
  }
}

.u-mt-xxxs {
  margin-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxxs {
    margin-top: 1rem !important;
  }
}

.u-mt-xxs {
  margin-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xxs {
    margin-top: 2rem !important;
  }
}

.u-mt-xs {
  margin-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 4rem !important;
  }
}

.u-mt-small {
  margin-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 6rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 8rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 14rem !important;
  }
}

.u-mt-xl {
  margin-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xl {
    margin-top: 18rem !important;
  }
}

.u-mt-minus-xxxs {
  margin-top: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxxs {
    margin-top: -1rem !important;
  }
}

.u-mt-minus-xxs {
  margin-top: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xxs {
    margin-top: -2rem !important;
  }
}

.u-mt-minus-xs {
  margin-top: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-xs {
    margin-top: -4rem !important;
  }
}

.u-mt-minus-small {
  margin-top: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-small {
    margin-top: -6rem !important;
  }
}

.u-mt-minus-medium {
  margin-top: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-medium {
    margin-top: -8rem !important;
  }
}

.u-mt-minus-large {
  margin-top: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-minus-large {
    margin-top: -14rem !important;
  }
}

.u-mb-xxxs {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxxs {
    margin-bottom: 1rem !important;
  }
}

.u-mb-xxs {
  margin-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xxs {
    margin-bottom: 2rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 4rem !important;
  }
}

.u-mb-small {
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 6rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 8rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 14rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xl {
    margin-bottom: 18rem !important;
  }
}

.u-mb-minus-xxxs {
  margin-bottom: -0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxxs {
    margin-bottom: -1rem !important;
  }
}

.u-mb-minus-xxs {
  margin-bottom: -1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xxs {
    margin-bottom: -2rem !important;
  }
}

.u-mb-minus-xs {
  margin-bottom: -2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-xs {
    margin-bottom: -4rem !important;
  }
}

.u-mb-minus-small {
  margin-bottom: -3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-small {
    margin-bottom: -6rem !important;
  }
}

.u-mb-minus-medium {
  margin-bottom: -4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-medium {
    margin-bottom: -8rem !important;
  }
}

.u-mb-minus-large {
  margin-bottom: -7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-minus-large {
    margin-bottom: -14rem !important;
  }
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pt-xxxs {
  padding-top: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxxs {
    padding-top: 1rem !important;
  }
}

.u-pt-xxs {
  padding-top: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xxs {
    padding-top: 2rem !important;
  }
}

.u-pt-xs {
  padding-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 4rem !important;
  }
}

.u-pt-small {
  padding-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 6rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 8rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 14rem !important;
  }
}

.u-pt-xl {
  padding-top: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xl {
    padding-top: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xxxs {
  padding-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxxs {
    padding-bottom: 1rem !important;
  }
}

.u-pb-xxs {
  padding-bottom: 1rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xxs {
    padding-bottom: 2rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 4rem !important;
  }
}

.u-pb-small {
  padding-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 6rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 8rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 14rem !important;
  }
}

.u-pb-xl {
  padding-bottom: 9rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xl {
    padding-bottom: 18rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-pb-0 {
    padding-bottom: 0 !important;
  }
}

.u-br-xs {
  border-radius: .4rem;
}

@media screen and (min-width: 1024px) {
  .u-br-xs {
    border-radius: .8rem;
  }
}

.u-br-small {
  border-radius: .8rem;
}

@media screen and (min-width: 1024px) {
  .u-br-small {
    border-radius: 1.6rem;
  }
}

.u-br-medium {
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .u-br-medium {
    border-radius: 4rem;
  }
}

.u-bg-white {
  background: var(--white);
}

.u-bg-black {
  background: var(--black);
}

.u-col-white {
  color: var(--white);
}

.u-col-gray {
  color: #555;
}

.u-col-black {
  color: var(--black);
}

.u-col-blue {
  color: var(--blue);
}

.u-col-green {
  color: var(--green);
}

.u-col-yellow {
  color: #EEBF18;
}

.u-col-red {
  color: #E63D5B;
}

.u-col-primary {
  color: var(--primary-color);
}

.u-col-secondary {
  color: var(--secondary-color);
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-xs {
  font-size: .85714285em;
}

@media screen and (min-width: 1024px) {
  .u-fs-xs {
    font-size: .8125em;
  }
}

.u-fs-small {
  font-size: .92857142em;
}

@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: .875em;
  }
}

.u-fs-medium {
  font-size: 1.07142857em;
}

@media screen and (min-width: 1024px) {
  .u-fs-medium {
    font-size: 1.125em;
  }
}

.u-fs-large {
  font-size: 1.14285714em;
}

@media screen and (min-width: 1024px) {
  .u-fs-large {
    font-size: 1.25em;
  }
}

.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-lh-xxs {
  line-height: .4;
}

.u-lh-xs {
  line-height: .8;
}

.u-lh-1 {
  line-height: 1;
}

.u-lh-small {
  line-height: 1.2;
}

.u-lh-medium {
  line-height: 1.6;
}

.u-lh-large {
  line-height: 2;
}

.u-lh-xl {
  line-height: 2.4;
}

.u-lh-xxl {
  line-height: 2.8;
}

.u-ls-minus-large {
  letter-spacing: -.12em;
}

.u-ls-minus-medium {
  letter-spacing: -.08em;
}

.u-ls-minus-small {
  letter-spacing: -.04em;
}

.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-small {
  letter-spacing: .04em;
}

.u-ls-medium {
  letter-spacing: .08em;
}

.u-ls-large {
  letter-spacing: .12em;
}

.u-ls-xl {
  letter-spacing: .16em;
}

.u-ls-xxl {
  letter-spacing: .2em;
}

@media screen and (min-width: 600px) {
  .u-md-ls-0 {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ls-0 {
    letter-spacing: 0;
  }
}

.u-ta-center {
  text-align: center !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-center {
    text-align: center !important;
  }
}

.u-ta-right {
  text-align: right !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-right {
    text-align: right !important;
  }
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (max-width: 599px) {
  .u-sm-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 600px) {
  .u-md-ta-left {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-ta-left {
    text-align: left !important;
  }
}

.u-ws-nowrap {
  white-space: nowrap;
}

.u-pe-none {
  pointer-events: none !important;
}

/*# sourceMappingURL=style.css.map */