@charset "UTF-8";
:root {
  --white: #fff;
  --white-smoke: #f7f7f7;
  --pale-gray: #D9D9D9;
  --gray: #b2b2b2;
  --black: #000;
  --light-blue: #53BAEA;
  --dark-blue: #0C3388;
  --primary-color: var(--dark-blue);
  --secondary-color: var(--light-blue);
  --base-gray-color: var(--white-smoke);
  --base-text-color: var(--black);
  --base-border-color: var(--gray);
}

@font-face {
  font-family: "TT Norms";
  font-weight: 300;
  src: url("../fonts/TTNorms-Light.otf") format("opentype");
}
/*! kiso.css v1.2.4 | 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.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  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(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* 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;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  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):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

: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;
  text-decoration-inset: auto;
  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) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * 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;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* 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(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

: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:lang(en)) {
  /* 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], [type=submit i], [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], [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 / 0.3);
}

: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;
}

/*------------------------------------------------------------
  settings
------------------------------------------------------------*/
@view-transition {
  navigation: auto;
}
html {
  font-size: 2.66666666vw;
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 0.69444444vw;
  }
}
@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}
@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}
@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}
@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
html[lang=ja] body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
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);
}

button, select {
  cursor: pointer;
}

button {
  border: none;
}

picture, video, iframe {
  display: block;
}

figcaption {
  text-align: center;
}
th {
  text-align: left;
}

caption {
  caption-side: bottom;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.6rem;
    font-size: 1.2rem;
  }
}
caption p + p {
  margin-top: 1rem;
}
caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ol {
  padding-left: 1.8em;
  list-style: decimal;
}

li::marker {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  li::marker {
    font-size: 1.8rem;
  }
}

@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;
  }
}
.se {
  pointer-events: none;
}
.se a {
  pointer-events: none;
}

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

.fade {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 350ms, 1750ms;
  transition-timing-function: ease-in, cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade.--medium {
  transition-duration: 700ms;
}
.fade.--large {
  transition-duration: 1400ms;
}

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

.--up {
  transform: translate(0, 3rem);
  transition-timing-function: ease-in, cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 1024px) {
  .--up {
    transform: translate(0, 6rem);
  }
}
.--up.--medium {
  transform: translate(0, 4.5rem);
  transition-duration: 700ms, 2100ms;
}
@media screen and (min-width: 1024px) {
  .--up.--medium {
    transform: translate(0, 8rem);
  }
}
.--up.--large {
  transform: translate(0, 6rem);
  transition-duration: 1400ms, 2450ms;
}
@media screen and (min-width: 1024px) {
  .--up.--large {
    transform: translate(0, 10rem);
  }
}

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 14.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 7, 2026
 */
: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);
  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-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}
.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 */
/* customize */
.swiper {
  width: 100%;
}

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

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

.l-center, .l-center--medium, .l-center--small {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 600px) {
  .l-center, .l-center--medium, .l-center--small {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-center, .l-center--medium, .l-center--small {
    max-width: 130rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: 110rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-center--medium {
    max-width: 150rem;
  }
}
/* ---------------------------
  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.8s;
}
.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, rgb(30, 38, 120), rgba(30, 38, 120, 0));
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .l-header .inner:before {
    height: 130%;
  }
}
.l-header .logo {
  display: grid;
  place-items: center;
  gap: 0.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 {
  transform: translate(0.7rem, 0);
  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: 0.2rem;
  position: relative;
  width: 7.4rem;
  height: 100%;
  padding-bottom: 0.4rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  transition: background 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@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: 0.6rem;
    width: 16rem;
    font-size: 1.4rem;
  }
}
.l-header a:nth-of-type(2):active:not(:disabled), .l-header a:nth-of-type(2):hover:not(:disabled), .l-header a:nth-of-type(3):active:not(:disabled), .l-header a:nth-of-type(3):hover:not(:disabled) {
  transition-duration: 0.8s;
}
.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: 0.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: 0.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):hover:not(:disabled), .l-header a:nth-of-type(2):focus-visible:not(:disabled), .l-header a:nth-of-type(2):active:not(:disabled) {
  background: #315BB6;
}
.l-header a:nth-of-type(2) svg {
  width: 2.2rem;
  height: auto;
  margin-top: 0.3rem;
  margin-bottom: 0.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: var(--secondary-color);
}
.l-header a:nth-of-type(3):hover:not(:disabled), .l-header a:nth-of-type(3):focus-visible:not(:disabled), .l-header a:nth-of-type(3):active:not(:disabled) {
  background: #72D2FF;
}
.l-header a:nth-of-type(3) svg {
  display: block;
  width: 1.6rem;
  height: auto;
}
.l-main {
  overflow: hidden;
  position: relative;
}
.is-scroll .l-application-button {
  opacity: 1;
  pointer-events: visible;
}
.l-application-button {
  opacity: 0;
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 100;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 600px) {
  .l-application-button {
    inset: auto 2rem 2rem auto;
  }
}
.l-application-button a {
  overflow: hidden;
  border-radius: 50%;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .l-application-button a {
    display: block;
    width: 18rem;
    height: 18rem;
  }
}
.l-application-button a:hover:not(:disabled), .l-application-button a:focus-visible:not(:disabled), .l-application-button a:active:not(:disabled) {
  opacity: 0.8;
  transition-duration: 0.8s;
}
.l-application-button a img {
  width: 100%;
}
.l-application-button button {
  position: absolute;
  inset: 10% auto auto 90%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid var(--primary-color);
  border-radius: 50%;
  background: var(--white);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .l-application-button button {
    inset: 14% auto auto 86%;
  }
}
.l-application-button button:hover:not(:disabled), .l-application-button button:focus-visible:not(:disabled), .l-application-button button:active:not(:disabled) {
  opacity: 0.7;
  transition-duration: 0.8s;
}
.l-application-button button:before, .l-application-button button:after {
  content: "";
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.4rem;
  height: 0.1rem;
  background: var(--primary-color);
}
.l-application-button button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-application-button button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: #1e2678;
}
@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 1s cubic-bezier(0.16, 1, 0.3, 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.8s;
}
.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: 0.6rem;
  width: fit-content;
  color: var(--white);
  font-size: 1.3rem;
  transition: color 1s cubic-bezier(0.16, 1, 0.3, 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.8s;
}
.l-footer .logo + a:active:not(:disabled) path, .l-footer .logo + a:hover:not(:disabled) path {
  fill: var(--secondary-color);
  transition-duration: 0.8s;
}
.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: 0.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 1s cubic-bezier(0.16, 1, 0.3, 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.8s;
}
.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 1s cubic-bezier(0.16, 1, 0.3, 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;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.ps-index .s-fv {
  position: relative;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div {
  opacity: 0;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(1) {
  transition-delay: 0.6s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(2) {
  transition-delay: 0.75s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(3) {
  transition-delay: 0.9s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(4) {
  transition-delay: 1.05s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(5) {
  transition-delay: 1.2s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(6) {
  transition-delay: 1.35s;
}
.ps-index .s-fv.is-in > div:nth-of-type(1) div:nth-of-type(7) {
  transition-delay: 1.5s;
}
.ps-index .s-fv h1 {
  position: absolute;
  inset: 26% auto auto 47%;
  transform: translate(-50%, -50%);
  width: 94%;
  margin: 0;
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv h1 {
    inset: 32% auto auto 24%;
    width: 48%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-fv h1 {
    inset: 30% auto auto 24%;
  }
}
.ps-index .s-fv h1 img {
  width: 400%;
  max-width: none;
  transform: scale(0.25);
  transform-origin: left center;
}
.ps-index .s-fv > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 14.7% 13.8% 13.7% 13.7% 13.8% 13.8% 16.5%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(1) {
    grid-template-columns: 14.7% 13.9% 13.8% 13.9% 13.9% 13.9% 16%;
  }
}
.ps-index .s-fv > div:nth-of-type(1) {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.ps-index .s-fv > div:nth-of-type(1) div {
  width: 100%;
  height: 100%;
  background: rgba(30, 38, 120, 0.8);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ps-index .s-fv > div:nth-of-type(2) {
  display: grid;
  position: absolute;
  inset: 84% auto auto 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.6rem;
    width: 100%;
    padding: 1rem 1.6rem 1.6rem;
    background: rgba(38, 96, 149, 0.6);
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 32% auto auto 78%;
    min-width: 31rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 32% auto auto 72%;
    min-width: 52rem;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 78%;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 79%;
  }
}
@media screen and (min-width: 1440px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 80%;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 81%;
  }
}
@media screen and (min-width: 1664px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 82%;
  }
}
@media screen and (min-width: 1792px) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 83%;
  }
}
@media screen and (min-width: ) {
  .ps-index .s-fv > div:nth-of-type(2) {
    inset: 29% auto auto 84%;
  }
}
.ps-index .s-fv > div:nth-of-type(2) a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 599px) {
  .ps-index .s-fv > div:nth-of-type(2) a {
    min-height: 4.4rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a {
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-fv > div:nth-of-type(2) a {
    padding: 1.8rem;
    font-size: 2rem;
  }
}
.ps-index .s-fv > div:nth-of-type(2) a:hover:not(:disabled), .ps-index .s-fv > div:nth-of-type(2) a:focus-visible:not(:disabled), .ps-index .s-fv > div:nth-of-type(2) a:active:not(:disabled) {
  color: rgba(255, 255, 255, 0.6);
  transition-duration: 0.8s;
}
.ps-index .s-fv > div:nth-of-type(2) a:hover:not(:disabled) svg, .ps-index .s-fv > div:nth-of-type(2) a:focus-visible:not(:disabled) svg, .ps-index .s-fv > div:nth-of-type(2) a:active:not(:disabled) svg {
  transform: translate(0.6rem, 0);
  transition-duration: 0.8s;
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(1) {
    margin-left: 6rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(1) {
    margin-left: 9rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(2) {
    margin-left: 4rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(2) {
    margin-left: 6rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(3) {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > div:nth-of-type(2) a:nth-of-type(3) {
    margin-left: 3rem;
  }
}
.ps-index .s-fv > div:nth-of-type(2) svg {
  width: 1.8rem;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-fv > div:nth-of-type(2) svg {
    width: 3rem;
  }
}
.ps-index .s-fv > picture {
  position: absolute;
  inset: 47% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 96%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-fv > picture {
    inset: 85% auto auto 50%;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-fv > picture {
    inset: 87% auto auto 50%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-fv > picture {
    inset: 88% auto auto 50%;
  }
}
.ps-index .s-fv > picture img {
  width: 100%;
}
.ps-index .s-news {
  position: relative;
  z-index: 1;
  margin-top: -5rem;
}
@media screen and (max-width: 599px) {
  .ps-index .s-news {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news {
    margin-top: -3.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news {
    margin-top: -3rem;
  }
}
.ps-index .s-news > div:nth-of-type(1) {
  display: none;
}
.ps-index .s-news > div:nth-of-type(3) {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  width: 3rem;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .ps-index .s-news > div:nth-of-type(3) {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    box-shadow: 0 0 3rem 0 rgba(12, 51, 136, 0.06);
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news > div:nth-of-type(3) {
    position: absolute;
    inset: 50% auto auto 88%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news > div:nth-of-type(3) {
    inset: 50% auto auto 87%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-news > div:nth-of-type(3) {
    inset: 50% auto auto 89.2%;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-news > div:nth-of-type(3) {
    inset: 50% auto auto 89.8%;
  }
}
@media screen and (min-width: 1440px) {
  .ps-index .s-news > div:nth-of-type(3) {
    inset: 50% auto auto 90.4%;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-news > div:nth-of-type(3) {
    inset: 50% auto auto 90.8%;
  }
}
.ps-index .s-news > div:nth-of-type(3) div {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .ps-index .s-news > div:nth-of-type(3) div:nth-of-type(1) {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news > div:nth-of-type(3) div:nth-of-type(1) {
    padding-top: 0.8rem;
  }
}
.ps-index .s-news > div:nth-of-type(3) div:nth-of-type(1) svg {
  transform: rotate(-90deg);
}
@media screen and (max-width: 599px) {
  .ps-index .s-news > div:nth-of-type(3) div:nth-of-type(2) {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news > div:nth-of-type(3) div:nth-of-type(2) {
    padding-bottom: 0.8rem;
  }
}
.ps-index .s-news > div:nth-of-type(3) div:nth-of-type(2) svg {
  transform: rotate(90deg);
}
.ps-index .s-news > div:nth-of-type(3) svg {
  width: 0.6rem;
}
.ps-index .s-news > div:nth-of-type(3) path {
  fill: var(--primary-color);
}
.c-componentArea__itemInner.c-innerContents {
  opacity: 0;
  transition: opacity .6s linear;
}
.c-componentArea__itemInner.c-innerContents:has(.swiper.swiper-initialized) {
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-NewsTopicsArea {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-NewsTopicsHead {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-NewsTopicsHead {
    display: grid;
    place-items: center;
    padding: 1rem;
    height: 100%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "TT Norms", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news .c-NewsTopicsHead {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-news .c-NewsTopicsHead {
    width: 9rem;
  }
}
.ps-index .s-news .c-NewsTopicsHead__ttl {
  display: none;
}
.ps-index .s-news .c-NewsTopicsHead p {
  position: relative;
  color: var(--primary-color);
}
.ps-index .s-news .c-NewsTopicsHead p:before {
  content: "News";
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: var(--white);
}
.ps-index .s-news .c-NewsTopicsBody {
  display: grid;
  height: 10rem;
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-NewsTopicsBody {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-NewsTopicsBody {
    grid-template-columns: 1fr auto;
    gap: 4rem;
    height: 6.4rem;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news .c-NewsTopicsBody {
    height: 6rem;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-news .c-NewsTopicsBody {
    gap: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-newsListWrapper {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}
.ps-index .s-news .c-newsListWrapper a {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.4rem;
  place-content: center start;
  min-height: 10rem;
  padding: 1rem;
  transition: background 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-newsListWrapper a {
    min-height: 6.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news .c-newsListWrapper a {
    gap: 0.6rem;
    min-height: 6rem;
    padding: 1rem 2rem;
  }
}
.ps-index .s-news .c-newsListWrapper a:hover:not(:disabled), .ps-index .s-news .c-newsListWrapper a:focus-visible:not(:disabled), .ps-index .s-news .c-newsListWrapper a:active:not(:disabled) {
  background: rgba(255, 255, 255, 0.6);
  transition-duration: 0.8s;
}
.ps-index .s-news .c-newsListDate {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "TT Norms", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.ps-index .s-news .c-newsListCat {
  padding: 0.2rem 1rem;
  border-radius: calc(infinity * 1rem);
  background: #F0F3FA;
  color: var(--primary-color);
  font-size: 1.1rem;
}
.ps-index .s-news h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 600px) {
  .ps-index .s-news h3 {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 1023px) {
  .ps-index .s-news h3 {
    grid-row: 2/3;
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-newsBtnArea {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.ps-index .s-news .c-newsBtnArea a {
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
  height: 100%;
  padding: 1rem;
  color: var(--primary-color);
  font-size: 0;
  transition: background 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-newsBtnArea a {
    background: var(--primary-color);
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-news .c-newsBtnArea a {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-newsBtnArea a:hover:not(:disabled), .ps-index .s-news .c-newsBtnArea a:focus-visible:not(:disabled), .ps-index .s-news .c-newsBtnArea a:active:not(:disabled) {
    background: #315BB6;
    transition-duration: 0.8s;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-newsBtnArea a:hover:not(:disabled), .ps-index .s-news .c-newsBtnArea a:focus-visible:not(:disabled), .ps-index .s-news .c-newsBtnArea a:active:not(:disabled) {
    background: rgba(255, 255, 255, 0.6);
  }
}
.ps-index .s-news .c-newsBtnArea a:hover:not(:disabled):after, .ps-index .s-news .c-newsBtnArea a:focus-visible:not(:disabled):after, .ps-index .s-news .c-newsBtnArea a:active:not(:disabled):after {
  transform: translate(0.6rem, 0);
  transition-duration: 0.8s;
}
@media screen and (max-width: 599px) {
  .ps-index .s-news .c-newsBtnArea a:before {
    content: "News";
    display: block;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 300;
    font-family: "TT Norms", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-newsBtnArea a:before {
    content: "";
    display: block;
    position: absolute;
    inset: 50% auto auto 0;
    transform: translate(-50%, -50%);
    width: 0.1rem;
    height: 80%;
    background: rgba(12, 51, 136, 0.1);
  }
}
.ps-index .s-news .c-newsBtnArea a:after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1rem;
  background: url("../images/common/icon-arrow--white.svg") center/100% no-repeat;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 600px) {
  .ps-index .s-news .c-newsBtnArea a:after {
    background-image: url("../images/common/icon-arrow--dark-blue.svg");
  }
}
.ps-index .p-two-lang-heading {
  display: grid;
  margin-bottom: 4rem;
}
.ps-index .p-two-lang-heading .en {
  transform: translate(-0.4rem, 0);
  width: fit-content;
  background: linear-gradient(to right, #1E2678, #009FD0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 5.6rem;
  font-weight: 300;
  font-family: "TT Norms", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .ps-index .p-two-lang-heading .en {
    font-size: 11rem;
  }
}
.ps-index .p-two-lang-heading .ja {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1024px) {
  .ps-index .p-two-lang-heading .ja {
    font-size: 2.2rem;
  }
}
.ps-index .p-two-lang-heading.--white .en {
  background-image: linear-gradient(to right, var(--white), var(--white));
}
.ps-index .p-two-lang-heading.--white .ja {
  color: var(--white);
}
.ps-index .s-faculty {
  max-width: 190rem;
}
@media screen and (min-width: 1440px) {
  .ps-index .s-faculty {
    padding-right: 10rem;
    padding-left: 10rem;
  }
}
.ps-index .s-faculty > section {
  position: relative;
}
.ps-index .s-faculty > section:has(+ section) {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty > section:has(+ section) {
    margin-bottom: 8rem;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) h3 span:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) h3 span:nth-of-type(2) {
    left: 0;
    transform: none;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(1) {
  inset: 22% auto auto 45%;
  width: 103%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(1) {
    width: 63%;
    inset: 48% auto auto 33%;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(2) {
  inset: 53% auto auto 70%;
  width: 38%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(2) {
    width: 22%;
    inset: 18% auto auto 86%;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(3) {
  inset: 57% auto auto 25%;
  width: 28%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(3) {
    width: 16%;
    inset: 19% auto auto 63%;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(4) {
  inset: 69% auto auto 51%;
  width: 32%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) figure:nth-of-type(4) {
    inset: 53% auto auto 80%;
    width: 19%;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) div {
  inset: 85% auto auto 59%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 82% auto auto 82%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 85%;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 86%;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 87%;
  }
}
@media screen and (min-width: 1664px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 88%;
  }
}
@media screen and (min-width: 1792px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 89%;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty > section:nth-of-type(1) div {
    inset: 84% auto auto 86%;
  }
}
.ps-index .s-faculty > section:nth-of-type(1) div a {
  background: linear-gradient(to right, #F18D00, #FED600);
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) h3 span:nth-of-type(1) {
    inset: 0 0 auto auto;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-faculty > section:nth-of-type(2) h3 span:nth-of-type(2) {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) h3 span:nth-of-type(2) {
    right: 0;
    left: auto;
    transform: none;
  }
}
.ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(1) {
  inset: 18% auto auto 58%;
  width: 98%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(1) {
    inset: 41% auto auto 67%;
    width: 56%;
  }
}
.ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(2) {
  inset: 49% auto auto 74%;
  width: 38%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(2) {
    inset: 15% auto auto 32%;
    width: 22%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(2) {
    inset: 18% auto auto 32%;
  }
}
.ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(3) {
  inset: 57% auto auto 29%;
  width: 46%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(3) {
    inset: 42% auto auto 21%;
    width: 26%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty > section:nth-of-type(2) figure:nth-of-type(3) {
    inset: 48% auto auto 21%;
  }
}
.ps-index .s-faculty > section:nth-of-type(2) div {
  inset: 81% auto auto 40%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 77% auto auto 18%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 80% auto auto 15%;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 84% auto auto 14%;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 84% auto auto 13%;
  }
}
@media screen and (min-width: 1664px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 84% auto auto 12%;
  }
}
@media screen and (min-width: 1792px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 84% auto auto 11%;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty > section:nth-of-type(2) div {
    inset: 84% auto auto 14%;
  }
}
.ps-index .s-faculty > section:nth-of-type(2) div a {
  background: linear-gradient(to right, #173265, #1B77C7);
}
.ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(1) {
  inset: 34% auto auto 47%;
  width: 111%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(1) {
    inset: 44% auto auto 26%;
    width: 68%;
  }
}
.ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(2) {
  inset: 10% auto auto 39%;
  width: 40%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(2) {
    inset: 19% auto auto 70%;
    width: 23%;
  }
}
.ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(3) {
  inset: 15% auto auto 80%;
  width: 34%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(3) {
    inset: 51% auto auto 86%;
    width: 20%;
  }
}
.ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(4) {
  inset: 63% auto auto 66%;
  width: 26%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(3) figure:nth-of-type(4) {
    inset: 13% auto auto 20%;
    width: 10%;
  }
}
@media screen and (max-width: 599px) {
  .ps-index .s-faculty > section:nth-of-type(3) h3 span:nth-of-type(2) {
    font-size: 6.2rem;
  }
}
.ps-index .s-faculty > section:nth-of-type(3) div {
  inset: 80% auto auto 59%;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 80% auto auto 82%;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 85%;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 86%;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 87%;
  }
}
@media screen and (min-width: 1664px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 88%;
  }
}
@media screen and (min-width: 1792px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 89%;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty > section:nth-of-type(3) div {
    inset: 84% auto auto 86%;
  }
}
.ps-index .s-faculty > section:nth-of-type(3) div a {
  background: linear-gradient(to right, #07510C, #058F33);
}
.ps-index .s-faculty h3 span:nth-of-type(1) {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 4.6rem;
  padding: 4.4rem 0 4rem;
  background: #1C1C3B;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty h3 span:nth-of-type(1) {
    width: 8rem;
    padding: 6.4rem 0 6rem;
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty h3 span:nth-of-type(1) {
    width: 11rem;
    padding: 8.4rem 0 8rem;
    font-size: 5.2rem;
  }
}
.ps-index .s-faculty h3 span:nth-of-type(2) {
  position: absolute;
  inset: auto auto 0 50%;
  transform: translate(-50%, 0);
  color: rgba(255, 255, 255, 0.2);
  font-size: 5.7rem;
  font-weight: 300;
  font-family: "TT Norms", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 0.8;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    bottom: -0.2%;
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 9.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 12.6rem;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 13.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 13.2rem;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 14.2rem;
  }
}
@media screen and (min-width: 1664px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 15.6rem;
  }
}
@media screen and (min-width: 1792px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 17rem;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty h3 span:nth-of-type(2) {
    font-size: 18.1rem;
  }
}
.ps-index .s-faculty figure {
  position: absolute;
  transform: translate(-50%, -50%);
}
.ps-index .s-faculty div {
  display: grid;
  gap: 0.4rem;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty div {
    gap: 0.6rem;
  }
}
.ps-index .s-faculty div a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  width: 30rem;
  height: 5.4rem;
  padding: 0 3rem 0.1rem 4rem;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty div a {
    width: 42rem;
    height: 6.6rem;
    padding: 0 4.8rem 0.1rem 6rem;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty div a {
    width: 60rem;
    height: 9.2rem;
    padding: 0 6.8rem 0.1rem 8rem;
    font-size: 3rem;
  }
}
.ps-index .s-faculty div a:hover:not(:disabled), .ps-index .s-faculty div a:focus-visible:not(:disabled), .ps-index .s-faculty div a:active:not(:disabled) {
  opacity: 0.8;
  transition-duration: 0.8s;
}
.ps-index .s-faculty div a:hover:not(:disabled) svg, .ps-index .s-faculty div a:focus-visible:not(:disabled) svg, .ps-index .s-faculty div a:active:not(:disabled) svg {
  transform: translate(0.6rem, 0);
  transition-duration: 0.8s;
}
.ps-index .s-faculty div a:before {
  content: "";
  display: block;
  position: absolute;
  inset: 50% auto auto 78%;
  transform: translate(-50%, -50%) skew(-29deg);
  width: 0.1rem;
  height: 80%;
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty div a:before {
    inset: 50% auto auto 76%;
  }
}
.ps-index .s-faculty svg {
  width: 2.2rem;
  margin-top: -0.1rem;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-faculty svg {
    width: 2.8rem;
    margin-top: -0.2rem;
  }
}
@media screen and (min-width: 1920px) {
  .ps-index .s-faculty svg {
    width: 4rem;
    margin-top: -0.3rem;
  }
}
.ps-index .s-banners {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: var(--base-gray-color);
}
@media screen and (min-width: 600px) {
  .ps-index .s-banners {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-banners {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.ps-index .s-banners > div {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .ps-index .s-banners > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
  }
}
.ps-index .s-banners a {
  overflow: hidden;
  position: relative;
}
.ps-index .s-banners a:hover:not(:disabled) picture, .ps-index .s-banners a:focus-visible:not(:disabled) picture, .ps-index .s-banners a:active:not(:disabled) picture {
  transform: scale(1.06);
  transition-duration: 0.8s;
}
.ps-index .s-banners picture {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ps-index .s-features {
  position: relative;
}
.ps-index .s-features > div {
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 160rem;
}
@media screen and (max-width: 1023px) {
  .ps-index .s-features > div {
    padding-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features > div {
    padding-top: 6rem;
  }
}
@media screen and (min-width: 1536px) {
  .ps-index .s-features > div {
    padding-top: 14rem;
  }
}
@media screen and (min-width: 1366px) {
  .ps-index .s-features h2 {
    margin-bottom: 8rem;
  }
}
.ps-index .s-features article:has(+ article) a {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.ps-index .s-features a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 0.6rem;
  position: relative;
  padding: 1.8rem 1rem 1.8rem 1.8rem;
  background: rgba(8, 8, 8, 0.16);
  transition: background 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 600px) {
  .ps-index .s-features a {
    width: 37rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features a {
    width: 46rem;
    padding: 2.2rem 2rem 2.2rem 2.2rem;
  }
}
.ps-index .s-features a:hover:not(:disabled), .ps-index .s-features a:focus-visible:not(:disabled), .ps-index .s-features a:active:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  transition-duration: 0.8s;
}
.ps-index .s-features a:hover:not(:disabled) svg, .ps-index .s-features a:focus-visible:not(:disabled) svg, .ps-index .s-features a:active:not(:disabled) svg {
  transform: translate(0.6rem, 0);
  transition-duration: 0.8s;
}
.ps-index .s-features h3 {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0 0.6rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features h3 {
    grid-template-columns: 2rem auto 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
  }
}
.ps-index .s-features h3 span:nth-of-type(2) {
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .ps-index .s-features h3 span:nth-of-type(2) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features h3 span:nth-of-type(2) {
    font-size: 1.2rem;
  }
}
.ps-index .s-features img {
  transform: translate(0, 0.1rem);
}
.ps-index .s-features p {
  color: var(--white);
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features p {
    font-size: 1.5rem;
  }
}
.ps-index .s-features svg {
  grid-row: 1/3;
  grid-column: 2/3;
  width: 2.6rem;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-features svg {
    width: 3.2rem;
  }
}
.ps-index .s-stories {
  overflow: hidden;
}
.ps-index .s-stories .swiper-slide {
  overflow: hidden;
  width: 12rem;
}
@media screen and (min-width: 600px) {
  .ps-index .s-stories .swiper-slide {
    width: 18rem;
  }
}
@media screen and (min-width: 1024px) {
  .ps-index .s-stories .swiper-slide {
    width: 32rem;
  }
}
.ps-index .s-stories .swiper-slide:active:not(:disabled) picture, .ps-index .s-stories .swiper-slide:hover:not(:disabled) picture {
  transform: scale(1.06);
  transition-duration: 0.8s;
}
.ps-index .s-stories .swiper-slide picture {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ps-index .s-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.3rem;
  font-weight: 700;
  transition: color 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-stories > a {
    font-size: 1.6rem;
  }
}
.ps-index .s-stories > a:hover:not(:disabled), .ps-index .s-stories > a:focus-visible:not(:disabled), .ps-index .s-stories > a:active:not(:disabled) {
  transition-duration: 0.8s;
}
.ps-index .s-stories > a:hover:not(:disabled) span, .ps-index .s-stories > a:focus-visible:not(:disabled) span, .ps-index .s-stories > a:active:not(:disabled) span {
  opacity: 0.7;
  transition-duration: 0.8s;
}
.ps-index .s-stories > a:hover:not(:disabled) svg, .ps-index .s-stories > a:focus-visible:not(:disabled) svg, .ps-index .s-stories > a:active:not(:disabled) svg {
  transform: translate(0.6rem, 0);
  transition-duration: 0.8s;
}
.ps-index .s-stories > a span {
  position: relative;
  border-bottom: 0.1rem solid var(--primary-color);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ps-index .s-stories svg {
  width: 2rem;
  height: auto;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 1024px) {
  .ps-index .s-stories svg {
    width: 2.6rem;
  }
}

/*------------------------------------------------------------
  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-grid {
  display: grid !important;
}

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

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

.u-gap-0 {
  gap: 0;
}

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

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

.u-zi-1 {
  z-index: 1;
}

.u-zi-2 {
  z-index: 2;
}

.u-zi-3 {
  z-index: 3;
}

.u-zi-4 {
  z-index: 4;
}

.u-zi-5 {
  z-index: 5;
}

.u-zi-10 {
  z-index: 10;
}

.u-zi-100 {
  z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-wid-fit-content {
  width: fit-content;
}

.u-wid-100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 599px) {
  .u-sm-mr-auto {
    margin-right: auto;
  }
}

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

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

@media screen and (max-width: 599px) {
  .u-sm-ml-auto {
    margin-left: auto;
  }
}

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

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

.u-mt-xxxxs {
  margin-top: 0.25rem !important;
}
@media screen and (min-width: 1024px) {
  .u-mt-xxxxs {
    margin-top: 0.5rem !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: 6rem !important;
}
@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 12rem !important;
  }
}

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

.u-mb-xxxxs {
  margin-bottom: 0.25rem !important;
}
@media screen and (min-width: 1024px) {
  .u-mb-xxxxs {
    margin-bottom: 0.5rem !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: 6rem !important;
}
@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 12rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (min-width: 1024px) {
  .u-mb-xl {
    margin-bottom: 16rem !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: 6rem !important;
}
@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 12rem !important;
  }
}

.u-pt-xl {
  padding-top: 8rem !important;
}
@media screen and (min-width: 1024px) {
  .u-pt-xl {
    padding-top: 16rem !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: 6rem !important;
}
@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 12rem !important;
  }
}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 599px) {
  .u-sm-col-white {
    color: var(--white);
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .u-md-col-white {
    color: var(--white);
  }
}

@media screen and (min-width: 1024px) {
  .u-lg-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-col-base-text {
  color: var(--base-text-color);
}

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

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

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

.u-fs-small {
  font-size: 0.92857142em;
}
@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: 0.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-0 {
  line-height: 0;
}

.u-lh-0_1 {
  line-height: 0.1;
}

.u-lh-0_2 {
  line-height: 0.2;
}

.u-lh-0_3 {
  line-height: 0.3;
}

.u-lh-0_4 {
  line-height: 0.4;
}

.u-lh-0_5 {
  line-height: 0.5;
}

.u-lh-0_6 {
  line-height: 0.6;
}

.u-lh-0_7 {
  line-height: 0.7;
}

.u-lh-0_8 {
  line-height: 0.8;
}

.u-lh-0_9 {
  line-height: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

.u-lh-2_1 {
  line-height: 2.1;
}

.u-lh-2_2 {
  line-height: 2.2;
}

.u-lh-2_3 {
  line-height: 2.3;
}

.u-lh-2_4 {
  line-height: 2.4;
}

.u-lh-2_5 {
  line-height: 2.5;
}

.u-lh-2_6 {
  line-height: 2.6;
}

.u-lh-2_7 {
  line-height: 2.7;
}

.u-lh-2_8 {
  line-height: 2.8;
}

.u-lh-2_9 {
  line-height: 2.9;
}

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

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

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

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

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

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

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

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

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

.u-ls-xxl {
  letter-spacing: 0.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;
}

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

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

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

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

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

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

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

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

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

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

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

.u-va-top {
  vertical-align: top;
}

.u-va-middle {
  vertical-align: middle;
}

.u-va-bottom {
  vertical-align: bottom;
}

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

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

.u-ellipsis, .u-ellipsis--four, .u-ellipsis--three, .u-ellipsis--two {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.u-ellipsis--two {
  -webkit-line-clamp: 2;
}
.u-ellipsis--three {
  -webkit-line-clamp: 3;
}
.u-ellipsis--four {
  -webkit-line-clamp: 4;
}

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