@charset "UTF-8";
/*! kiso.css v1.2.2 | 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;
  --light-gray: #EFF2F5;
  --pale-gray: #D9D9D9;
  --almost-black: #111;
  --black: #000;
  --light-blue: #5CE3FE;
  --blue: #0000FF;
  --deep-blue: #192991;
  --primary-color: var(--blue);
  --secondary-color: var(--light-gray);
  --base-gray-color: var(--pale-gray);
  --base-text-color: var(--almost-black);
  --sub-text-color: var(--black);
  --base-border-color: var(--pale-gray);
}

/*------------------------------------------------------------
  form parts
------------------------------------------------------------*/
/*
  input(not radio, checkbox, file, submit)、textarea、select
*/
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]):not([type="range"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
  display: grid;
  align-items: center;
  width: 100%;
  padding: 1.4rem 1.8rem;
  border: none;
  border-radius: 1.4rem;
  background: var(--secondary-color);
  box-shadow: none;
}

@media screen and (min-width: 1024px) {
  input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]):not([type="range"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
    padding: 2.6rem 3rem;
    border-radius: 2rem;
  }
}

input[type="date"],
input[type="datetime-local"],
input[type="time"] {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-date-and-time-value,
input[type="datetime-local"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
}

/*
  textarea
*/
textarea {
  form-sizing: content;
  height: 30rem;
}

/*
  placeholder
*/
input::placeholder, textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/*
  checkbox, radio
*/
.checkbox-label,
.radio-label {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1rem;
  position: relative;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .checkbox-label,
  .radio-label {
    gap: 1.2rem;
  }
}

.checkbox-label:active:not(:disabled) input[type="checkbox"],
.checkbox-label:active:not(:disabled) input[type="radio"], .checkbox-label:hover:not(:disabled) input[type="checkbox"],
.checkbox-label:hover:not(:disabled) input[type="radio"],
.radio-label:active:not(:disabled) input[type="checkbox"],
.radio-label:active:not(:disabled) input[type="radio"],
.radio-label:hover:not(:disabled) input[type="checkbox"],
.radio-label:hover:not(:disabled) input[type="radio"] {
  box-shadow: 0 0 0 0.4rem rgba(var(--primary-color--rgb), 0.4);
}

.checkbox-label:has(input[type="checkbox"]:disabled), .checkbox-label:has(input[type="radio"]:disabled),
.radio-label:has(input[type="checkbox"]:disabled),
.radio-label:has(input[type="radio"]:disabled) {
  opacity: .4;
  pointer-events: none;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: .4rem;
  background: var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  input[type="checkbox"],
  input[type="radio"] {
    width: 2.4rem;
    height: 2.4rem;
  }
}

input[type="checkbox"]:before,
input[type="radio"]:before {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--base-text-color);
}

input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
  opacity: 1;
}

input[type="checkbox"] + span,
input[type="radio"] + span {
  position: relative;
  transform: translate(0, 0.1rem);
  user-select: none;
}

input[type="checkbox"]:before {
  width: 100%;
  height: 100%;
  clip-path: polygon(12% 36%, 36% 64%, 88% 14%, 100% 26%, 36% 86%, 0 48%);
  transition: opacity .08s linear;
}

input[type="radio"]:before {
  width: 60%;
  height: 60%;
  transition: opacity .12s linear;
}

/*
  select
*/
.select-wrap {
  position: relative;
}

.select-wrap:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
  z-index: 1;
  width: 1.2rem;
  height: .8rem;
  background: var(--base-text-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .select-wrap:after {
    right: 3rem;
    width: 1.4rem;
    height: 1rem;
  }
}

.select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 3.4rem !important;
}

@media screen and (min-width: 1024px) {
  .select-wrap select {
    padding-right: 5rem !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.is-fixed {
  overflow: hidden;
}

body > picture {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

body > picture img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}

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 {
  color: var(--primary-color);
  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(--sub-text-color);
  transition-duration: 0.4s;
}

button, select {
  cursor: pointer;
}

button {
  border: none;
}

picture, video, iframe {
  display: block;
}

th {
  text-align: left;
}

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

.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);
}

.--right {
  transform: translate(-1.6rem, 0);
  transition-timing-function: ease-in, cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.is-in .--right, .is-in.--right {
  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;
}

.la span, .la path {
  display: inline-block;
}

.la span:nth-child(1), .la path:nth-child(1) {
  --nth-child: 1;
}

.la span:nth-child(2), .la path:nth-child(2) {
  --nth-child: 2;
}

.la span:nth-child(3), .la path:nth-child(3) {
  --nth-child: 3;
}

.la span:nth-child(4), .la path:nth-child(4) {
  --nth-child: 4;
}

.la span:nth-child(5), .la path:nth-child(5) {
  --nth-child: 5;
}

.la span:nth-child(6), .la path:nth-child(6) {
  --nth-child: 6;
}

.la span:nth-child(7), .la path:nth-child(7) {
  --nth-child: 7;
}

.la span:nth-child(8), .la path:nth-child(8) {
  --nth-child: 8;
}

.la span:nth-child(9), .la path:nth-child(9) {
  --nth-child: 9;
}

.la span:nth-child(10), .la path:nth-child(10) {
  --nth-child: 10;
}

.la span:nth-child(11), .la path:nth-child(11) {
  --nth-child: 11;
}

.la span:nth-child(12), .la path:nth-child(12) {
  --nth-child: 12;
}

.la span:nth-child(13), .la path:nth-child(13) {
  --nth-child: 13;
}

.la span:nth-child(14), .la path:nth-child(14) {
  --nth-child: 14;
}

.la span:nth-child(15), .la path:nth-child(15) {
  --nth-child: 15;
}

.la span:nth-child(16), .la path:nth-child(16) {
  --nth-child: 16;
}

.la span:nth-child(17), .la path:nth-child(17) {
  --nth-child: 17;
}

.la span:nth-child(18), .la path:nth-child(18) {
  --nth-child: 18;
}

.la span:nth-child(19), .la path:nth-child(19) {
  --nth-child: 19;
}

.la span:nth-child(20), .la path:nth-child(20) {
  --nth-child: 20;
}

.la span:nth-child(21), .la path:nth-child(21) {
  --nth-child: 21;
}

.la span:nth-child(22), .la path:nth-child(22) {
  --nth-child: 22;
}

.la span:nth-child(23), .la path:nth-child(23) {
  --nth-child: 23;
}

.la span:nth-child(24), .la path:nth-child(24) {
  --nth-child: 24;
}

.la span:nth-child(25), .la path:nth-child(25) {
  --nth-child: 25;
}

.la span:nth-child(26), .la path:nth-child(26) {
  --nth-child: 26;
}

.la span:nth-child(27), .la path:nth-child(27) {
  --nth-child: 27;
}

.la span:nth-child(28), .la path:nth-child(28) {
  --nth-child: 28;
}

.la span:nth-child(29), .la path:nth-child(29) {
  --nth-child: 29;
}

.la span:nth-child(30), .la path:nth-child(30) {
  --nth-child: 30;
}

.la span:nth-child(31), .la path:nth-child(31) {
  --nth-child: 31;
}

.la span:nth-child(32), .la path:nth-child(32) {
  --nth-child: 32;
}

.la span:nth-child(33), .la path:nth-child(33) {
  --nth-child: 33;
}

.la span:nth-child(34), .la path:nth-child(34) {
  --nth-child: 34;
}

.la span:nth-child(35), .la path:nth-child(35) {
  --nth-child: 35;
}

.la span:nth-child(36), .la path:nth-child(36) {
  --nth-child: 36;
}

.la span:nth-child(37), .la path:nth-child(37) {
  --nth-child: 37;
}

.la span:nth-child(38), .la path:nth-child(38) {
  --nth-child: 38;
}

.la span:nth-child(39), .la path:nth-child(39) {
  --nth-child: 39;
}

.la span:nth-child(40), .la path:nth-child(40) {
  --nth-child: 40;
}

.is-in.la span, .is-in.la path,
.is-in .la span,
.is-in .la path {
  animation: 300ms ease-in both letter-fade, 800ms ease both letter-slide-right;
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms);
}

.is-in.--delay--100 span, .is-in.--delay--100 path,
.is-in .--delay--100 span,
.is-in .--delay--100 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 100ms);
}

.is-in.--delay--200 span, .is-in.--delay--200 path,
.is-in .--delay--200 span,
.is-in .--delay--200 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 200ms);
}

.is-in.--delay--300 span, .is-in.--delay--300 path,
.is-in .--delay--300 span,
.is-in .--delay--300 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 300ms);
}

.is-in.--delay--400 span, .is-in.--delay--400 path,
.is-in .--delay--400 span,
.is-in .--delay--400 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 400ms);
}

.is-in.--delay--500 span, .is-in.--delay--500 path,
.is-in .--delay--500 span,
.is-in .--delay--500 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 500ms);
}

.is-in.--delay--600 span, .is-in.--delay--600 path,
.is-in .--delay--600 span,
.is-in .--delay--600 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 600ms);
}

.is-in.--delay--700 span, .is-in.--delay--700 path,
.is-in .--delay--700 span,
.is-in .--delay--700 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 700ms);
}

.is-in.--delay--800 span, .is-in.--delay--800 path,
.is-in .--delay--800 span,
.is-in .--delay--800 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 800ms);
}

.is-in.--delay--900 span, .is-in.--delay--900 path,
.is-in .--delay--900 span,
.is-in .--delay--900 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 900ms);
}

.is-in.--delay--1000 span, .is-in.--delay--1000 path,
.is-in .--delay--1000 span,
.is-in .--delay--1000 path {
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + var(--nth-child) * var(--nth-child) / 2 * 1ms - 1 / 2 * 1ms + 1000ms);
}

@keyframes letter-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes letter-slide-right {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.glass-effect {
  position: relative;
  isolation: isolate;
}

/* Backdrop blur and distortion layer */
.glass-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 1rem;
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
  isolation: isolate;
  pointer-events: none;
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  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-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: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  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;
  fill: currentColor;
  pointer-events: none;
}

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

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

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

.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

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

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

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

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

.swiper-horizontal .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(0deg);
}

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

.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  top: var(--swiper-navigation-sides-offset, 4px);
  bottom: auto;
}

.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(-90deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}

.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(90deg);
}

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

.swiper-pagination {
  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;
  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-thumbs .swiper-slide-thumb-active {
  /* Styles for active thumb slide */
}

.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;
  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;
  backface-visibility: hidden;
}

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

.swiper-flip .swiper-slide {
  pointer-events: none;
  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;
  backface-visibility: hidden;
}

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

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

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

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

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

.swiper-pagination-bullet {
  opacity: 1;
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem !important;
  margin-left: 0.6rem !important;
  background: var(--white);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.swiper-button-prev,
.swiper-button-next {
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  inset: auto;
  width: 4rem;
  height: 4rem;
  margin: 0;
  background: var(--white);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: auto;
  height: auto;
}

.swiper-button-prev:active:not(:disabled) img, .swiper-button-prev:active:not(:disabled) svg, .swiper-button-prev:hover:not(:disabled) img, .swiper-button-prev:hover:not(:disabled) svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation--left;
}

.swiper-button-prev img, .swiper-button-prev svg {
  transform: scale(-1, 1);
}

.swiper-button-next:active:not(:disabled) img, .swiper-button-next:active:not(:disabled) svg, .swiper-button-next:hover:not(:disabled) img, .swiper-button-next:hover:not(:disabled) svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

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

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

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/* customize */
.goverlay {
  background: rgba(0, 0, 0, 0.6) !important;
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
}

.gcontainer {
  overflow: visible !important;
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
}

.gslider {
  overflow: visible !important;
}

.gslide-media {
  box-shadow: none !important;
}

.gslide-media img {
  box-shadow: 0 0.6rem 1rem 0 rgba(0, 0, 0, 0.2);
}

.gslide-inline {
  display: block !important;
  max-height: none !important;
  padding: 5rem 4rem 3rem;
  background: none !important;
  box-shadow: none !important;
}

@media screen and (min-width: 1024px) {
  .gslide-inline {
    padding: 6rem;
  }
}

.ginlined-content {
  overflow: visible !important;
}

.gclose svg,
.gprev svg,
.gnext svg {
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.gclose:active:not(:disabled) svg, .gclose:hover:not(:disabled) svg,
.gprev:active:not(:disabled) svg,
.gprev:hover:not(:disabled) svg,
.gnext:active:not(:disabled) svg,
.gnext:hover:not(:disabled) svg {
  opacity: .7;
  transition-duration: 0.25s;
}

.gclose {
  opacity: 1 !important;
  background: none !important;
  top: 1rem !important;
  right: 1rem !important;
  width: 5rem !important;
  height: 5rem !important;
}

@media screen and (min-width: 600px) {
  .gclose {
    top: 2rem !important;
    right: 2rem !important;
  }
}

.gclose svg {
  width: 1.6rem !important;
}

@media screen and (min-width: 1024px) {
  .gclose svg {
    width: 2rem !important;
  }
}

.gclose path {
  fill: var(--white) !important;
}

.gprev,
.gnext {
  top: 50% !important;
  transform: translate(0, -50%);
  background: none !important;
}

.gprev svg,
.gnext svg {
  width: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .gprev svg,
  .gnext svg {
    width: 2rem;
  }
}

.gprev path,
.gnext path {
  fill: none !important;
}

.gprev {
  left: 0 !important;
}

.gprev svg {
  transform: scale(-1, 1);
}

.gnext {
  right: 0 !important;
}

:root {
  --plyr-color-main: var(--primary-color);
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-container, .l-container--xxs, .l-container--xs, .l-container--small, .l-container--medium {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

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

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

.l-container--xxs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.l-container--xs {
  padding-top: 2.66667rem;
  padding-bottom: 2.66667rem;
}

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

.l-container--small {
  padding-top: 5.33333rem;
  padding-bottom: 5.33333rem;
}

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

.l-container--medium {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

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

.l-container.--pt-0, .--pt-0.l-container--xxs, .--pt-0.l-container--xs, .--pt-0.l-container--small, .--pt-0.l-container--medium {
  padding-top: 0;
}

.l-container.--pb-0, .--pb-0.l-container--xxs, .--pb-0.l-container--xs, .--pb-0.l-container--small, .--pb-0.l-container--medium {
  padding-bottom: 0;
}

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

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

@media screen and (min-width: 1024px) {
  .l-center, .l-center--small, .l-center--medium {
    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);
  }
}

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

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 300;
  width: calc(100% - 2.4rem);
  pointer-events: none;
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 7rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
}

.l-header .inner > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
}

@media screen and (max-width: 599px) {
  .l-header .inner > div:nth-of-type(2) {
    position: fixed;
    bottom: 1.2rem;
    left: 1.2rem;
    width: calc(100% - 2.4rem);
  }
}

@media screen and (min-width: 600px) {
  .l-header .inner > div:nth-of-type(2) {
    margin-right: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-header .inner > div:nth-of-type(2) {
    margin-right: .5rem;
  }
}

.l-header .logo {
  display: grid;
  grid-template-columns: repeat(2, auto);
  place-items: center;
  gap: 1rem;
  position: relative;
  transform-origin: left center;
  margin-left: 1.4rem;
  margin-right: auto;
  line-height: 1;
  pointer-events: visible;
}

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

.l-header .logo img, .l-header .logo svg {
  width: 10rem;
  height: auto;
}

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

.l-header .logo span {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
}

@media screen and (min-width: 1024px) {
  .l-header .logo span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .l-header .menu {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .l-header .menu {
    display: flex;
    justify-content: space-between;
    width: 37%;
    margin-right: 3%;
  }
}

@media screen and (min-width: 1024px) {
  .l-header .menu {
    width: 32%;
  }
}

@media screen and (min-width: 1280px) {
  .l-header .menu {
    width: 26%;
    max-width: 38rem;
    margin-right: 4%;
  }
}

.l-header .menu a {
  font-weight: 500;
  pointer-events: visible;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.l-header .button {
  grid-template-columns: none;
  place-items: center;
  gap: 0;
  width: 100%;
  min-width: auto;
  min-height: 5rem;
  margin-left: 0;
  padding: 0;
  border-radius: .6rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.4;
  text-align: center;
  pointer-events: visible;
}

@media screen and (min-width: 600px) {
  .l-header .button {
    width: 11rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-header .button {
    width: 16rem;
    min-height: 6rem;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-header .button {
    width: 20rem;
    font-size: 1.4rem;
  }
}

.l-header .button:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover-off;
}

.l-header .button:nth-of-type(2):after {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--deep-blue);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover-off;
}

.l-menu-button-wrap {
  position: fixed;
  inset: 2.2rem 2.4rem auto auto;
  z-index: 400;
  line-height: 0;
  transition: opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 600px) {
  .l-menu-button-wrap {
    opacity: 0;
    display: none;
    pointer-events: none;
  }
}

.is-scroll .l-menu-button-wrap {
  opacity: 1;
  pointer-events: visible;
}

.l-menu-button {
  position: relative;
  transform-origin: right top;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: .6rem;
  background: var(--white);
  transition: background 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --menu-bar-margin-top: calc(-50% - .3rem);
  --menu-bar-margin-middle: -50%;
  --menu-bar-margin-bottom: calc(-50% + .3rem);
  --menu-bar-angle: 30deg;
}

.is-menu-open .l-menu-button {
  background: var(--white);
  transition-duration: 0.35s;
}

.l-menu-button span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2rem;
  height: .1rem;
  border-radius: calc(infinity * .1rem);
  background: var(--primary-color);
  transition: background 0.35s ease;
}

.l-menu-button span:nth-child(1) {
  transform: translate(-50%, var(--menu-bar-margin-top));
}

.l-menu-button span:nth-child(2) {
  display: none;
  transform: translate(-50%, var(--menu-bar-margin-middle));
}

.l-menu-button span:nth-child(3) {
  transform: translate(-50%, var(--menu-bar-margin-bottom));
}

.l-menu-button.is-open span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-open span:nth-child(1) {
  animation-name: menu-bar-top-open;
}

.l-menu-button.is-open span:nth-child(2) {
  animation-name: menu-bar-middle-open;
}

.l-menu-button.is-open span:nth-child(3) {
  animation-name: menu-bar-bottom-open;
}

.l-menu-button.is-close span {
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-close span:nth-child(1) {
  animation-name: menu-bar-top-close;
}

.l-menu-button.is-close span:nth-child(2) {
  animation-name: menu-bar-middle-close;
}

.l-menu-button.is-close span:nth-child(3) {
  animation-name: menu-bar-bottom-close;
}

@keyframes menu-bar-top-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-middle-open {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-bar-bottom-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
}

@keyframes menu-bar-middle-close {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-bar-bottom-close {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
}

@keyframes menu-bar-top-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-bottom-open--lg {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top--lg)) rotate(0);
  }
}

@keyframes menu-bar-bottom-close--lg {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--lg)) rotate(0);
  }
}

.l-gnav {
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  pointer-events: none;
}

.is-in .l-gnav a {
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  .is-in .l-gnav a {
    pointer-events: visible;
  }
}

.l-gnav.is-open {
  -webkit-overflow-scrolling: touch;
  pointer-events: visible;
  animation: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-in;
}

@media screen and (min-width: 600px) {
  .l-gnav.is-open {
    animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both layer-slide-in;
  }
}

.l-gnav.is-open a {
  pointer-events: visible;
}

.l-gnav.is-close {
  -webkit-overflow-scrolling: auto;
  pointer-events: none;
  animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both gnav-out;
}

@media screen and (min-width: 600px) {
  .l-gnav.is-close {
    animation: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both layer-slide-out;
  }
}

@keyframes gnav-in {
  0% {
    opacity: 0;
    overflow: auto;
    z-index: 200;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
}

@keyframes gnav-out {
  0% {
    opacity: 1;
    overflow: auto;
    z-index: 200;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    overflow: hidden;
    z-index: -2;
    transform: scale(1.05);
  }
}

@keyframes layer-slide-in {
  0% {
    opacity: 0;
    z-index: 200;
    transform: translate(10%, 0);
  }
  20% {
    opacity: 0;
    z-index: 200;
  }
  100% {
    opacity: 1;
    z-index: 200;
    transform: translate(0%, 0);
  }
}

@keyframes layer-slide-out {
  0% {
    opacity: 1;
    z-index: 200;
    transform: translate(0%, 0);
  }
  80% {
    opacity: 0;
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -2;
    transform: translate(10%, 0);
  }
}

.l-gnav .gnav-inner {
  display: grid;
  gap: 6rem;
  position: relative;
  padding: 10rem 3rem 16rem;
}

.l-gnav .gnav-inner > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
}

.l-gnav .button {
  grid-template-columns: none;
  place-items: center;
  gap: 0;
  width: 100%;
  min-width: auto;
  min-height: 8rem;
  padding: 0;
  border-radius: .6rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.4;
  text-align: center;
}

.l-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 3rem;
  padding-left: 1rem;
}

@media screen and (min-width: 1280px) {
  .l-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1366px) {
  .l-menu {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.l-menu > div > a, .l-menu > div > span {
  display: grid;
  position: relative;
  width: fit-content;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-menu > div > a:active:not(:disabled), .l-menu > div > a:hover:not(:disabled), .l-menu > div > span:active:not(:disabled), .l-menu > div > span:hover:not(:disabled) {
  color: var(--primary-color);
  transition-duration: 0.4s;
}

.l-menu > div > a:before, .l-menu > div > span:before {
  content: '';
  display: block;
  position: absolute;
  inset: -.6rem auto auto -1rem;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 1rem;
  height: 1.8rem;
  background: var(--primary-color);
}

@media screen and (max-width: 1279px) {
  .l-menu > div:nth-of-type(5) {
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1280px) {
  .l-menu > div:nth-of-type(5) {
    grid-column: 2 / 4;
  }
}

@media screen and (min-width: 1366px) {
  .l-menu > div:nth-of-type(5) {
    grid-column: auto;
  }
}

.l-menu > div div {
  display: grid;
  gap: 1.4rem;
}

.l-menu > div div a {
  width: fit-content;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.l-menu > div div a:active:not(:disabled), .l-menu > div div a:hover:not(:disabled) {
  color: var(--primary-color);
  transition-duration: 0.4s;
}

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

.l-fv {
  display: grid;
  position: relative;
}

@media screen and (max-width: 599px) {
  .l-fv {
    gap: 3rem;
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .l-fv {
    grid-template-columns: 54% 1fr;
    align-items: center;
    min-height: 26rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-fv {
    min-height: 44rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-fv {
    grid-template-columns: 56% 1fr;
    gap: 1%;
    min-height: 50rem;
  }
}

.s-about .l-fv figure:nth-of-type(2) {
  inset: 37% auto auto 28%;
}

@media screen and (min-width: 600px) {
  .s-about .l-fv figure:nth-of-type(2) {
    inset: 0 auto auto 34%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .l-fv figure:nth-of-type(2) {
    inset: 2% auto auto 28%;
  }
}

.s-environment .l-fv figure:nth-of-type(2) {
  inset: 88% auto auto 96%;
}

@media screen and (min-width: 600px) {
  .s-environment .l-fv figure:nth-of-type(2) {
    inset: 92% auto auto 118%;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment .l-fv figure:nth-of-type(2) {
    inset: 114% auto auto 124%;
  }
}

.s-environment-training .l-fv figure:nth-of-type(2) {
  inset: 62% auto auto 18%;
}

@media screen and (min-width: 600px) {
  .s-environment-training .l-fv figure:nth-of-type(2) {
    inset: 66% auto auto 4%;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-training .l-fv figure:nth-of-type(2) {
    inset: 74% auto auto -4%;
  }
}

.s-environment-benefit-system .l-fv div:nth-of-type(2):before {
  inset: 92% auto auto 10%;
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.8s both slide--image;
}

@media screen and (min-width: 600px) {
  .s-environment-benefit-system .l-fv div:nth-of-type(2):before {
    inset: 142% auto auto -6%;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .l-fv div:nth-of-type(2):before {
    inset: 136% auto auto -20%;
  }
}

@media screen and (min-width: 1280px) {
  .s-environment-benefit-system .l-fv div:nth-of-type(2):before {
    inset: 130% auto auto -20%;
  }
}

.s-job-and-people .l-fv figure:nth-of-type(2) {
  inset: 69% auto auto 18%;
}

@media screen and (min-width: 600px) {
  .s-job-and-people .l-fv figure:nth-of-type(2) {
    inset: 66% auto auto 9%;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people .l-fv figure:nth-of-type(2) {
    inset: 80% auto auto -4%;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .l-fv {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .l-fv {
    padding-top: 13rem;
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-job-and-people-detail .l-fv {
    padding-top: 14rem;
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .l-fv > div:nth-of-type(1) {
    padding-top: 0;
  }
}

.s-job-and-people-detail .l-fv > div:nth-of-type(2):before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.8s both slide--image;
}

.s-job-and-people-detail .l-fv > div:nth-of-type(2):after {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.8s both slide--image;
}

.s-job-and-people-detail .l-fv h1 {
  color: var(--primary-color);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .l-fv h1 {
    font-size: 2.8rem;
  }
}

.s-job-and-people-detail .l-fv p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 500;
}

.s-job-and-people-detail .l-fv p:nth-of-type(1) span:nth-of-type(3) {
  font-size: 1.85rem;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .l-fv p:nth-of-type(1) span:nth-of-type(3) {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .l-fv figure:nth-of-type(1) {
    transform: translate(-8%, 2%) scale(1.3);
  }
}

.l-fv > div:nth-of-type(1) {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .l-fv > div:nth-of-type(1) {
    padding-top: 14rem;
  }
}

.l-fv > div:nth-of-type(2):before, .l-fv > div:nth-of-type(2):after {
  content: '';
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.6), rgba(26, 88, 168, 0.6));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .l-fv > div:nth-of-type(2):before, .l-fv > div:nth-of-type(2):after {
    width: 22%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

.l-fv > div:nth-of-type(2):before {
  inset: 4% auto auto 60%;
}

@media screen and (min-width: 600px) {
  .l-fv > div:nth-of-type(2):before {
    inset: -10% auto auto 30%;
  }
}

.l-fv > div:nth-of-type(2):after {
  inset: 70% auto auto 92%;
}

@media screen and (min-width: 600px) {
  .l-fv > div:nth-of-type(2):after {
    inset: 72% auto auto 74%;
  }
}

.l-fv .heading {
  display: grid;
  margin-top: 0;
  margin-bottom: 2rem;
  white-space: nowrap;
}

.l-fv .heading + p {
  margin-left: 2.4rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 2.2;
}

@media screen and (min-width: 1024px) {
  .l-fv .heading + p {
    font-size: 1.8rem;
  }
}

.l-fv figure {
  position: relative;
}

.l-fv figure:nth-of-type(1) {
  transform: translate(20%, 0);
}

@media screen and (min-width: 600px) {
  .l-fv figure:nth-of-type(1) {
    transform: translate(26%, 2%) scale(1.3);
  }
}

@media screen and (min-width: 1024px) {
  .l-fv figure:nth-of-type(1) {
    transform: translate(30%, 4%) scale(1.64);
  }
}

.l-fv figure:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #45e0ff, rgba(69, 224, 255, 0.1));
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s both slide;
}

.l-fv figure:nth-of-type(1) picture {
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.8s both slide--image;
}

.l-fv figure:nth-of-type(2) {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 60%;
}

@media screen and (min-width: 600px) {
  .l-fv figure:nth-of-type(2) {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .l-fv figure:nth-of-type(2) {
    transform: translate(-50%, -50%);
  }
}

.l-fv figure:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #45e0ff, rgba(69, 224, 255, 0.1));
  mask: url(../images/common/diagonal.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s both slide;
}

.l-fv figure:nth-of-type(2) picture {
  mask: url(../images/common/diagonal.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.8s both slide--image;
}

.l-page-path-wrap {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
  max-width: 150rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.l-page-path-wrap::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 600px) {
  .l-page-path-wrap {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
}

.l-page-path {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
  white-space: nowrap;
}

.l-page-path li {
  position: relative;
  margin-left: 1.2rem;
  padding-left: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .l-page-path li {
    margin-left: 1.2rem;
    padding-left: 1.2rem;
  }
}

.l-page-path li:before {
  content: '';
  display: block;
  position: absolute;
  top: 59%;
  left: -.05rem;
  opacity: .5;
  transform: translate(-50%, -50%) rotate(25deg);
  width: .1rem;
  height: 100%;
  background: var(--base-text-color);
}

.l-page-path li:first-child {
  margin: 0;
  padding: 0;
}

.l-page-path li:first-child:before {
  content: none;
}

.l-page-path a, .l-page-path span {
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .l-page-path a, .l-page-path span {
    font-size: 1.2rem;
  }
}

.l-page-path a {
  color: #7DA3B8;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.l-box {
  display: grid;
  gap: 3rem;
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .l-box {
    grid-template-columns: 50% 1fr;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

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

@media screen and (min-width: 1280px) {
  .l-box {
    gap: 5rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.l-box.--light-blue {
  background: var(--light-blue);
}

.l-box.--blue {
  background: var(--primary-color);
}

.l-box picture img {
  transform: scale(1.01);
}

.l-box img {
  width: 100%;
  height: auto;
}

.l-join-us {
  position: relative;
  z-index: 1;
}

.l-join-us .swiper {
  position: absolute;
  inset: auto auto -1rem 0;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .l-join-us .swiper {
    bottom: -.9rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us .swiper {
    bottom: 0;
  }
}

.l-join-us .swiper-slide {
  width: fit-content;
  padding-right: 2rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 6rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .l-join-us .swiper-slide {
    inset: auto auto -2.4rem 0;
    font-size: 16rem;
  }
}

.l-join-us > div:nth-of-type(2) {
  overflow: hidden;
}

.l-join-us > div:nth-of-type(2) > div {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-join-us > div:nth-of-type(2) > div {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.l-join-us > div:nth-of-type(2) > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: linear-gradient(to bottom, #45E0FF, #1A58A8);
}

@media screen and (min-width: 600px) {
  .l-join-us > div:nth-of-type(2) > div:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us > div:nth-of-type(2) > div:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

.l-join-us > div:nth-of-type(2) > div > * {
  position: relative;
  z-index: 1;
}

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

@media screen and (min-width: 600px) {
  .l-join-us > div:nth-of-type(2) > div > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us div:has(> h2) {
    margin-bottom: 4rem;
  }
}

.l-join-us div:has(> article) {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .l-join-us h2 + p {
    margin-left: 2.4rem;
  }
}

.l-join-us article:nth-of-type(1) a {
  background: rgba(25, 41, 145, 0.4);
}

.l-join-us article:nth-of-type(2) a {
  background: rgba(255, 255, 255, 0.4);
}

.l-join-us a {
  display: grid;
  grid-template-columns: 40% 1fr 4rem;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: 8rem;
  padding-right: 1rem;
  border-radius: .6rem;
}

@media screen and (min-width: 600px) {
  .l-join-us a {
    padding-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us a {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 2rem;
    height: 14rem;
    padding-right: 0;
    border-radius: 1rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us a {
    gap: 4rem;
    height: 18rem;
  }
}

.l-join-us a:active:not(:disabled) div:before, .l-join-us a:hover:not(:disabled) div:before {
  animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both button-hover;
}

.l-join-us a:active:not(:disabled) div img, .l-join-us a:active:not(:disabled) div svg, .l-join-us a:hover:not(:disabled) div img, .l-join-us a:hover:not(:disabled) div svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation;
}

.l-join-us a div {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  transition: background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .l-join-us a div {
    position: absolute;
    inset: auto 2rem 2rem auto;
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us a div {
    inset: auto 3rem 3rem auto;
  }
}

.l-join-us a div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #1a58a8 0%, #1a58a8 10%, #45e0ff 90%, #45e0ff 100%);
  animation: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both button-hover-off;
}

.l-join-us a div img, .l-join-us a div svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation--off;
}

.l-join-us figure, .l-join-us picture {
  height: 100%;
}

.l-join-us figure img, .l-join-us picture img {
  object-fit: cover;
  width: 100%;
  height: 101%;
}

.l-join-us h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

@media screen and (min-width: 600px) {
  .l-join-us h3 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-join-us h3 {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-join-us h3 {
    margin-top: 5rem;
    font-size: 2rem;
  }
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  max-width: 192rem;
  padding: 8rem 3rem 7rem;
}

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

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

.s-job-description-detail .l-footer:before, .s-job-description-detail .l-footer:after,
.s-entry-detail .l-footer:before,
.s-entry-detail .l-footer:after {
  content: none;
}

.l-footer:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: var(--white);
}

.l-footer:after {
  content: '';
  display: block;
  position: absolute;
  inset: -40% auto auto 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

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

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

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(1) {
    grid-template-columns: 46% auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div:nth-of-type(1) {
    grid-template-columns: 50% auto;
  }
}

@media screen and (min-width: 1366px) {
  .l-footer > div:nth-of-type(1) {
    grid-template-columns: 33% auto;
    margin-bottom: 12rem;
  }
}

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

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

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

@media screen and (min-width: 1366px) {
  .l-footer > div:nth-of-type(1) > div:nth-of-type(2) {
    padding-right: 2rem;
  }
}

.l-footer > div:nth-of-type(2) {
  display: grid;
  gap: 6rem;
  border-top: 0.1rem solid var(--base-border-color);
}

@media screen and (max-width: 599px) {
  .l-footer > div:nth-of-type(2) {
    margin-right: -1rem;
    margin-left: -1rem;
    padding-top: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-of-type(2) {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    padding: 4rem 2rem 0;
  }
}

.l-footer > div:nth-of-type(2) a {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .6rem;
  width: fit-content;
  font-size: 1.2rem;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.l-footer > div:nth-of-type(2) a img {
  transform: translate(0, -0.2rem);
}

.l-footer .logo {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .l-footer .logo {
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: 2.6rem;
    width: fit-content;
  }
}

.l-footer .logo img {
  width: 22rem;
}

.l-footer .logo span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .l-footer .logo span {
    transform: translate(0, 1rem);
  }
}

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

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

.l-footer .logo + a img {
  transform: translate(0, -0.1rem);
}

.l-footer > img {
  display: block;
  max-width: none;
  margin-bottom: 2rem;
}

@media screen and (max-width: 599px) {
  .l-footer > img {
    width: calc(100% + 3rem);
    margin-left: -1rem;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > img {
    width: 80%;
    max-width: 64rem;
  }
}

.l-footer small {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
}

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

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading {
  display: grid;
  gap: 1rem;
  position: relative;
  margin-bottom: 2.6rem;
  padding-left: 2.4rem;
  line-height: 1.4;
}

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

.c-two-lang-heading:before {
  content: '';
  display: block;
  position: absolute;
  inset: 1rem auto auto 1rem;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 1rem;
  height: 1.8rem;
  background: var(--primary-color);
}

.c-two-lang-heading .en {
  color: var(--primary-color);
  font-size: 4.6rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1;
  letter-spacing: -.06em;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading .en {
    font-size: 9rem;
  }
}

.c-two-lang-heading .ja {
  padding-left: .2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading .ja {
    padding-left: .3rem;
    font-size: 1.8rem;
  }
}

.c-two-lang-heading.--white .en {
  color: var(--white);
}

.c-two-lang-heading.--white .ja {
  color: var(--white);
}

.c-two-lang-heading.--icon-white:before {
  background: var(--white);
}

.c-icon-heading, .c-post h2 {
  position: relative;
  margin-bottom: 2.4rem;
  padding-left: 2.6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .c-icon-heading, .c-post h2 {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }
}

.c-icon-heading:before, .c-post h2:before {
  content: '';
  display: block;
  position: absolute;
  inset: 1rem auto auto 1rem;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 1rem;
  height: 1.8rem;
  background: var(--primary-color);
}

.c-icon-heading.--blue, .c-post h2.--blue {
  color: var(--primary-color);
}

.c-icon-heading.--small, .c-post h2.--small {
  margin-bottom: 2rem;
  font-size: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-icon-heading.--small, .c-post h2.--small {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}

.c-medium-heading {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .c-medium-heading {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}

.c-small-heading {
  margin-bottom: 1.6rem;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .c-small-heading {
    margin-bottom: 2.4rem;
    font-size: 2rem;
  }
}

.c-diagonal-heading {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: -2.6rem;
  padding: 1.6rem 3.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .c-diagonal-heading {
    display: grid;
    gap: .8rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-diagonal-heading {
    margin-bottom: -3rem;
    padding: 1.8rem 5rem;
  }
}

.c-diagonal-heading:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 100%;
  height: 100%;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .c-diagonal-heading:before {
    border-radius: .6rem 1.4rem .6rem 1.4rem;
  }
}

.c-diagonal-heading span {
  position: relative;
}

.c-diagonal-heading .en {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -0.04em;
}

@media screen and (max-width: 599px) {
  .c-diagonal-heading .en {
    display: block;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .c-diagonal-heading .en {
    display: inline-block;
    margin-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-diagonal-heading .en {
    margin-right: 3rem;
    font-size: 2rem;
  }
}

.c-diagonal-heading .ja {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .c-diagonal-heading .ja {
    font-size: 2rem;
  }
}

/*
  button
*/
.c-color-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  width: fit-content;
  min-width: 28rem;
  min-height: 6rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 1rem 1rem 4rem;
  border-radius: .6rem;
  background: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (min-width: 1024px) {
  .c-color-button {
    min-width: 34rem;
    min-height: 7rem;
    padding-right: 1.5rem;
    font-size: 1.6rem;
  }
}

.c-color-button:active:not(:disabled), .c-color-button:hover:not(:disabled) {
  color: var(--white);
}

.c-color-button:active:not(:disabled):before, .c-color-button:hover:not(:disabled):before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover;
}

.c-color-button:active:not(:disabled) > span:nth-of-type(2):before, .c-color-button:hover:not(:disabled) > span:nth-of-type(2):before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover;
}

.c-color-button:active:not(:disabled) img, .c-color-button:active:not(:disabled) svg, .c-color-button:hover:not(:disabled) img, .c-color-button:hover:not(:disabled) svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation;
}

.c-color-button:active:not(:disabled) g, .c-color-button:active:not(:disabled) path, .c-color-button:hover:not(:disabled) g, .c-color-button:hover:not(:disabled) path {
  fill: var(--primary-color);
}

.c-color-button:disabled {
  opacity: .5;
  cursor: default;
}

@keyframes button-hover {
  0% {
    transform: translate(-150%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes button-hover-off {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(50%, -50%);
  }
}

@keyframes arrow-animation {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translate(1rem, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(-1rem, 0);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes arrow-animation--off {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(1rem, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(-1rem, 0);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes arrow-animation--left {
  0% {
    transform: translate(0, 0) scale(-1, 1);
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translate(-0.6rem, 0) scale(-1, 1);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0.6rem, 0) scale(-1, 1);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(-1, 1);
    opacity: 1;
  }
}

@keyframes arrow-animation--down {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(0, 0.6rem);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0, -0.6rem);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes arrow-animation--external {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(0.6rem, -0.6rem);
    opacity: 0;
  }
  50.00001% {
    transform: translate(-0.6rem, 0.6rem);
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.c-color-button:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #1a58a8 0%, #1a58a8 10%, #45e0ff 90%, #45e0ff 100%);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover-off;
}

.c-color-button > span {
  position: relative;
  z-index: 1;
}

.c-color-button > span:nth-of-type(2) {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
}

.c-color-button > span:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover-off;
}

.c-color-button img, .c-color-button svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation--off;
}

.c-color-button g, .c-color-button path {
  transition: fill 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

@supports (-ms-ime-align: auto) {
  .c-color-button {
    max-width: 34rem;
  }
}

.c-color-button.--light-blue {
  background: var(--light-blue);
}

.c-color-button.--light-blue span:nth-of-type(1) {
  color: var(--white);
}

.c-color-button.--blue {
  background: var(--primary-color);
}

.c-color-button.--blue span:nth-of-type(1) {
  color: var(--white);
}

.c-color-button.--deep-blue {
  background: var(--deep-blue);
}

.c-color-button.--deep-blue span:nth-of-type(1) {
  color: var(--white);
}

.c-color-button.--large {
  height: 7rem;
}

@media screen and (min-width: 1024px) {
  .c-color-button.--large {
    min-width: 44rem;
    height: 9rem;
  }
}

.c-color-button.--center {
  text-align: center;
  padding-left: 6rem;
}

@media screen and (min-width: 1024px) {
  .c-color-button.--center {
    padding-left: 6.5rem;
  }
}

.c-link {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 1.4rem;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .c-link {
    gap: 1.8rem;
  }
}

.c-link:active:not(:disabled) > span:nth-of-type(2):before, .c-link:hover:not(:disabled) > span:nth-of-type(2):before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover;
}

.c-link:active:not(:disabled) img, .c-link:active:not(:disabled) svg, .c-link:hover:not(:disabled) img, .c-link:hover:not(:disabled) svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation;
}

.c-link > span:nth-of-type(1) {
  font-size: 1.2rem;
  font-weight: 500;
}

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

.c-link > span:nth-of-type(2) {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
}

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

.c-link > span:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 1;
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #1a58a8 0%, #1a58a8 10%, #45e0ff 90%, #45e0ff 100%);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) both button-hover-off;
}

.c-link img, .c-link svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation--off;
}

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

.c-small-link {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: .8rem;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-small-link {
    font-size: 1.4rem;
  }
}

.c-small-link:active:not(:disabled), .c-small-link:hover:not(:disabled) {
  color: var(--primary-color);
  transition-duration: 0.4s;
}

.c-small-link:active:not(:disabled) svg, .c-small-link:hover:not(:disabled) svg {
  animation: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) both arrow-animation;
}

.c-small-link svg {
  margin-top: .1rem;
}

/*
  post
*/
.c-category {
  display: inline-block;
  padding: .4rem 1rem .1rem;
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  color: var(--base-text-color);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-categories {
  display: flex;
  flex-wrap: wrap;
}

.c-categories a, .c-categories span {
  margin-right: 1rem;
}

@media screen and (max-width: 599px) {
  .c-post :where(.is-layout-flex) {
    gap: 2rem !important;
  }
}

@media screen and (min-width: 600px) {
  .c-post :where(.is-layout-flex) {
    gap: 3rem;
  }
}

.c-post > * {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .c-post > * {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-post > * {
    margin-bottom: 10rem;
  }
}

.c-post > *:last-child {
  margin-bottom: 0;
}

.c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
  margin-bottom: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ h1), .c-post > *:has(+ h2), .c-post > *:has(+ h3), .c-post > *:has(+ h4), .c-post > *:has(+ h5), .c-post > *:has(+ h6) {
    margin-bottom: 6rem;
  }
}

.c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
  margin-bottom: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .c-post > *:has(+ figure), .c-post > *:has(+ .wp-block-image figure), .c-post > *:has(+ table) {
    margin-bottom: 5rem;
  }
}

.c-post h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-post h2 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}

.c-post strong {
  font-weight: 700;
}

.c-post iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/*
  form
*/
.c-form {
  display: grid;
}

.c-form > div {
  display: grid;
  gap: .6rem;
  position: relative;
  padding: 1.4rem 0;
}

@media screen and (min-width: 600px) {
  .c-form > div {
    grid-template-columns: 1fr 64%;
    gap: 2rem;
    padding: 1.4rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-form > div {
    grid-template-columns: 1fr 68%;
  }
}

@media screen and (min-width: 1280px) {
  .c-form > div {
    grid-template-columns: 1fr 70%;
  }
}

.c-form > div > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

@media screen and (min-width: 600px) {
  .c-form > div > div:nth-of-type(1) {
    padding-top: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-form > div > div:nth-of-type(1) {
    padding-top: 2.5rem;
  }
}

.c-form > div > div:nth-of-type(1) label, .c-form > div > div:nth-of-type(1) p {
  font-size: 1.55rem;
  font-weight: 600;
  cursor: default;
}

@media screen and (min-width: 1024px) {
  .c-form > div > div:nth-of-type(1) label, .c-form > div > div:nth-of-type(1) p {
    font-size: 1.8rem;
  }
}

.c-form .error {
  color: #ff0000;
}

@media screen and (min-width: 600px) {
  .c-form .privacy > div:nth-of-type(1) {
    padding-top: .1rem;
  }
}

/*
  required, optional
*/
.c-required, .c-optional {
  display: inline-block;
  transform: translate(0, 0.2rem);
  padding: .5rem .7rem .3rem;
  border-radius: calc(infinity * .1rem);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required, .c-optional {
    padding: .7rem 1rem .5rem;
    font-size: 1.2rem;
  }
}

.c-required {
  background: #ff0000;
}

/*
  accordion
*/
.c-accordion-button, .c-accordion-button--plus {
  position: relative;
}

.c-accordion-button:active:not(:disabled), .c-accordion-button--plus:active:not(:disabled), .c-accordion-button:hover:not(:disabled), .c-accordion-button--plus:hover:not(:disabled) {
  cursor: pointer;
}

.c-accordion-button.is-open + *, .is-open.c-accordion-button--plus + * {
  grid-template-rows: 1fr;
}

.c-accordion-button + *, .c-accordion-button--plus + * {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-accordion-button + * > div, .c-accordion-button--plus + * > div {
  overflow: hidden;
}

.c-accordion-button--plus.is-open:after {
  transform: translate(-50%, -50%) scaleY(0);
}

.c-accordion-button--plus:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: .1rem;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:before {
    right: 2.5rem;
    width: 2.4rem;
  }
}

.c-accordion-button--plus:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2.9rem;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: .1rem;
  height: 2rem;
  background: var(--primary-color);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:after {
    right: 4.8rem;
    height: 2.4rem;
  }
}

/*
  tab
*/
.c-tabs {
  display: flex;
  flex-wrap: wrap;
  transform: translate(0, 0.1rem);
  width: fit-content;
  padding: .4rem;
  border-radius: calc(infinity * .1rem);
  border-radius: 2.4rem;
  background: var(--white);
}

.c-tabs button, .c-tabs a {
  all: unset;
  display: grid;
  place-items: center;
  position: relative;
  min-width: 8.9rem;
  height: 4rem;
  padding: .2rem 1rem 0;
  border: none;
  border-radius: calc(infinity * .1rem);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), background 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 600px) {
  .c-tabs button, .c-tabs a {
    min-width: 12rem;
  }
}

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

.c-tabs .is-current {
  background: var(--primary-color);
  color: var(--white);
  cursor: default;
  pointer-events: none;
}

.c-tabs .is-current:active:not(:disabled), .c-tabs .is-current:hover:not(:disabled) {
  color: var(--white);
}

.c-tabs.--two {
  grid-template-columns: repeat(2, 1fr);
}

.c-tabs.--three {
  grid-template-columns: repeat(3, 1fr);
}

.c-tabs.--four {
  grid-template-columns: repeat(4, 1fr);
}

.c-tab-content {
  display: none;
  position: relative;
}

.c-tab-content.is-current {
  display: block;
}

/*
  other
*/
.c-data {
  color: var(--primary-color);
  line-height: 1;
  white-space: nowrap;
}

.c-data .small {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .c-data .small {
    font-size: 3.6rem;
  }
}

.c-data .medium {
  font-size: 3.65rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .c-data .medium {
    font-size: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-data .medium {
    font-size: 6rem;
  }
}

.c-data .large {
  font-size: 6.4rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .c-data .large {
    font-size: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-data .large {
    font-size: 10rem;
  }
}

.c-data .heading-wrap {
  display: inline-block;
  position: relative;
}

.c-data .heading {
  position: absolute;
  inset: -1.6rem auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--base-text-color);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 1024px) {
  .c-data .heading {
    font-size: 1.8rem;
  }
}

.c-video {
  display: block;
  position: relative;
}

.c-video:active:not(:disabled) > img, .c-video:hover:not(:disabled) > img {
  transform: translate(-50%, -50%) scale(1.1);
  transition-duration: 0.4s;
}

.c-video > img {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 599px) {
  .c-video > img {
    width: 8rem;
    height: auto;
  }
}

@property --bg-color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000FF;
}

@property --bg-color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000FF;
}

.c-interviews:not(.swiper-wrapper) {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-interviews:not(.swiper-wrapper) {
    gap: 10rem;
  }
}

.c-interviews a:nth-of-type(1) {
  display: block;
  position: relative;
  overflow: hidden;
  width: fit-content;
  max-height: 40rem;
  margin-right: -6rem;
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  pointer-events: none;
}

@media screen and (max-width: 599px) {
  .c-interviews a:nth-of-type(1) {
    transform: translate(-8%, 0);
  }
}

@media screen and (min-width: 600px) {
  .c-interviews a:nth-of-type(1) {
    transform: translate(-4%, 0);
    margin: 0 auto;
  }
}

@media screen and (min-width: 1280px) {
  .c-interviews a:nth-of-type(1) {
    transform: translate(-10%, 0);
  }
}

.c-interviews a:nth-of-type(1):active:not(:disabled) img, .c-interviews a:nth-of-type(1):hover:not(:disabled) img {
  transform: scale(1.1);
  transition-duration: .4s;
}

.c-interviews a:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #45e0ff, rgba(69, 224, 255, 0.1));
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
}

.c-interviews a:nth-of-type(1):after {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 57%;
  height: 100%;
  pointer-events: visible;
}

.c-interviews a:nth-of-type(1) figure {
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
}

.c-interviews a:nth-of-type(1) img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-interviews a:nth-of-type(2) {
  display: grid;
  gap: .6rem;
  align-items: center;
  position: relative;
  max-width: 50rem;
  margin-top: -2rem;
  margin-left: 2rem;
  padding: 2rem 1rem;
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  .c-interviews a:nth-of-type(2) {
    margin-top: -4rem;
    margin-left: 8rem;
    padding: 2rem 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-interviews a:nth-of-type(2) {
    margin-left: 12rem;
    padding: 4rem 2rem 4rem 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-interviews a:nth-of-type(2) {
    margin-top: -10rem;
    margin-left: 28rem;
  }
}

@media screen and (min-width: 1366px) {
  .c-interviews a:nth-of-type(2) {
    margin-left: 32rem;
  }
}

.c-interviews a:nth-of-type(2):active:not(:disabled):before, .c-interviews a:nth-of-type(2):hover:not(:disabled):before {
  --bg-color-1: #45E0FF;
  --bg-color-2: #1A58A8;
  transition-duration: 0.4s;
}

.c-interviews a:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 100%;
  height: 100%;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2));
  pointer-events: visible;
  transition: --bg-color-1 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), --bg-color-2 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .c-interviews a:nth-of-type(2):before {
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

.c-interviews a:nth-of-type(2) > * {
  position: relative;
}

.c-interviews div {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s, pointer-events 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s;
}

.c-interviews h3 {
  margin-left: 4rem;
}

.c-interviews p:nth-of-type(1) {
  margin-left: 1rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .c-interviews p:nth-of-type(1) {
    font-size: 1.4rem;
  }
}

.c-interviews p:nth-of-type(1) span:nth-of-type(3) {
  font-size: 1.65rem;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .c-interviews p:nth-of-type(1) span:nth-of-type(3) {
    font-size: 2rem;
  }
}

.c-interviews p:nth-of-type(2) {
  margin-left: -2rem;
}

@media screen and (min-width: 1024px) {
  .c-interviews p:nth-of-type(2) {
    margin-left: -4rem;
  }
}

.c-interviews img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 40rem;
}

.is-in .c-interviews.--index a:nth-of-type(1):before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s both slide;
}

.is-in .c-interviews.--index a:nth-of-type(2):before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.is-in .c-interviews.--index figure {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.is-in .c-interviews.--index div {
  opacity: 1;
  pointer-events: visible;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s, pointer-events 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s;
}

.c-interviews.--job-and-people .is-in a:nth-of-type(1):before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s both slide;
}

.c-interviews.--job-and-people .is-in a:nth-of-type(2):before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.c-interviews.--job-and-people .is-in figure {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.c-interviews.--job-and-people .is-in div {
  opacity: 1;
  pointer-events: visible;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s, pointer-events 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s;
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-fv {
  position: relative;
  z-index: 1;
  height: 100svh;
}

.s-index .a-fv figure {
  position: absolute;
  transform: translate(-50%, -50%);
  width: auto;
  height: 45.33333333vw;
}

@media (orientation: landscape) {
  .s-index .a-fv figure {
    height: 20vw;
  }
}

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

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

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-fv figure {
    height: 26vw;
  }
}

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

.s-index .a-fv figure:nth-of-type(1) {
  inset: 23% auto auto 10%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv figure:nth-of-type(1) {
    inset: 34% auto auto 6%;
  }
}

.s-index .a-fv figure:nth-of-type(2) {
  inset: 7% auto auto 72%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv figure:nth-of-type(2) {
    inset: 4% auto auto 41%;
  }
}

.s-index .a-fv figure:nth-of-type(3) {
  inset: 40% auto auto 84%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv figure:nth-of-type(3) {
    inset: 32% auto auto 60%;
  }
}

.s-index .a-fv figure:nth-of-type(4) {
  inset: 59% auto auto 7%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv figure:nth-of-type(4) {
    inset: 116% auto auto 4%;
  }
}

.s-index .a-fv figure:nth-of-type(5) {
  inset: 82% auto auto 80%;
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv figure:nth-of-type(5) {
    inset: 26% auto auto 91%;
  }
}

.s-index .a-fv figure:nth-of-type(6) {
  inset: 78% auto auto 69%;
}

@media screen and (max-width: 1279px) {
  .s-index .a-fv figure:nth-of-type(6) {
    display: none;
  }
}

.s-index .a-fv figure:nth-of-type(7) {
  inset: 93% auto auto 90%;
}

@media screen and (max-width: 1279px) {
  .s-index .a-fv figure:nth-of-type(7) {
    display: none;
  }
}

.s-index .a-fv figure:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #45e0ff, rgba(69, 224, 255, 0.1));
  mask: url(../images/common/diagonal.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 1s both slide;
}

.s-index .a-fv figure picture {
  height: 100%;
  mask: url(../images/common/diagonal.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 2.2s both slide--image;
}

.s-index .a-fv figure img {
  max-width: none;
  height: 100%;
}

@keyframes slide {
  0% {
    clip-path: inset(0 0 100%);
  }
  50% {
    clip-path: inset(0 0 0%);
  }
  100% {
    clip-path: inset(100% 0 0%);
  }
}

@keyframes slide--image {
  0% {
    clip-path: inset(0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0%);
  }
}

.s-index .a-fv hgroup {
  display: grid;
  gap: 1.4rem;
  position: absolute;
  inset: 70% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 92.8%;
}

@media (orientation: landscape) {
  .s-index .a-fv hgroup {
    inset: 56% auto auto 50%;
    width: 50%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-fv hgroup {
    inset: 74% auto auto 50%;
    width: 70%;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-fv hgroup {
    inset: 56% auto auto 50%;
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-fv hgroup {
    gap: 2.6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-fv hgroup {
    inset: 68% auto auto 28%;
    max-width: 45.83333333%;
  }
}

.s-index .a-fv h1 {
  margin: 0;
}

.s-index .a-fv h1 img {
  width: 100%;
}

.s-index .a-fv p {
  color: #258CDE;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

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

.s-index .a-fv > div {
  position: absolute;
  inset: 96% auto auto 50%;
  transform: translate(-50%, -50%);
}

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

@media screen and (min-width: 1024px) {
  .s-index .a-fv > div {
    top: 96%;
  }
}

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

@media screen and (min-width: 1366px) {
  .s-index .a-fv > div {
    top: 94%;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-fv > div {
    top: 96%;
  }
}

.s-index .a-fv .swiper-slide {
  width: fit-content;
  padding-right: 2rem;
  color: var(--white);
  font-size: 8rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .s-index .a-fv .swiper-slide {
    font-size: 16rem;
  }
}

.s-index .message-wrap {
  position: relative;
  padding-bottom: 2rem;
}

.s-index .message-wrap .bg {
  content: '';
  display: block;
  position: absolute;
  inset: 8rem auto auto 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 4rem);
  height: calc(100vh - 16.8rem);
  border-radius: 2rem;
  background: linear-gradient(to bottom, #45E0FF, #1A58A8);
}

@media screen and (min-width: 600px) {
  .s-index .message-wrap .bg {
    height: calc(100vh - 11.4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .message-wrap .bg {
    width: calc(100% - 6rem);
  }
}

@media screen and (min-width: 1536px) {
  .s-index .message-wrap .bg {
    width: calc(100% - 2.4rem);
  }
}

@media screen and (min-width: 1664px) {
  .s-index .message-wrap .bg {
    width: 100%;
  }
}

.s-index .a-message {
  display: grid;
  position: relative;
}

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

@media screen and (min-width: 600px) {
  .s-index .a-message {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 0;
    align-items: start;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message {
    gap: 4rem 0;
  }
}

.s-index .a-message div:nth-of-type(1), .s-index .a-message div:nth-of-type(2) {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 24%;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.4), rgba(26, 88, 168, 0.4));
  pointer-events: none;
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
}

@media screen and (min-width: 600px) {
  .s-index .a-message div:nth-of-type(1), .s-index .a-message div:nth-of-type(2) {
    width: 50%;
    height: 36%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-message div:nth-of-type(1), .s-index .a-message div:nth-of-type(2) {
    width: 38%;
  }
}

.s-index .a-message div:nth-of-type(1) {
  inset: 42% auto auto 8%;
}

@media screen and (min-width: 600px) {
  .s-index .a-message div:nth-of-type(1) {
    inset: 8% auto auto 26%;
    clip-path: inset(0 0 100%);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message div:nth-of-type(1) {
    inset: 14% auto auto 28%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-message div:nth-of-type(1) {
    inset: 14% auto auto 20%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-message div:nth-of-type(1).is-in {
    animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
  }
}

.s-index .a-message div:nth-of-type(2) {
  inset: 100% auto auto 110%;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-message div:nth-of-type(2) {
    inset: 80% auto auto 26%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message div:nth-of-type(2) {
    inset: 76% auto auto 24%;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-message div:nth-of-type(2) {
    inset: 76% auto auto 18%;
  }
}

.s-index .a-message div:nth-of-type(2).is-in {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

@media screen and (min-width: 600px) {
  .s-index .a-message div:nth-of-type(3) {
    margin-right: -10%;
  }
}

.s-index .a-message h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 2.4rem;
  margin-right: -2rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message h2 {
    margin-right: -20%;
    font-size: 4rem;
  }
}

.s-index .a-message p {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.6rem;
  font-size: 1.7rem;
  line-height: 2.2;
}

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

.s-index .a-message figure {
  position: relative;
  transform: translate(20%, 0) scale(1.4);
  margin-bottom: 4rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-message figure {
    transform: translate(36%, 0) scale(1.6);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message figure {
    transform: translate(40%, 0) scale(1.6);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-message figure {
    transform: translate(36%, 0) scale(1.6);
  }
}

.s-index .a-message figure:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #45e0ff, rgba(69, 224, 255, 0.1));
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
}

.s-index .a-message figure:after {
  content: '';
  display: block;
  position: absolute;
  inset: 62% auto auto 54%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.4), rgba(26, 88, 168, 0.4));
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
}

.s-index .a-message figure.is-in:before {
  animation: 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s both slide;
}

.s-index .a-message figure.is-in:after {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.s-index .a-message figure.is-in picture {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 1.2s both slide--image;
}

.s-index .a-message picture {
  mask: url(../images/common/diagonal-wide.svg) center/contain no-repeat;
  clip-path: inset(0 0 100%);
}

.s-index .a-message img {
  transform: translate(-8%, 3%) scale(0.8);
}

@media screen and (min-width: 600px) {
  .s-index .a-message img {
    transform: translate(2%, 1%) scale(1);
  }
}

.s-index .a-message a {
  position: relative;
  z-index: 1;
}

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

.s-index .a-people .people-inner {
  display: grid;
  align-items: start;
}

@media screen and (min-width: 600px) {
  .s-index .a-people .people-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    height: 250vh;
  }
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-people .people-inner {
    height: 300vh;
  }
}

.s-index .a-people svg {
  display: block;
  overflow: visible;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1280px) {
  .s-index .a-people svg {
    width: 90%;
    margin: 0 auto;
  }
}

.s-index .a-people svg > circle:nth-of-type(1), .s-index .a-people svg > circle:nth-of-type(2), .s-index .a-people svg > circle:nth-of-type(3) {
  opacity: .3;
}

.s-index .a-people .circle {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.s-index .a-people .image path:nth-of-type(2), .s-index .a-people .image path:nth-of-type(3) {
  opacity: 0;
  transition-duration: 0.25s;
}

.s-index .a-people section {
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 599px) {
  .s-index .a-people section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-people section {
    padding-top: 2.4rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-people section {
    padding-top: 3rem;
    padding-bottom: 2.6rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-people section {
    padding-top: 3.4rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-people section:nth-of-type(1) {
    padding-top: 0;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-people section:nth-of-type(3) {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-people section:nth-of-type(3) {
    padding-bottom: 0;
  }
}

.s-index .a-people section + section {
  border-top: 0.1rem solid var(--white);
}

.s-index .a-people h3 {
  display: grid;
  gap: 1.4rem;
  position: relative;
  margin-bottom: 1.4rem;
  line-height: 1.4;
}

.s-index .a-people h3:before {
  content: '';
  display: block;
  position: absolute;
  inset: .8rem auto auto 1rem;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 1rem;
  height: 1.8rem;
  background: var(--primary-color);
}

.s-index .a-people h3 span:nth-of-type(1) {
  padding-left: 2.8rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -0.04em;
}

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

.s-index .a-people h3 span:nth-of-type(2) {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
}

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

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

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

.s-index .a-people p {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
}

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

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

@media screen and (min-width: 1366px) {
  .s-index .a-people p {
    font-size: 2rem;
  }
}

.s-index .is-communication .communication {
  transform: scale(1.6);
  transition-duration: 0.4s;
}

.s-index .is-communication section:nth-of-type(2), .s-index .is-communication section:nth-of-type(3) {
  opacity: .5;
  transition-duration: 0.25s;
}

.s-index .is-study .study {
  transform: scale(1.6);
  transition-duration: 0.4s;
}

.s-index .is-study .image path:nth-of-type(2) {
  opacity: 1;
}

.s-index .is-study section:nth-of-type(1), .s-index .is-study section:nth-of-type(3) {
  opacity: .5;
  transition-duration: 0.25s;
}

.s-index .is-private.is-pin .private {
  transform: scale(1.6);
  transition-duration: 0.4s;
}

.s-index .is-private.is-pin section:nth-of-type(1), .s-index .is-private.is-pin section:nth-of-type(2) {
  opacity: .5;
  transition-duration: 0.25s;
}

.s-index .is-private .image path:nth-of-type(3) {
  opacity: 1;
}

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

.s-index .a-about > div {
  position: relative;
}

.s-index .a-about > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-about > div:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-about > div:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

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

.s-index .a-about > div > div {
  display: grid;
  gap: 1rem;
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-about > div > div {
    grid-template-columns: 36% 1fr 36%;
  }
}

.s-index .a-about section {
  padding: 2rem;
  border-radius: 1.4rem;
  background: var(--secondary-color);
}

@media screen and (min-width: 1024px) {
  .s-index .a-about section {
    padding: 4rem;
    border-radius: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-about section:nth-of-type(2), .s-index .a-about section:nth-of-type(6) {
    grid-column: 2 / 4;
  }
}

.s-index .a-about section:nth-of-type(2) figure {
  transform: translate(0, 0.6rem);
}

@media screen and (min-width: 600px) {
  .s-index .a-about section:nth-of-type(3) {
    grid-column: 1 / 3;
  }
}

.s-index .a-about section:nth-of-type(3) div {
  grid-template-columns: 1fr 58%;
}

@media screen and (min-width: 600px) {
  .s-index .a-about section:nth-of-type(3) img {
    transform: scale(1.2);
  }
}

.s-index .a-about section:nth-of-type(6) figure {
  transform: translate(0, 0.6rem);
}

.s-index .a-about section div {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  place-items: center;
  gap: 4%;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about section div {
    grid-template-columns: repeat(2, 46%);
    gap: 8%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about section div {
    grid-template-columns: repeat(2, 46%);
    gap: 8%;
  }
}

.s-index .a-about h3 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}

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

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

.s-index .a-about h3 + p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-about h3 + p {
    min-height: 7.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3 + p {
    min-height: 10.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .s-index .a-about h3 + p {
    min-height: 8.1rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-about img {
    object-fit: contain;
    width: 100%;
    height: 9rem;
  }
}

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

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

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

@media screen and (max-width: 599px) {
  .s-index .a-business > div:nth-of-type(1) {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-business > div:nth-of-type(1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-business > div:nth-of-type(1) p {
    transform: translate(0, 1.4rem);
  }
}

.s-index .a-business > div:nth-of-type(2) section {
  padding-right: 2rem;
  padding-left: 2rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-business > div:nth-of-type(2) section {
    display: grid;
    grid-template-columns: 1fr 22.6rem;
    align-items: center;
    gap: 0 3rem;
  }
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-business > div:nth-of-type(2) section {
    grid-template-columns: 1fr 34% 22.6rem;
    gap: 8rem;
  }
}

@media screen and (max-width: 599px) {
  .s-index .a-business > div:nth-of-type(2) section p {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-business > div:nth-of-type(2) section p {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-business > div:nth-of-type(2) section p {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

.s-index .a-business > div:nth-of-type(2) h3 {
  display: grid;
  gap: 1.4rem;
  position: relative;
  margin-bottom: 2rem;
  padding-top: 3rem;
  color: var(--primary-color);
  font-size: 2rem;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business > div:nth-of-type(2) h3 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
}

.s-index .a-business > div:nth-of-type(2) h3:before {
  content: '';
  display: block;
  position: absolute;
  inset: .8rem auto auto 1rem;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 1rem;
  height: 1.8rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-business > div:nth-of-type(2) figure {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-business > div:nth-of-type(2) figure {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

.s-index .a-business > section {
  max-width: none;
}

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

@media screen and (min-width: 1280px) {
  .s-index .a-business > section {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.s-index .a-business > section a {
  position: relative;
}

.s-index .a-business > section a.is-in:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-business > section a.is-in:after {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-business > section a:before, .s-index .a-business > section a:after {
  content: '';
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.6), rgba(26, 88, 168, 0.6));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-business > section a:before, .s-index .a-business > section a:after {
    width: 10%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-business > section a:before, .s-index .a-business > section a:after {
    width: 9%;
  }
}

.s-index .a-business > section a:before {
  inset: 0 auto auto 102%;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business > section a:before {
    inset: 0 auto auto 100%;
  }
}

.s-index .a-business > section a:after {
  inset: 100% auto auto -2%;
}

@media screen and (min-width: 600px) {
  .s-index .a-business > section a:after {
    inset: 100% auto auto 0%;
  }
}

.s-index .a-business > section figure img {
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .s-index .a-business > section figure img {
    height: 40rem;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-business > section figure img {
    height: 100%;
    max-height: 60rem;
  }
}

.s-index .a-environment {
  padding-bottom: 2rem;
}

@media screen and (min-width: 1280px) {
  .s-index .a-environment {
    padding-bottom: 3rem;
  }
}

.s-index .a-environment section {
  display: grid;
  gap: 3rem;
  position: relative;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-environment section {
    grid-template-columns: 1fr 50%;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-environment section {
    gap: 5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-environment section {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

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

.s-index .a-environment section:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-environment section:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-environment section:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

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

.s-index .a-cross-talk > div {
  display: grid;
  gap: 3rem;
  position: relative;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-cross-talk > div {
    grid-template-columns: 1fr 50%;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-cross-talk > div {
    gap: 5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-cross-talk > div {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-cross-talk > div {
    gap: 8rem;
  }
}

.s-index .a-cross-talk > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-cross-talk > div:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-cross-talk > div:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

.s-index .a-cross-talk > div > * {
  position: relative;
}

.s-index .a-cross-talk h2 + p {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-index .a-cross-talk h2 + p {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}

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

.s-index .a-interview > div:nth-of-type(1).is-in:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-interview > div:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  inset: 0% auto auto 102%;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.4), rgba(26, 88, 168, 0.4));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-interview > div:nth-of-type(1):before {
    width: 10%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-interview > div:nth-of-type(1):before {
    width: 9%;
  }
}

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

.s-index .a-interview > div:nth-of-type(2).is-in:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-interview > div:nth-of-type(2).is-in:after {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-interview > div:nth-of-type(2).is-in > div:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-index .a-interview > div:nth-of-type(2):before, .s-index .a-interview > div:nth-of-type(2):after {
  content: '';
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.4), rgba(26, 88, 168, 0.4));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-index .a-interview > div:nth-of-type(2):before, .s-index .a-interview > div:nth-of-type(2):after {
    width: 10%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-interview > div:nth-of-type(2):before, .s-index .a-interview > div:nth-of-type(2):after {
    width: 9%;
  }
}

.s-index .a-interview > div:nth-of-type(2):before {
  inset: 94% auto auto 6%;
}

@media screen and (min-width: 600px) {
  .s-index .a-interview > div:nth-of-type(2):before {
    inset: 94% auto auto 4%;
  }
}

.s-index .a-interview > div:nth-of-type(2):after {
  inset: 100% auto auto 94%;
}

@media screen and (min-width: 600px) {
  .s-index .a-interview > div:nth-of-type(2):after {
    inset: 100% auto auto 96%;
  }
}

.s-index .a-interview > div:nth-of-type(3) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  padding-top: 3rem;
}

.s-index .a-interview > div:nth-of-type(3):before {
  content: '';
  display: block;
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  height: .1rem;
  border-top: 0.1rem solid var(--base-border-color);
}

.s-index .a-interview > div:nth-of-type(3) > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 9rem;
}

.s-index .a-interview > div:nth-of-type(3) > div:nth-of-type(2) {
  position: relative;
  inset: auto;
}

.s-index .a-interview .swiper-slide {
  transform: scale(0.9);
  transform-origin: center top;
  transition: all 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.s-index .a-interview .swiper-slide-active {
  transform: scale(1);
}

/*------------------------------------------------------------
  about
------------------------------------------------------------*/
.s-about .a-about > div {
  display: grid;
  gap: 3rem;
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-about .a-about > div {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about > div {
    gap: 5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about > div {
    grid-template-columns: 1fr 41.66666666%;
    gap: 6%;
  }
}

.s-about .a-about > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: linear-gradient(to bottom, #45E0FF, #1A58A8);
}

@media screen and (min-width: 600px) {
  .s-about .a-about > div:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-about > div:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

.s-about .a-about > div > * {
  position: relative;
}

.s-about .a-about h2 {
  margin-bottom: 2.4rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 {
    margin-bottom: 4rem;
    font-size: 4rem;
  }
}

.s-about .a-about img {
  transform: scale(1.01);
}

.s-about .a-service > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-service > div {
    gap: 1.4rem;
  }
}

.s-about .a-service > div a {
  display: grid;
  place-items: center;
  position: relative;
  height: 6rem;
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-about .a-service > div a {
    font-size: 1.65rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-service > div a {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-service > div a {
    height: 10rem;
  }
}

.s-about .a-service > div a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translate(0, -50%);
  width: 1rem;
  height: .6rem;
  background: var(--primary-color);
  clip-path: polygon(10% 0, 50% 76%, 90% 0, 100% 6%, 50% 100%, 0% 6%);
}

@media screen and (min-width: 1024px) {
  .s-about .a-service > div a:after {
    width: 1.6rem;
    height: .8rem;
  }
}

.s-about .a-service article {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-service article {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-service article {
    grid-template-columns: 1fr 42.66666666%;
    align-items: start;
    gap: 6%;
  }
}

.s-about .a-service h3 {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-service h3 {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

.s-about .a-service h3 span:nth-of-type(1) {
  color: var(--primary-color);
  font-size: 1.45rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

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

.s-about .a-service h3 span:nth-of-type(2) {
  margin-bottom: 2rem;
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.6;
}

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

.s-about .a-service p:nth-of-type(2) {
  position: relative;
  width: fit-content;
  padding: 2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-about .a-service p:nth-of-type(2) {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-service p:nth-of-type(2) {
    padding: 3rem 5rem;
    font-size: 2.4rem;
  }
}

.s-about .a-service p:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 2rem;
  height: 2rem;
  border-top: 0.2rem solid var(--primary-color);
  border-left: 0.2rem solid var(--primary-color);
}

@media screen and (min-width: 1280px) {
  .s-about .a-service p:nth-of-type(2):before {
    width: 4rem;
    height: 4rem;
  }
}

.s-about .a-service p:nth-of-type(2):after {
  content: '';
  display: block;
  position: absolute;
  inset: auto 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-bottom: 0.2rem solid var(--primary-color);
  border-right: 0.2rem solid var(--primary-color);
}

@media screen and (min-width: 1280px) {
  .s-about .a-service p:nth-of-type(2):after {
    width: 4rem;
    height: 4rem;
  }
}

.s-about .a-service > p {
  padding: 2rem 1rem;
  background: var(--white);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-about .a-service > p {
    padding: 4rem;
    font-size: 2.4rem;
  }
}

.s-about .a-delivery-destination > div {
  position: relative;
}

.s-about .a-delivery-destination > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-about .a-delivery-destination > div:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-delivery-destination > div:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

.s-about .a-delivery-destination > div > * {
  position: relative;
}

.s-about .a-delivery-destination ul {
  display: grid;
  gap: .8rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-delivery-destination ul {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 50% 1fr;
    grid-auto-flow: column;
    gap: .8rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-delivery-destination ul {
    grid-template-columns: 56% 1fr;
    gap: 1.2rem 0;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-delivery-destination ul {
    grid-template-columns: repeat(2, 1fr);
    max-width: 96%;
    margin: 0 auto;
  }
}

.s-about .a-delivery-destination li {
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-delivery-destination li {
    font-size: 2.2rem;
  }
}

.s-about .a-flow > div {
  display: grid;
  gap: 2.4rem;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .s-about .a-flow > div {
    grid-template-columns: repeat(5, auto);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-flow > div {
    gap: 3.4rem;
  }
}

.s-about .a-flow > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: .2rem;
  height: 100%;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-about .a-flow > div:before {
    width: 100%;
    height: .2rem;
  }
}

.s-about .a-flow > div div {
  display: grid;
  place-items: center;
  position: relative;
  width: 16rem;
  aspect-ratio: 1 / 1;
  padding-bottom: .2rem;
  border: 0.2rem solid var(--primary-color);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  font-size: 2.05rem;
  font-weight: 600;
}

@media screen and (min-width: 600px) {
  .s-about .a-flow > div div {
    width: 12rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-flow > div div {
    width: 16rem;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-flow > div div {
    width: 20rem;
  }
}

.s-about .a-department article {
  display: grid;
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-about .a-department article {
    grid-template-columns: 1fr 40%;
    align-items: end;
    gap: 0 3rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-department article {
    gap: 0 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-department article {
    grid-template-columns: 20% 1fr 30%;
    gap: 0 5rem;
  }
}

.s-about .a-department article:has(+ article) {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-department article:has(+ article) {
    margin-bottom: 3rem;
  }
}

.s-about .a-department article:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-about .a-department article:before {
    width: calc(100vw - 4rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-department article:before {
    width: calc(100vw - 6rem);
    max-width: 150rem;
  }
}

.s-about .a-department article > * {
  position: relative;
}

@media screen and (max-width: 599px) {
  .s-about .a-department div {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-department h3 {
    height: 100%;
    margin-bottom: 0;
  }
}

.s-about .a-department p:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
}

.s-about .a-department p:nth-of-type(2) span {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-bottom: .8rem;
  margin-right: .8rem;
  padding: .2rem 1.6rem;
  border-radius: calc(infinity * .1rem);
  background: #A2EAF9;
  font-size: 1.2rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-department p:nth-of-type(2) span {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-department figure {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 1280px) {
  .s-about .a-department figure {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

/*------------------------------------------------------------
  environment
------------------------------------------------------------*/
.s-environment .p-data-wrap {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-environment .p-data-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

.s-environment .p-data-wrap section {
  padding: 2rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 1024px) {
  .s-environment .p-data-wrap section {
    padding: 4rem;
    border-radius: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-environment .p-data-wrap section:nth-of-type(3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-column: 1 / 3;
  }
}

.s-environment .p-data-wrap h3 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-environment .p-data-wrap h3 {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-environment .p-data-wrap h3 {
    font-size: 3.4rem;
  }
}

.s-environment .p-data-wrap h3 + p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .s-environment .p-data-wrap h3 + p {
    min-height: 7.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment .p-data-wrap h3 + p {
    min-height: 10.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .s-environment .p-data-wrap h3 + p {
    min-height: 8.1rem;
  }
}

.s-environment .p-data-wrap .data {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-environment .p-data-wrap .data {
    margin-bottom: 3rem;
  }
}

.s-environment .p-data-wrap img {
  object-fit: contain;
  width: 100%;
  height: 12rem;
}

@media screen and (min-width: 1024px) {
  .s-environment .p-data-wrap img {
    height: 16rem;
  }
}

.s-environment .a-training section:nth-of-type(3) img {
  height: 14rem;
}

@media screen and (min-width: 600px) {
  .s-environment .a-training section:nth-of-type(3) img {
    height: 16rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment .a-training section:nth-of-type(3) img {
    height: 20rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-environment .a-training section:nth-of-type(3) img {
    height: 22rem;
  }
}

.s-environment .a-benefits section:nth-of-type(1) img {
  height: 14rem;
}

@media screen and (min-width: 1024px) {
  .s-environment .a-benefits section:nth-of-type(1) img {
    height: 20rem;
  }
}

@media screen and (min-width: 600px) {
  .s-environment .a-benefits section:nth-of-type(3) img {
    height: 14rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment .a-benefits section:nth-of-type(3) img {
    height: 18rem;
  }
}

.s-environment-benefit-system .p-box > div {
  border-radius: 2rem;
  background: var(--white);
}

.s-environment-benefit-system .p-box section {
  background: var(--secondary-color);
}

.s-environment-benefit-system .p-box section h3 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .p-box section h3 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1023px) {
  .s-environment-benefit-system .p-box img[src$=".svg"] {
    height: 12rem;
  }
}

.s-environment-benefit-system .p-box .border-heading {
  margin-bottom: 1.4rem;
  padding-bottom: .8rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .p-box .border-heading {
    margin-bottom: 2.4rem;
    padding-bottom: 1.4rem;
    font-size: 2rem;
  }
}

.s-environment-benefit-system .a-childcare > div,
.s-environment-benefit-system .a-nursing > div,
.s-environment-benefit-system .a-scholarship > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-environment-benefit-system .a-childcare > div,
  .s-environment-benefit-system .a-nursing > div,
  .s-environment-benefit-system .a-scholarship > div {
    grid-template-columns: 50% 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .a-childcare > div,
  .s-environment-benefit-system .a-nursing > div,
  .s-environment-benefit-system .a-scholarship > div {
    gap: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-environment-benefit-system .a-childcare > div,
  .s-environment-benefit-system .a-nursing > div,
  .s-environment-benefit-system .a-scholarship > div {
    grid-template-columns: 1fr 40%;
  }
}

.s-environment-benefit-system .a-childcare > div div:nth-of-type(2),
.s-environment-benefit-system .a-nursing > div div:nth-of-type(2),
.s-environment-benefit-system .a-scholarship > div div:nth-of-type(2) {
  display: grid;
  place-items: center;
  height: 20rem;
  background: var(--secondary-color);
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .a-childcare > div div:nth-of-type(2),
  .s-environment-benefit-system .a-nursing > div div:nth-of-type(2),
  .s-environment-benefit-system .a-scholarship > div div:nth-of-type(2) {
    height: 28rem;
  }
}

.s-environment-benefit-system .a-harassment > div > figure img {
  height: auto;
}

.s-environment-benefit-system .a-harassment > div > div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-environment-benefit-system .a-harassment > div > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .a-harassment > div > div {
    gap: 3rem;
  }
}

@media screen and (max-width: 1023px) {
  .s-environment-benefit-system .a-harassment section:nth-of-type(2) img[src$=".svg"] {
    height: 10rem;
  }
}

.s-environment-benefit-system .a-harassment section:nth-of-type(3) {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-environment-benefit-system .a-harassment section:nth-of-type(3) {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .a-harassment section:nth-of-type(3) {
    gap: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-environment-benefit-system .a-harassment section:nth-of-type(3) {
    gap: 8rem;
  }
}

.s-environment-benefit-system .a-harassment section > div {
  display: grid;
  gap: 1rem;
  place-items: center;
}

.s-environment-benefit-system .a-harassment section > div figure {
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 600px) {
  .s-environment-benefit-system .a-harassment section > div figure {
    min-height: 12rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-environment-benefit-system .a-harassment section > div figure {
    min-height: 14.1rem;
    margin-bottom: 2.6rem;
  }
}

/*------------------------------------------------------------
  job-and-people
------------------------------------------------------------*/
.s-job-and-people .p-number {
  color: var(--primary-color);
  font-size: 6.65rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

@media screen and (min-width: 600px) {
  .s-job-and-people .p-number {
    margin-bottom: -2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people .p-number {
    font-size: 12rem;
  }
}

.s-job-and-people .a-cross-talk div {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1023px) {
  .s-job-and-people .a-cross-talk div {
    margin-top: -8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people .a-cross-talk div {
    margin-top: -14rem;
  }
}

.s-job-and-people .a-interview > div:nth-of-type(2) {
  display: grid;
}

@media screen and (max-width: 599px) {
  .s-job-and-people .a-interview > div:nth-of-type(2) {
    gap: 3rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people .a-interview > div:nth-of-type(2) {
    grid-template-columns: 34% 1fr;
  }
}

.s-job-and-people-detail .a-video h2 {
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: -2rem;
  margin-right: 2rem;
  padding: 1.4rem 1.2rem 1.4rem 3.8rem;
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 600;
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-video h2 {
    margin-left: -1rem;
    padding-right: 3.6rem;
    padding-left: 3.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-video h2 {
    margin-bottom: -3rem;
    margin-left: 0;
    padding: 1.6rem 5rem;
    font-size: 2rem;
  }
}

.s-job-and-people-detail .a-video h2:before {
  content: '';
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 100%;
  height: 100%;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-video h2:before {
    border-radius: .6rem 1.4rem .6rem 1.4rem;
  }
}

.s-job-and-people-detail .a-video a {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.s-job-and-people-detail .a-video a.is-in:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-job-and-people-detail .a-video a.is-in:after {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-job-and-people-detail .a-video a.is-in figure:before {
  animation: 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both slide--image;
}

.s-job-and-people-detail .a-video a:before, .s-job-and-people-detail .a-video a:after {
  content: '';
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.6), rgba(26, 88, 168, 0.6));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-video a:before, .s-job-and-people-detail .a-video a:after {
    width: 10%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-video a:before, .s-job-and-people-detail .a-video a:after {
    width: 12%;
  }
}

.s-job-and-people-detail .a-video a:before {
  inset: 20% auto auto 104%;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-video a:before {
    inset: 20% auto auto 112%;
  }
}

@media screen and (min-width: 1280px) {
  .s-job-and-people-detail .a-video a:before {
    inset: 20% auto auto 126%;
  }
}

@media screen and (min-width: 1366px) {
  .s-job-and-people-detail .a-video a:before {
    inset: 20% auto auto 130%;
  }
}

@media screen and (min-width: 1440px) {
  .s-job-and-people-detail .a-video a:before {
    inset: 20% auto auto 136%;
  }
}

.s-job-and-people-detail .a-video a:after {
  inset: 100% auto auto 94%;
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-video a:after {
    inset: 100% auto auto 96%;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-video a:after {
    inset: 100% auto auto 98%;
  }
}

.s-job-and-people-detail .a-video a figure:before {
  content: '';
  display: block;
  position: absolute;
  inset: 80% auto auto -2%;
  transform: translate(-50%, -50%) skew(-33deg);
  width: 14%;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(to bottom, rgba(69, 224, 255, 0.6), rgba(26, 88, 168, 0.6));
  pointer-events: none;
  border-radius: .6rem 1.8rem .6rem 1.8rem;
  clip-path: inset(0 0 100%);
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-video a figure:before {
    width: 10%;
    border-radius: .6rem 2.2rem .6rem 2.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-video a figure:before {
    inset: 80% auto auto -12%;
    width: 12%;
  }
}

@media screen and (min-width: 1280px) {
  .s-job-and-people-detail .a-video a figure:before {
    inset: 80% auto auto -26%;
  }
}

@media screen and (min-width: 1366px) {
  .s-job-and-people-detail .a-video a figure:before {
    inset: 80% auto auto -30%;
  }
}

@media screen and (min-width: 1440px) {
  .s-job-and-people-detail .a-video a figure:before {
    inset: 80% auto auto -36%;
  }
}

.s-job-and-people-detail .a-schedule > div {
  border-radius: 2rem;
  background: var(--white);
}

.s-job-and-people-detail .a-schedule h2 {
  padding: 1.8rem 2rem 1.6rem;
  color: var(--primary-color);
  font-size: 1.85rem;
  font-weight: 600;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule h2 {
    padding: 2.8rem 4rem 2.6rem;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-job-and-people-detail .a-schedule h2:active:not(:disabled), .s-job-and-people-detail .a-schedule h2:hover:not(:disabled) {
    color: var(--light-blue);
    transition-duration: 0.4s;
  }
}

.s-job-and-people-detail .a-schedule table {
  margin: 0 2rem 4rem;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule table {
    margin: 0 8rem 6rem;
  }
}

.s-job-and-people-detail .a-schedule tr:nth-of-type(2n+1) th, .s-job-and-people-detail .a-schedule tr:nth-of-type(2n+1) td {
  background: var(--secondary-color);
}

.s-job-and-people-detail .a-schedule tr:last-child th:before {
  content: none;
}

.s-job-and-people-detail .a-schedule th, .s-job-and-people-detail .a-schedule td {
  padding: 1.6rem .4rem;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule th, .s-job-and-people-detail .a-schedule td {
    padding: 2.2rem 1rem;
  }
}

.s-job-and-people-detail .a-schedule th {
  position: relative;
  width: 9rem;
  padding-left: 3rem;
  border-radius: 1.4rem 0 0 1.4rem;
  color: var(--primary-color);
  font-size: 1.65rem;
  font-size: rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
  vertical-align: top;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule th {
    width: 14rem;
    padding-left: 8rem;
    border-radius: 2rem 0 0 2rem;
    font-size: 2rem;
  }
}

.s-job-and-people-detail .a-schedule th:before {
  content: '';
  display: block;
  position: absolute;
  inset: 2.5rem auto auto 1.6rem;
  z-index: 1;
  transform: translate(-50%, 0);
  width: .1rem;
  height: 100%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule th:before {
    inset: 3.3rem auto auto 4.6rem;
  }
}

.s-job-and-people-detail .a-schedule th:after {
  content: '';
  display: block;
  position: absolute;
  inset: 2.5rem auto auto 1.6rem;
  z-index: 1;
  transform: translate(-50%, 0);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule th:after {
    inset: 3.3rem auto auto 4.6rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.s-job-and-people-detail .a-schedule td {
  padding-top: 1.7rem;
  border-radius: 0 1.4rem 1.4rem 0;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule td {
    padding-top: 2.3rem;
    padding-right: 4rem;
    border-radius: 0 2rem 2rem 0;
  }
}

.s-job-and-people-detail .a-schedule p:nth-of-type(1) {
  color: var(--primary-color);
  font-size: 1.65rem;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-schedule p:nth-of-type(1) {
    font-size: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-post .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .wp-block-columns {
    gap: 9.16666666%;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-post .wp-block-columns > .wp-block-column {
    flex-basis: 66.66% !important;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .wp-block-columns > .wp-block-column {
    flex-basis: 49.16667% !important;
  }
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-post .wp-block-columns > .wp-block-column:has(figure) {
    flex-basis: 33.33% !important;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .wp-block-columns > .wp-block-column:has(figure) {
    flex-basis: 41.66667% !important;
  }
}

.s-job-and-people-detail .a-post .wp-block-image img {
  width: 100%;
  border-radius: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .wp-block-image img {
    border-radius: 2rem;
  }
}

.s-job-and-people-detail .a-post .question {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 5.65rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .question {
    font-size: 10rem;
  }
}

.s-job-and-people-detail .a-post .category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.s-job-and-people-detail .a-post .category li {
  margin-bottom: .4rem;
  margin-right: .6rem;
  padding: .3rem 1rem .1rem;
  border-radius: calc(infinity * .1rem);
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-post .category li {
    font-size: 1.2rem;
  }
}

.s-job-and-people-detail .a-faq section > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 2.2rem 5rem 1.8rem 2rem;
  border-radius: 1.4rem;
  background: var(--white);
  line-height: 1.4;
  transition: border-radius 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-faq section > div:nth-of-type(1) {
    grid-template-columns: 6rem 1fr;
    padding: 3rem 5rem 1.8rem 4rem;
    border-radius: 2rem;
  }
}

.s-job-and-people-detail .a-faq section > div:nth-of-type(1).is-open {
  border-radius: 1.4rem 1.4rem 0 0;
}

@media screen and (min-width: 1280px) {
  .s-job-and-people-detail .a-faq section > div:nth-of-type(1):active:not(:disabled) h3, .s-job-and-people-detail .a-faq section > div:nth-of-type(1):hover:not(:disabled) h3 {
    color: var(--light-blue);
    transition-duration: 0.4s;
  }
}

.s-job-and-people-detail .a-faq section > div:nth-of-type(1) p {
  transform: translate(0, -0.4rem);
  color: var(--light-blue);
  font-size: 1.95rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-faq section > div:nth-of-type(1) p {
    transform: translate(0, -0.6rem);
    font-size: 2.6rem;
  }
}

.s-job-and-people-detail .a-faq section > div:nth-of-type(2) > div > div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 2rem;
  border-radius: 0 0 1.4rem 1.4rem;
  background: var(--secondary-color);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-faq section > div:nth-of-type(2) > div > div {
    grid-template-columns: 6rem 1fr;
    padding: 3rem 4rem;
    border-radius: 0 0 2rem 2rem;
  }
}

.s-job-and-people-detail .a-faq section > div:nth-of-type(2) > div > div > p {
  transform: translate(0, -0.6rem);
  color: var(--primary-color);
  font-size: 1.95rem;
  font-weight: 500;
  font-family: "Poppins", "IBM Plex Sans JP", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  letter-spacing: -.04em;
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-faq section > div:nth-of-type(2) > div > div > p {
    transform: translate(0, -1rem);
    font-size: 2.6rem;
  }
}

.s-job-and-people-detail .a-faq h3 {
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 600;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 1024px) {
  .s-job-and-people-detail .a-faq h3 {
    font-size: 1.8rem;
  }
}

.s-job-and-people-detail .a-backs {
  display: grid;
  gap: 1rem;
  place-content: center;
}

@media screen and (min-width: 600px) {
  .s-job-and-people-detail .a-backs {
    grid-template-columns: repeat(2, auto);
    gap: 2rem;
  }
}

/*------------------------------------------------------------
  job-description
------------------------------------------------------------*/
.s-job-description-detail .a-mynavi a {
  display: block;
  width: 20rem;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-job-description-detail .a-mynavi a {
    width: 29rem;
  }
}

.s-job-description-detail .a-mynavi a:active:not(:disabled), .s-job-description-detail .a-mynavi a:hover:not(:disabled) {
  opacity: .7;
  transition-duration: 0.25s;
}

.s-job-description-detail .a-job-description article > div {
  border-radius: 2rem;
  background: var(--white);
}

.s-job-description-detail .a-job-description table {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .s-job-description-detail .a-job-description tr {
    display: grid;
  }
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-job-description tr:first-child th, .s-job-description-detail .a-job-description tr:first-child td {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 599px) {
  .s-job-description-detail .a-job-description tr:first-child th {
    padding-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-job-description th, .s-job-description-detail .a-job-description td {
    padding: 2rem 0;
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

.s-job-description-detail .a-job-description th {
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .s-job-description-detail .a-job-description th {
    padding-top: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-job-description th {
    width: 16rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-description-detail .a-job-description th {
    width: 20rem;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .s-job-description-detail .a-job-description td {
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

.s-job-description-detail .a-flow {
  position: relative;
  z-index: 1;
}

.s-job-description-detail .a-flow div {
  display: grid;
  gap: 3rem;
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-flow div {
    gap: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-flow div:before {
    content: '';
    display: block;
    position: absolute;
    inset: 50% auto auto 5%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: .1rem;
    height: 100%;
    background: var(--primary-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-job-description-detail .a-flow div:before {
    left: 3.8%;
  }
}

.s-job-description-detail .a-flow section {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-job-description-detail .a-flow section {
    grid-template-columns: 22rem 1fr;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-job-description-detail .a-flow section {
    grid-template-columns: 30rem 1fr;
    gap: 4rem;
  }
}

.s-job-description-detail .a-flow h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 3rem;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .s-job-description-detail .a-flow h3 {
    gap: 3rem;
    height: 10rem;
    padding: 2.4rem 4rem;
  }
}

.s-job-description-detail .a-entry {
  position: relative;
  z-index: 1;
}

/*------------------------------------------------------------
  entry
------------------------------------------------------------*/
.s-entry-detail .a-form {
  position: relative;
  z-index: 1;
}

.s-entry-detail .a-form .box {
  border-radius: 2rem;
  background: var(--white);
}

@media screen and (min-width: 1280px) {
  .s-entry-detail .a-form .box {
    padding-right: 8rem;
    padding-left: 8rem;
  }
}

/*------------------------------------------------------------
  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-point-1 {
  opacity: .1;
}

.u-opa-point-2 {
  opacity: .2;
}

.u-opa-point-3 {
  opacity: .3;
}

.u-opa-point-4 {
  opacity: .4;
}

.u-opa-point-5 {
  opacity: .5;
}

.u-opa-point-6 {
  opacity: .6;
}

.u-opa-point-7 {
  opacity: .7;
}

.u-opa-point-8 {
  opacity: .8;
}

.u-opa-point-9 {
  opacity: .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-mt-minus-xxxxs {
  margin-top: -0.25rem !important;
}

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

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

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

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

@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--two, .u-ellipsis--three, .u-ellipsis--four {
  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 */