@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;
  --pale-gray: #ccc;
  --gray: #b2b2b2;
  --black: #000;
  --light-blue: #53baea;
  --deep-blue: #0c3388;
  --primary-color: var(--deep-blue);
  --secondary-color: var(--light-blue);
  --base-gray-color: var(--pale-gray);
  --base-text-color: var(--black);
  --base-border-color: var(--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;
  background: #1e2678;
  color: var(--base-text-color);
  font-size: 1.2rem;
  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.66667;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1024px) {
  html[lang="ja"] body {
    line-height: 1.75;
  }
}

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: 1rem;
  line-height: 1.5;
}

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

caption {
  caption-side: bottom;
  margin-top: 1.6rem;
  font-size: 1rem;
  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;
  }
}

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

.swiper-pagination-bullet {
  opacity: .4;
  width: .8rem;
  height: .8rem;
  border: 0.1rem solid var(--gray-blue);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gray-blue);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .8rem;
}

.swiper-button-prev,
.swiper-button-next {
  width: 6rem;
  height: 4rem;
  transform: translate(0, -50%);
  margin-top: 0;
  border: 0.1rem solid var(--gray-blue);
  border-radius: calc(infinity * .1rem);
  transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 7rem;
    height: 5rem;
  }
}

.swiper-button-prev:active:not(:disabled), .swiper-button-prev:hover:not(:disabled),
.swiper-button-next:active:not(:disabled),
.swiper-button-next:hover:not(:disabled) {
  box-shadow: 0 0 2.6rem 0 rgba(58, 114, 239, 0.8);
  transition-duration: 0.4s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .7rem;
  height: 1.2rem;
  background: var(--sub-text-color);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swiper-button-prev {
  left: 1rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-prev {
    left: 2rem;
  }
}

.swiper-button-prev:after {
  transform: translate(-56%, -50%) scale(-1, 1);
}

.swiper-button-next {
  right: 1rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-next {
    right: 2rem;
  }
}

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

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

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

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

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

.l-center, .l-center--small {
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

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

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

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: calc(100rem + 10rem);
  }
}

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

.is-one-scroll .l-header .inner:before {
  opacity: 1;
  transition-duration: 0.25s;
}

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

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

.l-header .inner:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(to bottom, #1e2678, rgba(30, 38, 120, 0));
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

.l-header .logo {
  display: grid;
  place-items: center;
  gap: .6rem;
  position: relative;
  z-index: 300;
  transform: translate(0, 0.4rem);
  transform-origin: left center;
  width: 12.4rem;
  margin-right: auto;
  margin-left: 1.4rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    grid-template-columns: repeat(2, auto);
    align-items: end;
    gap: 2rem;
    width: auto;
    transform: none;
    margin-left: 2.08333333%;
  }
}

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

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

.l-header .logo span {
  color: var(--white);
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .l-header .logo span {
    transform: translate(0, -0.2rem);
    font-size: 1.4rem;
  }
}

.l-header a:nth-of-type(2), .l-header a:nth-of-type(3) {
  overflow: hidden;
  display: grid;
  place-items: center;
  place-content: center;
  gap: .2rem;
  position: relative;
  width: 7.4rem;
  height: 100%;
  padding-bottom: .4rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2), .l-header a:nth-of-type(3) {
    grid-template-columns: repeat(2, auto);
    gap: .6rem;
    width: 16rem;
    font-size: 1.4rem;
  }
}

.l-header a:nth-of-type(2):active:not(:disabled):before, .l-header a:nth-of-type(2):hover:not(:disabled):before, .l-header a:nth-of-type(3):active:not(:disabled):before, .l-header a:nth-of-type(3):hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.l-header a:nth-of-type(2):before, .l-header a:nth-of-type(3):before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-header a:nth-of-type(2):after, .l-header a:nth-of-type(3):after {
  content: '';
  display: block;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.4rem;
  height: .2rem;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2):after, .l-header a:nth-of-type(3):after {
    top: 66%;
    width: 8.6rem;
    height: .3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2) svg, .l-header a:nth-of-type(3) svg {
    transform: translate(0, -0.1rem);
  }
}

.l-header a:nth-of-type(2) {
  background: var(--primary-color);
}

.l-header a:nth-of-type(2) svg {
  width: 2.2rem;
  height: auto;
  margin-top: .3rem;
  margin-bottom: .1rem;
}

@media screen and (min-width: 1024px) {
  .l-header a:nth-of-type(2) svg {
    width: 2rem;
  }
}

.l-header a:nth-of-type(3) {
  background: #53baea;
}

.l-header a:nth-of-type(3) svg {
  display: block;
  width: 1.6rem;
  height: auto;
}

.l-main {
  position: relative;
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

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

@media screen and (min-width: 600px) {
  .l-footer {
    padding-bottom: 7rem;
  }
}

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

.l-footer > div {
  display: grid;
}

@media screen and (max-width: 599px) {
  .l-footer > div {
    gap: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div {
    grid-template-columns: repeat(2, auto);
    align-items: end;
    justify-content: space-between;
  }
}

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

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

@media screen and (min-width: 1024px) {
  .l-footer > div > div:nth-of-type(1) {
    gap: 4rem;
  }
}

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

@media screen and (min-width: 600px) {
  .l-footer > div > div:nth-of-type(1) > div {
    grid-template-columns: repeat(2, auto);
    align-items: end;
  }
}

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

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

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

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

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

@media screen and (max-width: 599px) {
  .l-footer > div > div:nth-of-type(2) > div {
    grid-template-columns: repeat(3, auto);
  }
}

.l-footer > div > div:nth-of-type(2) > div 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) > div a {
    font-size: 1.4rem;
  }
}

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

.l-footer .logo {
  display: block;
  position: relative;
  width: 20rem;
}

@media screen and (max-width: 599px) {
  .l-footer .logo {
    margin-right: auto;
    margin-left: auto;
  }
}

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

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

.l-footer .logo + a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .6rem;
  width: fit-content;
  color: var(--white);
  font-size: 1.3rem;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 599px) {
  .l-footer .logo + a {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .logo + a {
    font-size: 1.6rem;
  }
}

.l-footer .logo + a:active:not(:disabled), .l-footer .logo + a:hover:not(:disabled) {
  color: var(--secondary-color);
  transition-duration: 0.4s;
}

.l-footer .logo + a:active:not(:disabled) path, .l-footer .logo + a:hover:not(:disabled) path {
  fill: var(--secondary-color);
  transition-duration: 0.4s;
}

.l-footer .logo + a span {
  position: relative;
}

.l-footer .logo + a span:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: .1rem;
  background: rgba(255, 255, 255, 0.3);
}

.l-footer .logo + a svg {
  width: 1rem;
}

@media screen and (min-width: 600px) {
  .l-footer .logo + a svg {
    transform: translate(0, 0.1rem);
  }
}

.l-footer .logo + a path {
  transition: fill 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-footer p {
  color: var(--white);
  font-size: 1.3rem;
}

@media screen and (max-width: 599px) {
  .l-footer p {
    margin-bottom: 3rem;
  }
}

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

.l-footer p + a {
  width: 19rem;
}

@media screen and (max-width: 599px) {
  .l-footer p + a {
    margin-right: auto;
    margin-left: auto;
  }
}

.l-footer section {
  display: grid;
  gap: 1.6rem;
}

@media screen and (max-width: 599px) {
  .l-footer section {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer section {
    gap: 2.4rem;
  }
}

.l-footer section div {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 3rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .l-footer section div {
    gap: 3.2rem;
  }
}

.l-footer section a:active:not(:disabled) path, .l-footer section a:hover:not(:disabled) path {
  fill: var(--secondary-color);
  transition-duration: 0.4s;
}

.l-footer section svg {
  object-fit: contain;
  width: 2.9rem;
  height: 2.2rem;
}

@media screen and (min-width: 1024px) {
  .l-footer section svg {
    width: 3.9rem;
    height: 2.9rem;
  }
}

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

.l-footer h2 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
}

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

.l-footer small {
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
}

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

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading, .c-two-lang-heading--white, .c-two-lang-heading--small {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: end;
  gap: 1.2rem;
  position: relative;
  width: fit-content;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading, .c-two-lang-heading--white, .c-two-lang-heading--small {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.c-two-lang-heading span:nth-of-type(1), .c-two-lang-heading--white span:nth-of-type(1), .c-two-lang-heading--small span:nth-of-type(1) {
  font-size: 4rem;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading span:nth-of-type(1), .c-two-lang-heading--white span:nth-of-type(1), .c-two-lang-heading--small span:nth-of-type(1) {
    font-size: 8.6rem;
  }
}

.c-two-lang-heading span:nth-of-type(2), .c-two-lang-heading--white span:nth-of-type(2), .c-two-lang-heading--small span:nth-of-type(2) {
  display: inline-block;
  transform: translate(0, -0.4rem);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading span:nth-of-type(2), .c-two-lang-heading--white span:nth-of-type(2), .c-two-lang-heading--small span:nth-of-type(2) {
    transform: translate(0, -0.9rem);
    font-size: 2rem;
  }
}

.c-two-lang-heading--white span:nth-of-type(1) {
  color: var(--white);
}

.c-two-lang-heading--white span:nth-of-type(2) {
  color: var(--white);
}

.c-two-lang-heading--small span:nth-of-type(1) {
  font-size: 2.3rem;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading--small span:nth-of-type(1) {
    font-size: 3.6rem;
  }
}

.c-two-lang-heading--small span:nth-of-type(2) {
  transform: translate(0, -0.2rem);
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading--small span:nth-of-type(2) {
    transform: translate(0, -0.3rem);
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-mv {
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 599px) {
  .s-index .a-mv:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25rem;
    background: linear-gradient(to bottom, rgba(1, 83, 140, 0), rgba(1, 83, 140, 0.7));
  }
}

.s-index .a-mv > img {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s-index .a-mv > img:nth-of-type(1) {
  top: 19%;
  left: 96%;
  width: 8.8%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(1) {
    top: 23%;
    left: 99%;
    width: 3.95833333%;
  }
}

.s-index .a-mv > img:nth-of-type(2) {
  top: 30%;
  left: 89%;
  width: 4.26666666%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(2) {
    top: 38%;
    left: 96%;
    width: 1.875%;
  }
}

.s-index .a-mv > img:nth-of-type(3) {
  top: 38%;
  left: 99%;
  width: 8.8%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(3) {
    top: 44%;
    width: 3.95833333%;
  }
}

.s-index .a-mv > img:nth-of-type(4) {
  top: 44%;
  left: 5%;
  width: 5.06666666%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(4) {
    top: 81%;
    left: 4%;
    width: 2.98611111%;
  }
}

.s-index .a-mv > img:nth-of-type(5) {
  top: 49%;
  left: 10%;
  width: 4.53333333%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(5) {
    top: 89%;
    left: 5%;
    width: 2.56944444%;
  }
}

.s-index .a-mv > img:nth-of-type(6) {
  top: 54%;
  left: 7%;
  width: 3.6%;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > img:nth-of-type(6) {
    top: 95%;
    left: 4%;
    width: 2.01388888%;
  }
}

.s-index .a-mv h1 {
  position: absolute;
  top: 35%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 82.13333333%;
  margin: 0;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 {
    top: 39%;
    left: 28%;
    width: 43.46354166%;
  }
}

.s-index .a-mv h1 + div {
  position: absolute;
  top: 79%;
  left: 28%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 18rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv h1 + div {
    left: 25%;
    width: 26rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 + div {
    top: 75%;
    left: 29%;
    width: 44rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv h1 + div {
    left: 25%;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-mv h1 + div {
    left: 23%;
  }
}

.s-index .a-mv h1 + div a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 4.2rem;
  padding-top: .8rem;
  padding-bottom: .8rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.30769230;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 + div a {
    min-height: 6rem;
    font-size: 2rem;
  }
}

.s-index .a-mv h1 + div a:active:not(:disabled):before, .s-index .a-mv h1 + div a:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-mv h1 + div a:active:not(:disabled) svg, .s-index .a-mv h1 + div a:hover:not(:disabled) svg {
  transform: translate(14%, -0.1rem);
  transition-duration: 0.4s;
}

.s-index .a-mv h1 + div a:active:not(:disabled) path, .s-index .a-mv h1 + div a:hover:not(:disabled) path {
  stroke: var(--primary-color);
  transition-duration: 0.4s;
}

.s-index .a-mv h1 + div a:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-mv h1 + div a span {
  position: relative;
}

.s-index .a-mv h1 + div svg {
  transform: translate(0, -0.1rem);
  width: 2.6rem;
  height: auto;
  margin-left: auto;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h1 + div svg {
    width: 3.6rem;
  }
}

.s-index .a-mv h1 + div path {
  transition: stroke 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-mv > a {
  position: absolute;
  top: 84%;
  left: 77%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 12rem;
  height: 12rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv > a {
    left: 85%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv > a {
    top: 80%;
    left: 86%;
    width: 19rem;
    height: 19rem;
  }
}

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

.s-index .a-mv > a:active:not(:disabled) picture:nth-of-type(1), .s-index .a-mv > a:hover:not(:disabled) picture:nth-of-type(1) {
  transform: translate(-50%, -50%) scale(1.1);
}

.s-index .a-mv > a:active:not(:disabled) picture:nth-of-type(2), .s-index .a-mv > a:hover:not(:disabled) picture:nth-of-type(2) {
  transform: scale(1.1);
}

.s-index .a-mv > a picture {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-mv > a picture:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14.2rem;
  max-width: none;
  height: 14.2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv > a picture:nth-of-type(1) {
    width: 22.4rem;
    height: 22.4rem;
  }
}

.s-index .a-mv > a picture:nth-of-type(1) img {
  animation: 20s linear infinite rotate;
}

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

.s-index .a-news {
  overflow: hidden;
  display: grid;
  align-items: center;
  position: relative;
  height: 4rem;
  background: var(--white);
}

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

.s-index .a-news > div a {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 2rem;
  padding-left: 1.4rem;
}

.s-index .a-news > div a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% - .6rem);
  transform: translate(-50%, -50%) rotate(20deg);
  width: .1rem;
  height: 100%;
  background: var(--primary-color);
}

.s-index .a-news > div a:active:not(:disabled) h2, .s-index .a-news > div a:hover:not(:disabled) h2 {
  color: var(--secondary-color);
  transition-duration: 0.4s;
}

.s-index .a-news > div span {
  display: inline-block;
  margin-right: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}

.s-index .a-news > div span:nth-of-type(1) {
  color: var(--primary-color);
  font-size: 1rem;
}

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

.s-index .a-news > div span:nth-of-type(2) {
  padding: .3rem .8rem .2rem;
  border: 0.1rem solid var(--primary-color);
  border-radius: calc(infinity * .1rem);
  color: var(--primary-color);
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-news > div span:nth-of-type(2) {
    padding-bottom: .4rem;
    font-size: 1.2rem;
  }
}

.s-index .a-news article {
  width: auto;
  max-width: none;
}

.s-index .a-news h2 {
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.s-index .a-news > a {
  display: grid;
  place-items: center;
  place-content: center;
  gap: .2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: fit-content;
  height: 100%;
  padding-bottom: .4rem;
  padding-right: 1rem;
  padding-left: 1rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-news > a {
    grid-template-columns: repeat(2, auto);
    gap: .8rem;
    padding-right: 1.2rem;
    padding-left: 2rem;
  }
}

.s-index .a-news > a:active:not(:disabled), .s-index .a-news > a:hover:not(:disabled) {
  background: var(--secondary-color);
  transition-duration: 0.4s;
}

.s-index .a-news > a:active:not(:disabled) svg, .s-index .a-news > a:hover:not(:disabled) svg {
  transform: translate(14%, 0);
  transition-duration: 0.4s;
}

.s-index .a-news > a svg {
  width: 2.6rem;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-news > a svg {
    width: 3.6rem;
  }
}

.s-index .a-faculty {
  position: relative;
}

.s-index .a-faculty > * {
  position: relative;
}

.s-index .a-faculty > div {
  transition: 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.s-index .a-faculty > div:nth-of-type(1) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e88100;
}

.s-index .a-faculty > div:nth-of-type(2) {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #1e2678;
}

.s-index .a-faculty > div:nth-of-type(3) {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #009260;
}

.s-index .a-faculty > div.is-active {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .s-index .a-faculty h2 {
    margin-left: -1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-faculty h2 {
    margin-left: -2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-faculty h2 {
    margin-left: 6rem;
  }
}

.s-index .a-faculty article {
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-index .a-faculty article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-faculty article > figure {
    width: 58%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-faculty article > div div {
    margin-left: 10%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-faculty article > div div {
    margin-left: 13%;
  }
}

.s-index .a-faculty article > div a {
  display: flex;
  align-items: center;
  position: relative;
  height: 4.4rem;
}

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

.s-index .a-faculty article > div a + a {
  border-top: 0.1rem solid rgba(204, 204, 204, 0.5);
}

.s-index .a-faculty article > div a:active:not(:disabled):before, .s-index .a-faculty article > div a:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-faculty article > div a:active:not(:disabled) svg, .s-index .a-faculty article > div a:hover:not(:disabled) svg {
  transform: translate(14%, -0.1rem);
  transition-duration: 0.4s;
}

.s-index .a-faculty article > div a:active:not(:disabled) path, .s-index .a-faculty article > div a:hover:not(:disabled) path {
  stroke: var(--primary-color);
  transition-duration: 0.4s;
}

.s-index .a-faculty article > div a:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-faculty article > div a span {
  position: relative;
}

.s-index .a-faculty article > div a span:nth-of-type(1) {
  display: inline-block;
  margin-right: 1rem;
  color: var(--white);
  font-size: 1.4rem;
}

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

.s-index .a-faculty article > div a span:nth-of-type(2) {
  padding: .1rem 1rem 0;
  border-radius: calc(infinity * .1rem);
  background: #f077a7;
  color: var(--white);
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-faculty article > div a span:nth-of-type(2) {
    padding: .1rem 1.4rem .2rem;
    font-size: 1.4rem;
  }
}

.s-index .a-faculty article > div svg {
  transform: translate(0, -0.1rem);
  width: 2.6rem;
  height: auto;
  margin-left: auto;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-faculty article > div svg {
    width: 3.6rem;
  }
}

.s-index .a-faculty article > div path {
  transition: stroke 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-faculty .ja {
  display: block;
  width: fit-content;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

@media screen and (max-width: 599px) {
  .s-index .a-faculty .ja {
    position: absolute;
    top: 6rem;
    right: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-faculty .ja {
    margin-bottom: 4rem;
    margin-left: auto;
  }
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-faculty .ja {
    margin-bottom: 8rem;
  }
}

.s-index .a-faculty .en {
  position: absolute;
  top: 6rem;
  left: .6rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 600px) {
  .s-index .a-faculty .en {
    top: 8rem;
    left: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-faculty .en {
    top: 12rem;
    left: 1.3rem;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-faculty .en {
    left: -.4rem;
  }
}

@media screen and (min-width: 1440px) {
  .s-index .a-faculty .en {
    left: -2.2rem;
  }
}

.s-index .a-humanities > div figure {
  width: 44%;
}

@media screen and (max-width: 599px) {
  .s-index .a-humanities > div figure {
    margin-top: -17rem;
    margin-bottom: 3rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-humanities > div figure {
    margin-bottom: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-humanities > div figure {
    margin-bottom: 6rem;
    margin-left: 18rem;
  }
}

.s-index .a-economics > div figure:nth-of-type(1) {
  width: 22%;
}

@media screen and (max-width: 599px) {
  .s-index .a-economics > div figure:nth-of-type(1) {
    margin-top: -12rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-economics > div figure:nth-of-type(1) {
    position: absolute;
    top: 56%;
    left: 86%;
    transform: translate(-50%, -50%);
    width: 13%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-economics > div figure:nth-of-type(1) {
    top: 55%;
    left: 85%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-economics > div figure:nth-of-type(1) {
    top: 58%;
    left: 88%;
  }
}

.s-index .a-economics > div figure:nth-of-type(2) {
  position: relative;
  width: 40%;
}

@media screen and (max-width: 599px) {
  .s-index .a-economics > div figure:nth-of-type(2) {
    margin-top: -1rem;
    margin-bottom: 3rem;
    margin-right: 2rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-economics > div figure:nth-of-type(2) {
    width: 52%;
    margin-top: 4rem;
    margin-bottom: 10rem;
    margin-right: auto;
    margin-left: 6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-economics > div figure:nth-of-type(2) {
    margin-top: 10rem;
    margin-bottom: 16rem;
    margin-left: 11rem;
  }
}

.s-index .a-sciences > div figure {
  width: 48%;
}

@media screen and (max-width: 599px) {
  .s-index .a-sciences > div figure {
    margin-top: -8rem;
    margin-bottom: 3rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-sciences > div figure {
    width: 58%;
    margin-top: 8rem;
    margin-bottom: 6rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-sciences > div figure {
    margin-top: 14rem;
    margin-bottom: 12rem;
    margin-left: 16rem;
  }
}

.s-index .a-special-site {
  background: var(--white);
}

.s-index .a-special-site > div div {
  display: grid;
  gap: 1.6rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-special-site > div div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-special-site > div div {
    gap: 2rem;
  }
}

@media screen and (max-width: 1279px) {
  .s-index .a-special-site > div div {
    margin-right: -1.4rem;
    margin-left: -1.4rem;
  }
}

@media screen and (max-width: 1279px) {
  .s-index .a-special-site h2 {
    margin-left: -1.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-special-site h2 {
    margin-left: 0;
  }
}

.s-index .a-special-site a {
  position: relative;
}

.s-index .a-special-site a:active:not(:disabled):before, .s-index .a-special-site a:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-special-site a:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-features {
  position: relative;
  background: var(--white);
}

.s-index .a-features > picture {
  width: 85%;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > picture {
    width: 78%;
  }
}

.s-index .a-features > picture img {
  object-fit: cover;
  object-position: right bottom;
  width: 100%;
  max-height: 92rem;
}

.s-index .a-features > div {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 600px) {
  .s-index .a-features > div {
    transform: translate(0, -2rem);
    width: 60%;
    padding-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-features > div {
    transform: translate(0, -6rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-features > div {
    left: 7%;
    transform: none;
    width: 50%;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-features > div {
    left: 9%;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-features h2 {
    margin-left: -1.6rem;
  }
}

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

@media screen and (min-width: 1366px) {
  .s-index .a-features h2 {
    grid-template-columns: none;
  }
}

.s-index .a-features a {
  display: block;
  position: relative;
  padding-top: 1.8rem;
  padding-bottom: 2.2rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  .s-index .a-features a {
    padding-bottom: 2.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-features a {
    max-width: 53rem;
  }
}

.s-index .a-features a:active:not(:disabled):before, .s-index .a-features a:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-features a:active:not(:disabled) svg, .s-index .a-features a:hover:not(:disabled) svg {
  transform: translate(14%, -0.1rem);
  transition-duration: 0.4s;
}

.s-index .a-features a:active:not(:disabled) path, .s-index .a-features a:hover:not(:disabled) path {
  stroke: var(--primary-color);
  transition-duration: 0.4s;
}

.s-index .a-features a:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-features a > * {
  position: relative;
}

.s-index .a-features h3 {
  display: flex;
  align-items: center;
  margin-bottom: .4rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h3 {
    margin-bottom: .6rem;
  }
}

.s-index .a-features h3 span:nth-of-type(1) {
  font-size: 1.9rem;
  font-weight: 500;
}

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

.s-index .a-features h3 span:nth-of-type(2) {
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-index .a-features h3 span:nth-of-type(2) {
    font-size: 1.6rem;
  }
}

.s-index .a-features svg {
  transform: translate(0, -0.1rem);
  width: 2.6rem;
  height: auto;
  margin-left: auto;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-features svg {
    width: 3.6rem;
  }
}

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

.s-index .a-stories {
  overflow: hidden;
  background: linear-gradient(to bottom, #6cb3b0, #00a0e9);
}

@media screen and (max-width: 1023px) {
  .s-index .a-stories h2 {
    margin-right: -2rem;
    margin-left: -1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-stories h2 {
    margin-left: -2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-stories h2 {
    margin-left: 0;
  }
}

.s-index .a-stories .swiper-slide {
  width: 12rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-stories .swiper-slide {
    width: 18rem;
  }
}

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

.s-index .a-stories .swiper-slide:active:not(:disabled):before, .s-index .a-stories .swiper-slide:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-stories .swiper-slide:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-stories > a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  color: var(--primary-color);
  font-size: 1.1rem;
  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-stories > a {
    font-size: 1.6rem;
  }
}

.s-index .a-stories > a:active:not(:disabled), .s-index .a-stories > a:hover:not(:disabled) {
  color: var(--white);
  transition-duration: 0.4s;
}

.s-index .a-stories > a:active:not(:disabled) span:after, .s-index .a-stories > a:hover:not(:disabled) span:after {
  background: rgba(255, 255, 255, 0.6);
  transition-duration: 0.4s;
}

.s-index .a-stories > a:active:not(:disabled) svg, .s-index .a-stories > a:hover:not(:disabled) svg {
  transform: translate(14%, -0.1rem);
  transition-duration: 0.4s;
}

.s-index .a-stories > a:active:not(:disabled) path, .s-index .a-stories > a:hover:not(:disabled) path {
  stroke: var(--white);
  transition-duration: 0.4s;
}

.s-index .a-stories > a span {
  position: relative;
}

.s-index .a-stories > a span:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .1rem;
  background: var(--primary-color);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-stories svg {
  transform: translate(0, -0.1rem);
  width: 2.6rem;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-stories svg {
    width: 3.6rem;
  }
}

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

.s-index .a-banners {
  position: relative;
  background: var(--white);
}

.s-index .a-banners > div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
  }
}

.s-index .a-banners a {
  position: relative;
}

.s-index .a-banners a:active:not(:disabled):before, .s-index .a-banners a:hover:not(:disabled):before {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

.s-index .a-banners a:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-banners > img {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s-index .a-banners > img:nth-of-type(1) {
  top: 69%;
  left: 95%;
  width: 3%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(1) {
    width: 1.52777777%;
  }
}

.s-index .a-banners > img:nth-of-type(2) {
  top: 82%;
  left: 96.9%;
  width: 6%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(2) {
    left: 98.7%;
    width: 2.56944444%;
  }
}

.s-index .a-banners > img:nth-of-type(3) {
  top: 100%;
  left: 96%;
  width: 4%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(3) {
    width: 1.94444444%;
  }
}

.s-index .a-banners > img:nth-of-type(4) {
  top: 92%;
  left: 17%;
  width: 6%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(4) {
    top: 85%;
    width: 2.98611111%;
  }
}

.s-index .a-banners > img:nth-of-type(5) {
  top: 82%;
  left: 4%;
  width: 4%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(5) {
    width: 1.94444444%;
  }
}

.s-index .a-banners > img:nth-of-type(6) {
  top: 95%;
  left: 2%;
  width: 3.6%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(6) {
    width: 1.875%;
  }
}

.s-index .a-banners > img:nth-of-type(7) {
  top: 112%;
  left: 4%;
  width: 4.5%;
}

@media screen and (min-width: 600px) {
  .s-index .a-banners > img:nth-of-type(7) {
    width: 2.5%;
  }
}

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

.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-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 */