@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%;`.
  */
  -moz-box-sizing: border-box;
       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%;
  -ms-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. */
  -webkit-padding-start: unset;
     -moz-padding-start: unset;
          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. */
  -webkit-margin-start: unset;
     -moz-margin-start: unset;
          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. */
  -moz-font-feature-settings: initial;
       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., `⇒`).
  */
  -moz-font-variant-ligatures: none;
       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
  */
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
     -moz-text-decoration-style: dotted;
          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:-webkit-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;`.
  */
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:-moz-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;`.
  */
  -moz-text-decoration-line: unset;
       text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
: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;`.
  */
  -webkit-text-decoration-line: unset;
     -moz-text-decoration-line: unset;
          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;
  -moz-border-radius: unset;
       border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ORIGINAL */
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, strong, dt, th) {
  font-weight: 500;
}

:where(button) {
  border: none;
  margin: 0;
  padding: 0;
}

/* FONT ------------------------------------------->
'Roboto': 100 - 900
'Noto Sans JP': 100 - 900
Thin: 100 / .w_thin
ExtraLight: 200 / .w_eLight
Light: 300 / .w_light
Regular: 400 / .w_reg
Medium: 500 / .w_med
SemiBold: 600 / .w_sBold
Bold: 700 / .w_bold
ExtraBold: 800 / .w_eBold
Black: 900 / .w_black

/*-------------------------------------------> font */
.w_thin {
  font-weight: 100;
}

.w_eLight {
  font-weight: 200;
}

.w_light {
  font-weight: 300;
}

.w_reg {
  font-weight: 400;
}

.w_med, .f_def {
  font-weight: 500;
}

.w_sBold {
  font-weight: 600;
}

.w_bold {
  font-weight: 700;
}

.w_eBold {
  font-weight: 800;
}

.w_black {
  font-weight: 900;
}

.f_en, .en {
  font-family: "Libre Caslon Display", "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.f_ja, .ja {
  font-family: "Zen Kaku Gothic New", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/*-------------------------------------------> html / body style */
html, body {
  width: 100%;
  min-height: 100%;
  background: #FFFFFF;
}

html, body, * {
  -webkit-font-smoothing: antialiased;
  -moz-font-feature-settings: "palt";
       font-feature-settings: "palt";
  font-variant: normal;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  color: #0032aa;
  font-family: "Zen Kaku Gothic New", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1;
  overflow-x: hidden;
  overflow-y: auto;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  body .pc {
    display: block;
  }
  body .sp {
    display: none;
  }
  body img.pc, body .svg.pc {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  body {
    width: 100vw;
  }
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
  body img.pc {
    display: none;
  }
  body img.sp, body .svg.sp {
    display: inline;
  }
}

.hide {
  display: none;
}

/*-------------------------------------------> link style */
a {
  color: inherit;
  outline: none;
  cursor: pointer;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .OverOpacity,
  .OverOpacityGroup a {
    opacity: 1;
    -webkit-transition: opacity .15s ease-out;
    -moz-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out;
  }
  .OverOpacity:hover,
  .OverOpacityGroup a:hover {
    opacity: 0.4;
  }
  .linkUnderline:hover,
  .linkUnderlineGroup a:hover {
    text-decoration: underline;
  }
}

/*-------------------------------------------> Common style */
.cqBase {
  container-type: inline-size;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

br.pc {
  display: block;
}

br.pc.sp {
  display: block;
}

br.tab {
  display: none;
}

br.tab.pc {
  display: block;
}

br.tab.sp {
  display: none;
}

br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
  br.tab {
    display: none;
  }
  br.tab.pc {
    display: none;
  }
  br.tab.sp {
    display: block;
  }
  br.sp {
    display: block;
  }
  br.sp.pc {
    display: block;
  }
}

/*-------------------------------------------> Wave BackGround */
.sectionBlock {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sectionBlock:has(.wavyClip) {
  margin-top: -70px;
}

@media screen and (max-width: 767px) {
  .sectionBlock:has(.wavyClip) {
    margin-top: -webkit-calc(-100% * (46 / 375));
    margin-top: -moz-calc(-100% * (46 / 375));
    margin-top: calc(-100% * (46 / 375));
  }
}

.sectionBlock .bgLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: repeat;
  background-position: center top;
}

@media screen and (max-width: 767px) {
  .sectionBlock .bgLayer {
    -moz-background-size: 100% auto;
         background-size: 100% auto;
    background-repeat: repeat-y;
  }
}

.sectionBlock .wavyClip {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201732%203000%22%3E%3Cdefs%3E%3Cstyle%3E%20%20%20%20%20%20.cls-1%20%7B%20%20%20%20%20%20%20%20fill%3A%20%2379ac2b%3B%20%20%20%20%20%20%7D%20%20%20%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M1732%2C0c-139.77%2C0-216.42%2C24.88-278.01%2C44.87-47.13%2C15.3-78.27%2C25.41-155%2C25.41s-107.86-10.11-154.99-25.41C1082.41%2C24.88%2C1005.77%2C0%2C865.99%2C0s-216.42%2C24.88-278%2C44.87c-47.13%2C15.3-78.27%2C25.41-154.99%2C25.41s-107.86-10.11-154.99-25.41C216.42%2C24.88%2C139.77%2C0%2C0%2C0v3000h1732V0Z%22%2F%3E%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201732%203000%22%3E%3Cdefs%3E%3Cstyle%3E%20%20%20%20%20%20.cls-1%20%7B%20%20%20%20%20%20%20%20fill%3A%20%2379ac2b%3B%20%20%20%20%20%20%7D%20%20%20%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M1732%2C0c-139.77%2C0-216.42%2C24.88-278.01%2C44.87-47.13%2C15.3-78.27%2C25.41-155%2C25.41s-107.86-10.11-154.99-25.41C1082.41%2C24.88%2C1005.77%2C0%2C865.99%2C0s-216.42%2C24.88-278%2C44.87c-47.13%2C15.3-78.27%2C25.41-154.99%2C25.41s-107.86-10.11-154.99-25.41C216.42%2C24.88%2C139.77%2C0%2C0%2C0v3000h1732V0Z%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-size: 1732px auto;
          mask-size: 1732px auto;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: center top;
          mask-position: center top;
}

@media screen and (max-width: 767px) {
  .sectionBlock .wavyClip {
    -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20375%205000%22%3E%3Cpath%20id%3D%22wave%22%20d%3D%22M0%2C23.04v4976.96h375V23.04C250%2C102.85%2C125-56.77%2C0%2C23.04Z%22%2F%3E%3C%2Fsvg%3E");
            mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20375%205000%22%3E%3Cpath%20id%3D%22wave%22%20d%3D%22M0%2C23.04v4976.96h375V23.04C250%2C102.85%2C125-56.77%2C0%2C23.04Z%22%2F%3E%3C%2Fsvg%3E");
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
  }
}

.sectionBlock .contentLayer {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .sectionBlock .contentLayer {
    padding: -webkit-calc(100% * (46 / 375)) 0;
    padding: -moz-calc(100% * (46 / 375)) 0;
    padding: calc(100% * (46 / 375)) 0;
  }
}

/*-------------------------------------------> Header */
/*-------------------------------------------> Navi */
/*-------------------------------------------> Main */
/*-------------------------------------------> Footer */
/*-------------------------------------------> JS plugin */
/* Slick */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: text;
   -ms-user-select: text;
       user-select: text;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.draggable {
  cursor: pointer;
  cursor: -moz-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.slick-list.dragging {
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.4;
}

#HOME {
  overflow: hidden;
  -webkit-animation: afterHidden 0.3s ease 3s forwards;
     -moz-animation: afterHidden 0.3s ease 3s forwards;
          animation: afterHidden 0.3s ease 3s forwards;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #005ac8;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-animation: afterLoad 0.5s ease 3s forwards;
     -moz-animation: afterLoad 0.5s ease 3s forwards;
          animation: afterLoad 0.5s ease 3s forwards;
}

#loading figure {
  width: 105px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #loading figure {
    width: 17.86667vw;
  }
}

#Header .logo {
  position: fixed;
  width: 142.72px;
  height: 63.71px;
  left: 2.86458%;
  top: 54px;
  line-height: 0;
  z-index: 99;
}

#Header .logo a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/headerLogo.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  #Header .logo {
    width: 21.33333vw;
    height: 9.33333vw;
    top: 5.33333vw;
    left: 5.33333vw;
  }
}

#Header .menuIcon {
  position: fixed;
  width: 37.89px;
  height: 49.42px;
  right: 2.86458%;
  top: 55px;
  line-height: 0;
  z-index: 99;
}

#Header .menuIcon a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/headerMenu.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #Header .menuIcon {
    width: 8vw;
    height: 10.4vw;
    top: 5.33333vw;
    right: 5.33333vw;
  }
}

#Header .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 90;
  background: #0032aa;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Header .nav__main {
  max-width: 968px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 195px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding-top: 25.33333vw;
  }
}

#Header .nav__main--menu {
  width: 602px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu {
    width: 100%;
    padding: 0 8.8vw;
  }
}

#Header .nav__main--menu > ul::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

#Header .nav__main--menu > ul > li {
  float: left;
  width: 242px;
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul > li {
    float: none;
    width: 100%;
    margin-bottom: 3.73333vw;
  }
  #Header .nav__main--menu > ul > li.order1 {
    -webkit-box-ordinal-group: 2;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #Header .nav__main--menu > ul > li.order2 {
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #Header .nav__main--menu > ul > li.order3 {
    -webkit-box-ordinal-group: 4;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #Header .nav__main--menu > ul > li.order4 {
    -webkit-box-ordinal-group: 5;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #Header .nav__main--menu > ul > li.order5 {
    -webkit-box-ordinal-group: 6;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  #Header .nav__main--menu > ul > li.order6 {
    -webkit-box-ordinal-group: 7;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  #Header .nav__main--menu > ul > li.order7 {
    -webkit-box-ordinal-group: 8;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}

#Header .nav__main--menu > ul > li.flr {
  float: right;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul > li.flr {
    float: none;
    width: 100%;
  }
}

#Header .nav__main--menu > ul > li > a {
  line-height: 0;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px dotted #fff;
}

#Header .nav__main--menu > ul > li > a img, #Header .nav__main--menu > ul > li > a .svg {
  height: 38px;
  width: auto;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul > li > a {
    padding-bottom: 4vw;
  }
  #Header .nav__main--menu > ul > li > a img, #Header .nav__main--menu > ul > li > a .svg {
    height: 8.53333vw;
  }
}

#Header .nav__main--menu > ul > li > a:hover {
  opacity: 1;
}

#Header .nav__main--menu > ul > li > a:hover .svg path {
  fill: #6f94cd !important;
  stroke: #6f94cd !important;
}

#Header .nav__main--menu > ul > li > i {
  display: none;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul > li > i {
    display: block;
    width: 4vw;
    height: 4vw;
    position: absolute;
    right: 0;
    top: 1.86667vw;
    z-index: 9;
  }
  #Header .nav__main--menu > ul > li > i::before, #Header .nav__main--menu > ul > li > i::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    -webkit-transform-origin: 50% 50%;
       -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    background: #fff;
  }
  #Header .nav__main--menu > ul > li > i::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
       -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

#Header .nav__main--menu > ul > li > ul {
  padding: 9px 16px 0;
}

#Header .nav__main--menu > ul > li > ul > li > a {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Header .nav__main--menu > ul > li > ul > li > a:hover {
  opacity: 1;
  color: #6f94cd;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--menu > ul > li > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 2.4vw 4vw 0;
    display: none;
  }
  #Header .nav__main--menu > ul > li > ul::after {
    content: "";
    clear: both;
    display: table;
  }
  #Header .nav__main--menu > ul > li > ul.st2 > li {
    width: 100%;
    margin-right: 0;
  }
  #Header .nav__main--menu > ul > li > ul > li {
    width: 30%;
    margin-right: 5%;
    float: left;
  }
  #Header .nav__main--menu > ul > li > ul > li > a {
    font-size: 3.73333vw;
    line-height: 6.93333vw;
  }
}

#Header .nav__main--menu > ul > li.open > i::after {
  -webkit-transform: translateY(-50%) rotate(0);
     -moz-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

#Header .nav__main--social {
  width: 260px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social {
    width: 100%;
    margin-top: 6.66667vw;
    padding: 0 8.8vw;
  }
}

#Header .nav__main--social dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#Header .nav__main--social dl dt {
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl dt {
    margin-right: 3.46667vw;
  }
}

#Header .nav__main--social dl dt img, #Header .nav__main--social dl dt .svg {
  width: 128px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl dt img, #Header .nav__main--social dl dt .svg {
    width: 21.06667vw;
  }
}

#Header .nav__main--social dl dd {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#Header .nav__main--social dl dd ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl dd ul {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#Header .nav__main--social dl dd ul li {
  line-height: 0;
}

#Header .nav__main--social dl dd ul li + li {
  margin-left: 19px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl dd ul li + li {
    margin-left: 4vw;
  }
}

#Header .nav__main--social dl dd ul li a {
  display: inline-block;
  line-height: 0;
}

#Header .nav__main--social dl dd ul li a img, #Header .nav__main--social dl dd ul li a .svg {
  width: auto;
  height: 39px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social dl dd ul li a img, #Header .nav__main--social dl dd ul li a .svg {
    height: 10.4vw;
  }
}

#Header .nav__main--social .btn {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social .btn {
    margin-top: 3.46667vw;
    text-align: left;
  }
}

#Header .nav__main--social .btn a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 255px;
  height: 45px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  -moz-border-radius: 22px;
       border-radius: 22px;
  padding: 0 0 0 25px;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Header .nav__main--social .btn a::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icBlank.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Header .nav__main--social .btn a:hover {
  background: #fff;
  color: #0032aa;
  opacity: 1;
}

#Header .nav__main--social .btn a:hover::after {
  background: url("../images/icBlank_hr.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #Header .nav__main--social .btn a {
    width: 55.2vw;
    height: 9.86667vw;
    -moz-border-radius: 4.8vw;
         border-radius: 4.8vw;
    padding: 0 0 0 5.33333vw;
    font-size: 3.73333vw;
  }
  #Header .nav__main--social .btn a::after {
    width: 3.73333vw;
    height: 3.73333vw;
    right: 5.33333vw;
  }
}

#Header.change .logo a {
  background: url("../images/headerLogo_scroll.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

#Header.change .menuIcon a {
  background: url("../images/headerMenu_scroll.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

#Header.open .nav {
  height: 100vh;
  overflow: auto;
}

#Header.open .logo a {
  background: url("../images/headerLogo.svg") 0 0 no-repeat !important;
  -moz-background-size: contain;
       background-size: contain;
}

#Header.open .menuIcon {
  width: 48px;
  height: 38px;
}

@media screen and (max-width: 767px) {
  #Header.open .menuIcon {
    width: 8vw;
    height: 6.4vw;
  }
}

#Header.open .menuIcon a {
  background: url("../images/headerMenu_close.svg") 0 0 no-repeat !important;
  -moz-background-size: contain;
       background-size: contain;
}

#Footer .footer__fig {
  margin-top: -25px;
}

#Footer .footer__fig img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #Footer .footer__fig {
    padding-top: 18.66667vw;
  }
}

#Footer .footer__main {
  background: #0032aa;
}

#Footer .footer__main--inner {
  max-width: 968px;
  width: 100%;
  margin: auto;
  position: relative;
  padding: 75px 0 65px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__main--inner {
    padding: 12vw 0 9.33333vw;
  }
}

#Footer .footer__main--top {
  position: absolute;
  width: 80px;
  right: 0;
  bottom: 190px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__main--top {
    bottom: 45.33333vw;
    right: 6.66667vw;
    width: 17.33333vw;
  }
}

#Footer .footer__main--top a {
  display: block;
  width: 100%;
  line-height: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
}

#Footer .footer__main--top a img, #Footer .footer__main--top a .svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

#Footer .footer__main--top a:hover {
  opacity: 1;
  background: #fff;
}

#Footer .footer__main--top a:hover .svg path, #Footer .footer__main--top a:hover .svg line, #Footer .footer__main--top a:hover .svg polygon {
  fill: #0032aa !important;
  stroke: #0032aa !important;
}

#Footer .footer__menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

#Footer .footer__menu--menu {
  width: 602px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu {
    width: 100%;
    padding: 0 8.8vw;
  }
}

#Footer .footer__menu--menu > ul::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

#Footer .footer__menu--menu > ul > li {
  float: left;
  width: 242px;
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul > li {
    float: none;
    width: 100%;
    margin-bottom: 3.73333vw;
  }
  #Footer .footer__menu--menu > ul > li.order1 {
    -webkit-box-ordinal-group: 2;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #Footer .footer__menu--menu > ul > li.order2 {
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #Footer .footer__menu--menu > ul > li.order3 {
    -webkit-box-ordinal-group: 4;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #Footer .footer__menu--menu > ul > li.order4 {
    -webkit-box-ordinal-group: 5;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #Footer .footer__menu--menu > ul > li.order5 {
    -webkit-box-ordinal-group: 6;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  #Footer .footer__menu--menu > ul > li.order6 {
    -webkit-box-ordinal-group: 7;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  #Footer .footer__menu--menu > ul > li.order7 {
    -webkit-box-ordinal-group: 8;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}

#Footer .footer__menu--menu > ul > li.flr {
  float: right;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul > li.flr {
    float: none;
    width: 100%;
  }
}

#Footer .footer__menu--menu > ul > li > a {
  line-height: 0;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px dotted #fff;
}

#Footer .footer__menu--menu > ul > li > a img, #Footer .footer__menu--menu > ul > li > a .svg {
  height: 38px;
  width: auto;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul > li > a {
    padding-bottom: 4vw;
  }
  #Footer .footer__menu--menu > ul > li > a img, #Footer .footer__menu--menu > ul > li > a .svg {
    height: 8.53333vw;
  }
}

#Footer .footer__menu--menu > ul > li > a:hover {
  opacity: 1;
}

#Footer .footer__menu--menu > ul > li > a:hover .svg path {
  fill: #6f94cd !important;
  stroke: #6f94cd !important;
}

#Footer .footer__menu--menu > ul > li > i {
  display: none;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul > li > i {
    display: block;
    width: 4vw;
    height: 4vw;
    position: absolute;
    right: 0;
    top: 1.86667vw;
    z-index: 9;
  }
  #Footer .footer__menu--menu > ul > li > i::before, #Footer .footer__menu--menu > ul > li > i::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    -webkit-transform-origin: 50% 50%;
       -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    background: #fff;
  }
  #Footer .footer__menu--menu > ul > li > i::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
       -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

#Footer .footer__menu--menu > ul > li > ul {
  padding: 15px 16px 0;
}

#Footer .footer__menu--menu > ul > li > ul > li > a {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Footer .footer__menu--menu > ul > li > ul > li > a:hover {
  opacity: 1;
  color: #6f94cd;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--menu > ul > li > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 2.4vw 4vw 0;
    display: none;
  }
  #Footer .footer__menu--menu > ul > li > ul::after {
    content: "";
    clear: both;
    display: table;
  }
  #Footer .footer__menu--menu > ul > li > ul.st2 > li {
    width: 100%;
    margin-right: 0;
  }
  #Footer .footer__menu--menu > ul > li > ul > li {
    width: 30%;
    margin-right: 5%;
    float: left;
  }
  #Footer .footer__menu--menu > ul > li > ul > li > a {
    font-size: 3.73333vw;
    line-height: 6.93333vw;
  }
}

#Footer .footer__menu--menu > ul > li.open > i::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
     -moz-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

#Footer .footer__menu--social {
  width: 260px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social {
    width: 100%;
    margin-top: 6.66667vw;
    padding: 0 8.8vw;
  }
}

#Footer .footer__menu--social dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#Footer .footer__menu--social dl dt {
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl dt {
    margin-right: 3.46667vw;
  }
}

#Footer .footer__menu--social dl dt img, #Footer .footer__menu--social dl dt .svg {
  width: 128px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl dt img, #Footer .footer__menu--social dl dt .svg {
    width: 21.06667vw;
  }
}

#Footer .footer__menu--social dl dd {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#Footer .footer__menu--social dl dd ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl dd ul {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#Footer .footer__menu--social dl dd ul li {
  line-height: 0;
}

#Footer .footer__menu--social dl dd ul li + li {
  margin-left: 19px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl dd ul li + li {
    margin-left: 4vw;
  }
}

#Footer .footer__menu--social dl dd ul li a {
  display: inline-block;
  line-height: 0;
}

#Footer .footer__menu--social dl dd ul li a img, #Footer .footer__menu--social dl dd ul li a .svg {
  width: auto;
  height: 39px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social dl dd ul li a img, #Footer .footer__menu--social dl dd ul li a .svg {
    height: 10.4vw;
  }
}

#Footer .footer__menu--social .btn {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social .btn {
    margin-top: 3.46667vw;
    text-align: left;
  }
}

#Footer .footer__menu--social .btn a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 255px;
  height: 45px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  -moz-border-radius: 22px;
       border-radius: 22px;
  padding: 0 0 0 25px;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Footer .footer__menu--social .btn a::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icBlank.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Footer .footer__menu--social .btn a:hover {
  opacity: 1;
  background: #fff;
  color: #0032aa;
  border-color: #0032aa;
}

#Footer .footer__menu--social .btn a:hover::after {
  background: url("../images/icBlank_hr.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #Footer .footer__menu--social .btn a {
    width: 52.44vw;
    height: 9.37333vw;
    -moz-border-radius: 4.8vw;
         border-radius: 4.8vw;
    padding: 0 0 0 5.33333vw;
    font-size: 3.73333vw;
  }
  #Footer .footer__menu--social .btn a::after {
    width: 3.73333vw;
    height: 3.73333vw;
    right: 5.33333vw;
  }
}

#Footer .footer__info {
  margin-top: 97px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  #Footer .footer__info {
    margin-top: 9.86667vw;
    padding: 0 6.66667vw;
    -webkit-box-align: start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#Footer .footer__info--logo {
  width: 268px;
  margin-right: 22px;
}

@media screen and (max-width: 767px) {
  #Footer .footer__info--logo {
    width: 20.8vw;
    margin-right: 1.6vw;
  }
}

#Footer .footer__info--logo a {
  display: block;
  line-height: 0;
}

#Footer .footer__info--logo a img, #Footer .footer__info--logo a .svg {
  width: 100%;
  height: auto;
}

#Footer .footer__info--main {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}

#Footer .footer__info--main .name {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #Footer .footer__info--main .name {
    font-size: 4.26667vw;
    line-height: 5.86667vw;
  }
}

#Footer .footer__info--main address {
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #Footer .footer__info--main address {
    font-size: 3.46667vw;
    line-height: 5.86667vw;
  }
}

#Footer .footer__info--main .by {
  margin-top: 15px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #Footer .footer__info--main .by {
    font-size: 3.46667vw;
    line-height: 5.86667vw;
    margin-top: 2.66667vw;
  }
}

#COMING {
  background: #e9f7ff;
}

#COMING .soon__main {
  margin-top: 460px;
  margin-bottom: 135px;
}

@media screen and (max-width: 767px) {
  #COMING .soon__main {
    margin-top: 58.66667vw;
    margin-bottom: 18.66667vw;
  }
}

#COMING .soon__main h2 {
  text-align: center;
  line-height: 0;
}

#COMING .soon__main h2 img, #COMING .soon__main h2 .svg {
  width: 475px;
}

@media screen and (max-width: 767px) {
  #COMING .soon__main h2 img, #COMING .soon__main h2 .svg {
    width: 77.33333vw;
  }
}

#COMING .soon__main .txt {
  text-align: center;
  font-size: 17px;
  line-height: 40px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 34px;
}

@media screen and (max-width: 767px) {
  #COMING .soon__main .txt {
    font-size: 3.73333vw;
    line-height: 8vw;
    margin: 7.2vw -2.66667vw 0;
  }
}

#COMING .soon__main .btnBack {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #COMING .soon__main .btnBack {
    margin-top: 33.33333vw;
  }
}

#COMING .soon__main .btnBack a {
  width: 258px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -moz-border-radius: 22px;
       border-radius: 22px;
  border: 1px solid #0032aa;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#COMING .soon__main .btnBack a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleX(-1);
     -moz-transform: translateY(-50%) scaleX(-1);
      -ms-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#COMING .soon__main .btnBack a:hover {
  opacity: 1;
  background: #0032aa;
  color: #fff;
}

#COMING .soon__main .btnBack a:hover::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #COMING .soon__main .btnBack a {
    width: 65.33333vw;
    height: 12vw;
    padding: 0 9.33333vw;
    font-size: 4vw;
    -moz-border-radius: 5.86667vw;
         border-radius: 5.86667vw;
  }
}

/* animation
.image {
  animation-delay: 0.3s;
}
&.inView {
  .base, .image {
    animation-name: fadeInUp;
  }
}
*/
/*-------------------------------------------> animation module */
.anim-fadeIn {
  opacity: 0;
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
     -moz-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
          animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeIn,
.inView .isAnim.inView .anim-fadeIn,
.inView .anim-fadeIn,
.inView.anim-fadeIn {
  -webkit-animation-name: fadeIn;
     -moz-animation-name: fadeIn;
          animation-name: fadeIn;
}

.inView .isAnim.anim-fadeIn,
.inView .isAnim .anim-fadeIn {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeInUp {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
     -moz-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
     -moz-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeInUp,
.inView .isAnim.inView .anim-fadeInUp,
.inView .anim-fadeInUp,
.inView.anim-fadeInUp {
  -webkit-animation-name: fadeInUp;
     -moz-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.inView .isAnim.anim-fadeInUp,
.inView .isAnim .anim-fadeInUp {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeInDown {
  opacity: 0;
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
     -moz-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
          animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeInDown,
.inView .isAnim.inView .anim-fadeInDown,
.inView .anim-fadeInDown,
.inView.anim-fadeInDown {
  -webkit-animation-name: fadeInDown;
     -moz-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.inView .isAnim.anim-fadeInDown,
.inView .isAnim .anim-fadeInDown {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeInRight {
  opacity: 0;
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
     -moz-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
          animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeInRight,
.inView .isAnim.inView .anim-fadeInRight,
.inView .anim-fadeInRight,
.inView.anim-fadeInRight {
  -webkit-animation-name: fadeInRight;
     -moz-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

.inView .isAnim.anim-fadeInRight,
.inView .isAnim .anim-fadeInRight {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeInLeft {
  opacity: 0;
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
     -moz-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
          animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeInLeft,
.inView .isAnim.inView .anim-fadeInLeft,
.inView .anim-fadeInLeft,
.inView.anim-fadeInLeft {
  -webkit-animation-name: fadeInLeft;
     -moz-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

.inView .isAnim.anim-fadeInLeft,
.inView .isAnim .anim-fadeInLeft {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeText span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(-50px);
     -moz-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  clip-path: inset(0 100% 0 0);
}

.inView .isAnim.inView.anim-fadeText span,
.inView .isAnim.inView .anim-fadeText span,
.inView .anim-fadeText span,
.inView.anim-fadeText span {
  -webkit-animation: fadeText 1s ease-out forwards;
     -moz-animation: fadeText 1s ease-out forwards;
          animation: fadeText 1s ease-out forwards;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(1),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(1),
.inView .anim-fadeText span:nth-of-type(1),
.inView.anim-fadeText span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
     -moz-animation-delay: 0s;
          animation-delay: 0s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(2),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(2),
.inView .anim-fadeText span:nth-of-type(2),
.inView.anim-fadeText span:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
     -moz-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(3),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(3),
.inView .anim-fadeText span:nth-of-type(3),
.inView.anim-fadeText span:nth-of-type(3) {
  -webkit-animation-delay: 0.4s;
     -moz-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(4),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(4),
.inView .anim-fadeText span:nth-of-type(4),
.inView.anim-fadeText span:nth-of-type(4) {
  -webkit-animation-delay: 0.6s;
     -moz-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(5),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(5),
.inView .anim-fadeText span:nth-of-type(5),
.inView.anim-fadeText span:nth-of-type(5) {
  -webkit-animation-delay: 0.8s;
     -moz-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(6),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(6),
.inView .anim-fadeText span:nth-of-type(6),
.inView.anim-fadeText span:nth-of-type(6) {
  -webkit-animation-delay: 1s;
     -moz-animation-delay: 1s;
          animation-delay: 1s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(7),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(7),
.inView .anim-fadeText span:nth-of-type(7),
.inView.anim-fadeText span:nth-of-type(7) {
  -webkit-animation-delay: 1.2s;
     -moz-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(8),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(8),
.inView .anim-fadeText span:nth-of-type(8),
.inView.anim-fadeText span:nth-of-type(8) {
  -webkit-animation-delay: 1.4s;
     -moz-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(9),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(9),
.inView .anim-fadeText span:nth-of-type(9),
.inView.anim-fadeText span:nth-of-type(9) {
  -webkit-animation-delay: 1.6s;
     -moz-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.inView .isAnim.inView.anim-fadeText span:nth-of-type(10),
.inView .isAnim.inView .anim-fadeText span:nth-of-type(10),
.inView .anim-fadeText span:nth-of-type(10),
.inView.anim-fadeText span:nth-of-type(10) {
  -webkit-animation-delay: 1.8s;
     -moz-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.inView .isAnim.anim-fadeText,
.inView .isAnim .anim-fadeText {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-fadeImage img {
  opacity: 0;
  -webkit-animation-duration: .5s;
     -moz-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
     -moz-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-fadeImage img,
.inView .isAnim.inView .anim-fadeImage img,
.inView .anim-fadeImage img,
.inView.anim-fadeImage img {
  -webkit-animation-name: fadeImage;
     -moz-animation-name: fadeImage;
          animation-name: fadeImage;
}

.inView .isAnim.anim-fadeImage img,
.inView .isAnim .anim-fadeImage img {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.linkArrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.linkArrow.disable {
  pointer-events: none;
  opacity: 0.3;
}

.linkArrow span {
  display: block;
  overflow: hidden;
}

.linkArrow span img, .linkArrow span .svg {
  display: block;
}

@media screen and (min-width: 768px) {
  .linkArrow img, .linkArrow .svg {
    -webkit-animation-duration: .3s;
       -moz-animation-duration: .3s;
            animation-duration: .3s;
    -webkit-animation-timing-function: linear;
       -moz-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
       -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .linkArrow:hover img, .linkArrow:hover .svg {
    -webkit-animation-name: linkArrow;
       -moz-animation-name: linkArrow;
            animation-name: linkArrow;
  }
}

.anim-slice {
  clip-path: inset(0 100% 0 0);
  -webkit-animation-duration: 0.5s;
     -moz-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
     -moz-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
          animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: filter;
}

.inView .isAnim.inView.anim-slice,
.inView .isAnim.inView .anim-slice,
.inView .anim-slice,
.inView.anim-slice {
  -webkit-animation-name: slice;
     -moz-animation-name: slice;
          animation-name: slice;
}

.inView .isAnim.anim-slice,
.inView .isAnim .anim-slice {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-slice.reverse {
  clip-path: inset(0 0 0 100%);
}

.inView .isAnim.inView.anim-slice.reverse,
.inView .isAnim.inView .anim-slice.reverse,
.inView .anim-slice.reverse,
.inView.anim-slice.reverse {
  -webkit-animation-name: sliceR;
     -moz-animation-name: sliceR;
          animation-name: sliceR;
}

.inView .isAnim.anim-slice.reverse,
.inView .isAnim .anim-slice.reverse {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-sliceHide {
  clip-path: inset(0 0 0 0);
  -webkit-animation-duration: 0.5s;
     -moz-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
     -moz-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
          animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: filter;
}

.inView .isAnim.inView.anim-sliceHide,
.inView .isAnim.inView .anim-sliceHide,
.inView .anim-sliceHide,
.inView.anim-sliceHide {
  -webkit-animation-name: sliceHide;
     -moz-animation-name: sliceHide;
          animation-name: sliceHide;
}

.inView .isAnim.anim-sliceHide,
.inView .isAnim .anim-sliceHide {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

.anim-sliceHide.reverse {
  clip-path: inset(0 0 0 0);
  -webkit-animation-duration: 0.5s;
     -moz-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
     -moz-animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
          animation-timing-function: cubic-bezier(0.67, 0, 0.18, 1);
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: filter;
}

.inView .isAnim.inView.anim-sliceHide.reverse,
.inView .isAnim.inView .anim-sliceHide.reverse,
.inView .anim-sliceHide.reverse,
.inView.anim-sliceHide.reverse {
  -webkit-animation-name: sliceHideR;
     -moz-animation-name: sliceHideR;
          animation-name: sliceHideR;
}

.inView .isAnim.anim-sliceHide.reverse,
.inView .isAnim .anim-sliceHide.reverse {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

/* delay */
.delay0 {
  -webkit-animation-delay: 0s;
     -moz-animation-delay: 0s;
          animation-delay: 0s;
}

.delay1 {
  -webkit-animation-delay: 0.2s;
     -moz-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay2 {
  -webkit-animation-delay: 0.4s;
     -moz-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay3 {
  -webkit-animation-delay: 0.6s;
     -moz-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay4 {
  -webkit-animation-delay: 0.8s;
     -moz-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay5 {
  -webkit-animation-delay: 1.0s;
     -moz-animation-delay: 1.0s;
          animation-delay: 1.0s;
}

.delay6 {
  -webkit-animation-delay: 1.2s;
     -moz-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay7 {
  -webkit-animation-delay: 1.4s;
     -moz-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.delay8 {
  -webkit-animation-delay: 1.6s;
     -moz-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay9 {
  -webkit-animation-delay: 1.8s;
     -moz-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.delay10 {
  -webkit-animation-delay: 2.0s;
     -moz-animation-delay: 2.0s;
          animation-delay: 2.0s;
}

.delay11 {
  -webkit-animation-delay: 2.2s;
     -moz-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.delay12 {
  -webkit-animation-delay: 2.4s;
     -moz-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delay13 {
  -webkit-animation-delay: 2.6s;
     -moz-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.delay14 {
  -webkit-animation-delay: 2.8s;
     -moz-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.delay15 {
  -webkit-animation-delay: 3.0s;
     -moz-animation-delay: 3.0s;
          animation-delay: 3.0s;
}

.delay16 {
  -webkit-animation-delay: 3.2s;
     -moz-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.delay17 {
  -webkit-animation-delay: 3.4s;
     -moz-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.delay18 {
  -webkit-animation-delay: 3.6s;
     -moz-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.delay19 {
  -webkit-animation-delay: 3.8s;
     -moz-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.delay20 {
  -webkit-animation-delay: 4.0s;
     -moz-animation-delay: 4.0s;
          animation-delay: 4.0s;
}

/*-------------------------------------------> keyframe */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
         transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
         transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
       -moz-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-moz-keyframes fadeInDown {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -20px, 0);
         transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
         transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
       -moz-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-moz-keyframes fadeInRight {
  from {
    opacity: 0;
    -moz-transform: translate3d(-20px, 0, 0);
         transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
         transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
       -moz-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-moz-keyframes fadeInLeft {
  from {
    opacity: 0;
    -moz-transform: translate3d(20px, 0, 0);
         transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
         transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
       -moz-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeText {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@-moz-keyframes fadeText {
  0% {
    -moz-transform: translateX(-30px);
         transform: translateX(-30px);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  30% {
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeText {
  0% {
    -webkit-transform: translateX(-30px);
       -moz-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  30% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes fadeImage {
  from {
    opacity: 0;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-moz-keyframes fadeImage {
  from {
    opacity: 0;
    -moz-transform: scale(1.08);
         transform: scale(1.08);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1);
         transform: scale(1);
  }
}

@keyframes fadeImage {
  from {
    opacity: 0;
    -webkit-transform: scale(1.08);
       -moz-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes hoverImage {
  from {
    -webkit-transform: translateX(1);
            transform: translateX(1);
  }
  to {
    -webkit-transform: translateX(1.08);
            transform: translateX(1.08);
  }
}

@-moz-keyframes hoverImage {
  from {
    -moz-transform: translateX(1);
         transform: translateX(1);
  }
  to {
    -moz-transform: translateX(1.08);
         transform: translateX(1.08);
  }
}

@keyframes hoverImage {
  from {
    -webkit-transform: translateX(1);
       -moz-transform: translateX(1);
            transform: translateX(1);
  }
  to {
    -webkit-transform: translateX(1.08);
       -moz-transform: translateX(1.08);
            transform: translateX(1.08);
  }
}

@-webkit-keyframes circlemove {
  0% {
    top: 15px;
  }
  100% {
    top: 75px;
  }
}

@-moz-keyframes circlemove {
  0% {
    top: 15px;
  }
  100% {
    top: 75px;
  }
}

@keyframes circlemove {
  0% {
    top: 15px;
  }
  100% {
    top: 75px;
  }
}

@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes cirlemovehide {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes slice {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@-moz-keyframes slice {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@keyframes slice {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@-webkit-keyframes sliceR {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@-moz-keyframes sliceR {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@keyframes sliceR {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}

@-webkit-keyframes sliceHide {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

@-moz-keyframes sliceHide {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

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

@-webkit-keyframes sliceHideR {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

@-moz-keyframes sliceHideR {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

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

@-webkit-keyframes headerSlideIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-moz-keyframes headerSlideIn {
  0% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}

@keyframes headerSlideIn {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}

/*-------------------------------------------> LinkAnimation */
/*-------------------------------------------> TextEffects */
/* ======================================
  Stagger Text
====================================== */
.anim-titleText {
  color: rgba(252, 250, 249, 0.1);
  font-size: 200px;
  /* legacy */
  font-size: 15.625cqw;
  line-height: 1;
  letter-spacing: -0.05em;
  --st-duration: 0.9s;
  --st-ease: cubic-bezier(.2,.8,.2,1);
  --st-from-y: 40px;
  --st-blur: 6px;
  white-space: normal;
}

.anim-titleText::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: 0em;
  content: "";
}

.anim-titleText::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: 0em;
  content: "";
}

@media screen and (max-width: 767px) {
  .anim-titleText {
    font-size: 72px;
    /* legacy */
    font-size: 19.2vw;
    line-height: 1.33333;
    letter-spacing: -0.05em;
  }
  .anim-titleText::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: -0.16667em;
    content: "";
  }
  .anim-titleText::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: -0.16667em;
    content: "";
  }
}

.anim-titleText .st-visual {
  display: inline;
}

.anim-titleText .st-unit {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(var(--st-from-y));
     -moz-transform: translateY(var(--st-from-y));
      -ms-transform: translateY(var(--st-from-y));
          transform: translateY(var(--st-from-y));
  -webkit-filter: blur(var(--st-blur));
          filter: blur(var(--st-blur));
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  -moz-transition-property: opacity, transform, filter, -moz-transform;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -moz-transform, -webkit-filter;
  -webkit-transition-duration: var(--st-duration);
     -moz-transition-duration: var(--st-duration);
          transition-duration: var(--st-duration);
  -webkit-transition-timing-function: var(--st-ease);
     -moz-transition-timing-function: var(--st-ease);
          transition-timing-function: var(--st-ease);
  will-change: opacity, transform, filter;
}

.anim-titleText .st-space {
  white-space: pre;
}

.anim-titleText.is-inview .st-unit {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* 動きを減らす設定の人には、即表示（実務で重要） */
@media (prefers-reduced-motion: reduce) {
  .js-staggerText .st-unit {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}

.anim-textLeftIn span {
  display: inline-block;
}

.anim-textLeftIn span.w {
  overflow: hidden;
}

.anim-textLeftIn span.w:nth-child(1) > span {
  -webkit-animation-delay: 0s;
     -moz-animation-delay: 0s;
          animation-delay: 0s;
}

.anim-textLeftIn span.w:nth-child(2) > span {
  -webkit-animation-delay: 0.02s;
     -moz-animation-delay: 0.02s;
          animation-delay: 0.02s;
}

.anim-textLeftIn span.w:nth-child(3) > span {
  -webkit-animation-delay: 0.04s;
     -moz-animation-delay: 0.04s;
          animation-delay: 0.04s;
}

.anim-textLeftIn span.w:nth-child(4) > span {
  -webkit-animation-delay: 0.06s;
     -moz-animation-delay: 0.06s;
          animation-delay: 0.06s;
}

.anim-textLeftIn span.w:nth-child(5) > span {
  -webkit-animation-delay: 0.08s;
     -moz-animation-delay: 0.08s;
          animation-delay: 0.08s;
}

.anim-textLeftIn span.w:nth-child(6) > span {
  -webkit-animation-delay: 0.1s;
     -moz-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.anim-textLeftIn span.w:nth-child(7) > span {
  -webkit-animation-delay: 0.12s;
     -moz-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.anim-textLeftIn span.w:nth-child(8) > span {
  -webkit-animation-delay: 0.14s;
     -moz-animation-delay: 0.14s;
          animation-delay: 0.14s;
}

.anim-textLeftIn span.w:nth-child(9) > span {
  -webkit-animation-delay: 0.16s;
     -moz-animation-delay: 0.16s;
          animation-delay: 0.16s;
}

.anim-textLeftIn span.w:nth-child(10) > span {
  -webkit-animation-delay: 0.18s;
     -moz-animation-delay: 0.18s;
          animation-delay: 0.18s;
}

.anim-textLeftIn span.w:nth-child(11) > span {
  -webkit-animation-delay: 0.2s;
     -moz-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.anim-textLeftIn span.w:nth-child(12) > span {
  -webkit-animation-delay: 0.22s;
     -moz-animation-delay: 0.22s;
          animation-delay: 0.22s;
}

.anim-textLeftIn span.w:nth-child(13) > span {
  -webkit-animation-delay: 0.24s;
     -moz-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

.anim-textLeftIn span.w:nth-child(14) > span {
  -webkit-animation-delay: 0.26s;
     -moz-animation-delay: 0.26s;
          animation-delay: 0.26s;
}

.anim-textLeftIn span.w:nth-child(15) > span {
  -webkit-animation-delay: 0.28s;
     -moz-animation-delay: 0.28s;
          animation-delay: 0.28s;
}

.anim-textLeftIn span.w:nth-child(16) > span {
  -webkit-animation-delay: 0.3s;
     -moz-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.anim-textLeftIn span.w:nth-child(17) > span {
  -webkit-animation-delay: 0.32s;
     -moz-animation-delay: 0.32s;
          animation-delay: 0.32s;
}

.anim-textLeftIn span.w:nth-child(18) > span {
  -webkit-animation-delay: 0.34s;
     -moz-animation-delay: 0.34s;
          animation-delay: 0.34s;
}

.anim-textLeftIn span.w:nth-child(19) > span {
  -webkit-animation-delay: 0.36s;
     -moz-animation-delay: 0.36s;
          animation-delay: 0.36s;
}

.anim-textLeftIn span.w:nth-child(20) > span {
  -webkit-animation-delay: 0.38s;
     -moz-animation-delay: 0.38s;
          animation-delay: 0.38s;
}

.anim-textLeftIn span.w:nth-child(21) > span {
  -webkit-animation-delay: 0.4s;
     -moz-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.anim-textLeftIn span.w:nth-child(22) > span {
  -webkit-animation-delay: 0.42s;
     -moz-animation-delay: 0.42s;
          animation-delay: 0.42s;
}

.anim-textLeftIn span.w:nth-child(23) > span {
  -webkit-animation-delay: 0.44s;
     -moz-animation-delay: 0.44s;
          animation-delay: 0.44s;
}

.anim-textLeftIn span.w:nth-child(24) > span {
  -webkit-animation-delay: 0.46s;
     -moz-animation-delay: 0.46s;
          animation-delay: 0.46s;
}

.anim-textLeftIn span.w:nth-child(25) > span {
  -webkit-animation-delay: 0.48s;
     -moz-animation-delay: 0.48s;
          animation-delay: 0.48s;
}

.anim-textLeftIn span.w:nth-child(26) > span {
  -webkit-animation-delay: 0.5s;
     -moz-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.anim-textLeftIn span.w:nth-child(27) > span {
  -webkit-animation-delay: 0.52s;
     -moz-animation-delay: 0.52s;
          animation-delay: 0.52s;
}

.anim-textLeftIn span.w:nth-child(28) > span {
  -webkit-animation-delay: 0.54s;
     -moz-animation-delay: 0.54s;
          animation-delay: 0.54s;
}

.anim-textLeftIn span.w:nth-child(29) > span {
  -webkit-animation-delay: 0.56s;
     -moz-animation-delay: 0.56s;
          animation-delay: 0.56s;
}

.anim-textLeftIn span.w:nth-child(30) > span {
  -webkit-animation-delay: 0.58s;
     -moz-animation-delay: 0.58s;
          animation-delay: 0.58s;
}

.anim-textLeftIn span.w:nth-child(31) > span {
  -webkit-animation-delay: 0.6s;
     -moz-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.anim-textLeftIn span.w:nth-child(32) > span {
  -webkit-animation-delay: 0.62s;
     -moz-animation-delay: 0.62s;
          animation-delay: 0.62s;
}

.anim-textLeftIn span.w:nth-child(33) > span {
  -webkit-animation-delay: 0.64s;
     -moz-animation-delay: 0.64s;
          animation-delay: 0.64s;
}

.anim-textLeftIn span.w:nth-child(34) > span {
  -webkit-animation-delay: 0.66s;
     -moz-animation-delay: 0.66s;
          animation-delay: 0.66s;
}

.anim-textLeftIn span.w:nth-child(35) > span {
  -webkit-animation-delay: 0.68s;
     -moz-animation-delay: 0.68s;
          animation-delay: 0.68s;
}

.anim-textLeftIn span.w:nth-child(36) > span {
  -webkit-animation-delay: 0.7s;
     -moz-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.anim-textLeftIn span.w:nth-child(37) > span {
  -webkit-animation-delay: 0.72s;
     -moz-animation-delay: 0.72s;
          animation-delay: 0.72s;
}

.anim-textLeftIn span.w:nth-child(38) > span {
  -webkit-animation-delay: 0.74s;
     -moz-animation-delay: 0.74s;
          animation-delay: 0.74s;
}

.anim-textLeftIn span.w:nth-child(39) > span {
  -webkit-animation-delay: 0.76s;
     -moz-animation-delay: 0.76s;
          animation-delay: 0.76s;
}

.anim-textLeftIn span.w:nth-child(40) > span {
  -webkit-animation-delay: 0.78s;
     -moz-animation-delay: 0.78s;
          animation-delay: 0.78s;
}

.anim-textLeftIn span.w:nth-child(41) > span {
  -webkit-animation-delay: 0.8s;
     -moz-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.anim-textLeftIn span.w:nth-child(42) > span {
  -webkit-animation-delay: 0.82s;
     -moz-animation-delay: 0.82s;
          animation-delay: 0.82s;
}

.anim-textLeftIn span.w:nth-child(43) > span {
  -webkit-animation-delay: 0.84s;
     -moz-animation-delay: 0.84s;
          animation-delay: 0.84s;
}

.anim-textLeftIn span.w:nth-child(44) > span {
  -webkit-animation-delay: 0.86s;
     -moz-animation-delay: 0.86s;
          animation-delay: 0.86s;
}

.anim-textLeftIn span.w:nth-child(45) > span {
  -webkit-animation-delay: 0.88s;
     -moz-animation-delay: 0.88s;
          animation-delay: 0.88s;
}

.anim-textLeftIn span.w:nth-child(46) > span {
  -webkit-animation-delay: 0.9s;
     -moz-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.anim-textLeftIn span.w:nth-child(47) > span {
  -webkit-animation-delay: 0.92s;
     -moz-animation-delay: 0.92s;
          animation-delay: 0.92s;
}

.anim-textLeftIn span.w:nth-child(48) > span {
  -webkit-animation-delay: 0.94s;
     -moz-animation-delay: 0.94s;
          animation-delay: 0.94s;
}

.anim-textLeftIn span.w:nth-child(49) > span {
  -webkit-animation-delay: 0.96s;
     -moz-animation-delay: 0.96s;
          animation-delay: 0.96s;
}

.anim-textLeftIn span.w:nth-child(50) > span {
  -webkit-animation-delay: 0.98s;
     -moz-animation-delay: 0.98s;
          animation-delay: 0.98s;
}

.anim-textLeftIn span.w > span {
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-animation-duration: 0.15s;
     -moz-animation-duration: 0.15s;
          animation-duration: 0.15s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
     -moz-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-textLeftIn span.w span,
.inView .isAnim.inView .anim-textLeftIn span.w span,
.inView .anim-textLeftIn span.w span,
.inView.anim-textLeftIn span.w span {
  -webkit-animation-name: textLeftIn;
     -moz-animation-name: textLeftIn;
          animation-name: textLeftIn;
}

.inView .isAnim.anim-textLeftIn span.w span,
.inView .isAnim .anim-textLeftIn span.w span {
  -webkit-animation-name: none;
     -moz-animation-name: none;
          animation-name: none;
}

@-webkit-keyframes textLeftIn {
  0% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-moz-keyframes textLeftIn {
  0% {
    -moz-transform: translateX(-110%);
         transform: translateX(-110%);
  }
  100% {
    -moz-transform: translateY(0%);
         transform: translateY(0%);
  }
}

@keyframes textLeftIn {
  0% {
    -webkit-transform: translateX(-110%);
       -moz-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/*
@media screen and ($over-tab) {}
@media screen and ($less-tab) {}
*/
#HOME {
  /*-------------------------------------------> .fv */
}

#HOME .btn a {
  width: 206px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -moz-border-radius: 22px;
       border-radius: 22px;
  border: 1px solid #0032aa;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#HOME .btn a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#HOME .btn a:hover {
  background: #0032aa;
  color: #fff;
  opacity: 1;
}

#HOME .btn a:hover::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

#HOME .btn a.st2 {
  border: 1px solid #fff;
  color: #fff;
}

#HOME .btn a.st2::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

#HOME .btn a.st2:hover {
  background: #fff;
  color: #0032aa;
  border-color: #0032aa;
  opacity: 1;
}

#HOME .btn a.st2:hover::after {
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #HOME .btn a {
    width: 52.18667vw;
    height: 11.4vw;
    padding: 0 10.66667vw;
    font-size: 4vw;
    -moz-border-radius: 5.86667vw;
         border-radius: 5.86667vw;
  }
}

#HOME .fv {
  height: 100svh;
  position: relative;
  z-index: 5;
}

#HOME .fv .contentLayer {
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  padding: 0;
  -webkit-mask-image: url("../images/home/maskMv.png");
          mask-image: url("../images/home/maskMv.png");
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

@media screen and (max-width: 767px) {
  #HOME .fv .contentLayer {
    -webkit-mask-image: url("../images/home/maskMv_sp.png");
            mask-image: url("../images/home/maskMv_sp.png");
  }
}

#HOME .fv .contentLayer__txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  line-height: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#HOME .fv .contentLayer__txt img, #HOME .fv .contentLayer__txt .svg {
  width: 105px;
}

@media screen and (max-width: 767px) {
  #HOME .fv .contentLayer__txt img, #HOME .fv .contentLayer__txt .svg {
    width: 17.86667vw;
  }
}

#HOME .fv .homeSlide {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}

#HOME .fv .homeSlide .slick-slide {
  height: 100svh;
  overflow: hidden;
}

#HOME .fv .homeSlide .slick-slide img, #HOME .fv .homeSlide .slick-slide .svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 7s ease-out;
  -moz-transition: all 7s ease-out;
  transition: all 7s ease-out;
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

#HOME .fv .homeSlide .slick-slide.add-animation img, #HOME .fv .homeSlide .slick-slide.add-animation .svg {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

#HOME .about {
  position: relative;
  z-index: 6;
  overflow: hidden;
  margin-top: -4.58333%;
}

@media screen and (max-width: 767px) {
  #HOME .about {
    margin-top: -5.86667vw;
  }
}

#HOME .about .contentLayer {
  padding: 0;
}

#HOME .about__top {
  margin: 0 -1.66667% 145px;
}

@media screen and (max-width: 767px) {
  #HOME .about__top {
    margin: 0 -2.66667vw 24.53333vw;
  }
}

#HOME .about__top img, #HOME .about__top .svg {
  width: 100%;
  height: auto;
}

#HOME .about__main {
  max-width: 580px;
  width: 100%;
  margin: auto;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  padding-bottom: 85px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main {
    padding-bottom: 16vw;
  }
}

#HOME .about__main::after {
  position: absolute;
  content: "";
  width: 226px;
  height: 536px;
  background: url("../images/home/foot.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: -92px;
  right: -264px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main::after {
    width: 44vw;
    height: 104.26667vw;
    top: -46.93333vw;
    right: -24vw;
  }
}

#HOME .about__main--inner {
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner {
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#HOME .about__main--inner::before, #HOME .about__main--inner::after {
  position: absolute;
  content: "";
}

#HOME .about__main--inner::before {
  width: 138px;
  height: 161px;
  background: url("../images/home/spiral.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  bottom: 0;
  left: -175.5px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner::before {
    width: 24.53333vw;
    height: 31.2vw;
    left: 0;
  }
}

#HOME .about__main--inner::after {
  width: 127px;
  height: 90.5px;
  background: url("../images/home/snail.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  right: -60px;
  bottom: -82px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner::after {
    width: 24.8vw;
    height: 17.6vw;
    right: 0;
    bottom: -16vw;
  }
}

#HOME .about__main--inner h2 {
  -webkit-box-ordinal-group: 3;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  line-height: 0;
  width: 75px;
  margin-left: 109px;
}

#HOME .about__main--inner h2 img, #HOME .about__main--inner h2 .svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner h2 {
    -webkit-box-ordinal-group: 2;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 14.4vw;
    margin-left: 0;
    margin-bottom: 13.86667vw;
  }
}

#HOME .about__main--inner .txt {
  width: 390px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 2;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-top: 65px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner .txt {
    width: 100%;
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0;
    padding-left: 5.33333vw;
    padding-right: 5.33333vw;
  }
}

#HOME .about__main--inner .txt p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 16px;
  font-weight: 500;
  line-height: 75px;
  color: #0032aa;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner .txt p {
    font-size: 3.73333vw;
    line-height: 14.66667vw;
  }
}

#HOME .about__main--inner .btn {
  width: 100%;
  -webkit-box-ordinal-group: 4;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner .btn {
    margin-top: 7.46667vw;
  }
}

#HOME .about__main--inner .btn span {
  line-height: 0;
  width: 135px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner .btn span {
    width: 32vw;
  }
}

#HOME .about__main--inner .btn a {
  margin-top: 29px;
}

@media screen and (max-width: 767px) {
  #HOME .about__main--inner .btn a {
    margin-top: 6.66667vw;
  }
}

#HOME .news {
  padding: 285px 0 125px;
  position: relative;
  z-index: 6;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  background-image: url("../images/home/newsMask_aspectNone.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
}

@media screen and (max-width: 767px) {
  #HOME .news {
    padding: 28vw 10.66667vw 10.66667vw;
    background: none;
  }
  #HOME .news::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("../images/home/newsBg_sp.png"), url("../images/home/maskNews02_sp.png");
    background-position: 0 0,bottom center;
    -moz-background-size: contain,contain;
         background-size: contain,contain;
    background-repeat: no-repeat,no-repeat;
  }
  #HOME .news::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    background: #005ac8;
    z-index: -2;
  }
}

#HOME .news .contentLayer {
  padding: 0;
}

#HOME .news__main {
  max-width: 965px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  #HOME .news__main {
    display: block;
  }
}

#HOME .news__main--title {
  width: 72px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--title {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

#HOME .news__main--title h2 {
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--title h2 {
    width: 6.4vw;
  }
}

#HOME .news__main--title h2 img, #HOME .news__main--title h2 .svg {
  width: 28.7px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--title h2 img, #HOME .news__main--title h2 .svg {
    width: 100%;
  }
}

#HOME .news__main--title span {
  line-height: 0;
  display: block;
  width: 100%;
  margin-top: 42px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--title span {
    width: 13.33333vw;
    margin-top: 0;
    margin-left: 2.66667vw;
  }
}

#HOME .news__main--title span img, #HOME .news__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .news__main--list {
  width: 753px;
  margin: 0 28px 0 50px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list {
    width: 100%;
    margin: 5.86667vw 0 0;
  }
}

#HOME .news__main--list ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -22.5px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul {
    margin: 0;
  }
}

#HOME .news__main--list ul li {
  width: 221px;
  margin: 0 22.5px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul li {
    width: 100%;
    margin: 0;
  }
  #HOME .news__main--list ul li + li {
    margin-top: 5.33333vw;
  }
}

#HOME .news__main--list ul li a {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

#HOME .news__main--list ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#HOME .news__main--list ul li a figure {
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -moz-border-radius: 15px;
       border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul li a figure {
    -moz-border-radius: 4.8vw;
         border-radius: 4.8vw;
  }
}

#HOME .news__main--list ul li a figure img, #HOME .news__main--list ul li a figure .svg {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul li a figure img, #HOME .news__main--list ul li a figure .svg {
    height: 43.46667vw;
  }
}

#HOME .news__main--list ul li a figure figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 90, 200, 0.4);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#HOME .news__main--list ul li a figure figcaption::after {
  content: "";
  width: 35px;
  height: 35px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: url("../images/home/newsBtnDetail.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  margin-top: 10px;
}

#HOME .news__main--list ul li a p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul li a p {
    font-size: 3.73333vw;
    line-height: 5.33333vw;
  }
}

#HOME .news__main--list ul li a time {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--list ul li a time {
    font-size: 3.73333vw;
    line-height: 5.33333vw;
  }
}

#HOME .news__main--list ul li a:hover {
  opacity: 1;
}

#HOME .news__main--list ul li a:hover figure figcaption {
  opacity: 1;
}

#HOME .news__main--list ul li a:hover p, #HOME .news__main--list ul li a:hover time {
  opacity: 0.4;
}

#HOME .news__main--btn {
  line-height: 0;
  width: 53px;
  padding-top: 75px;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--btn {
    width: 100%;
    padding-top: 0;
    text-align: right;
  }
}

#HOME .news__main--btn a {
  width: 53px;
  height: 53px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: url("../images/home/newsBtn.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#HOME .news__main--btn a:hover {
  opacity: 1;
  background: url("../images/home/newsBtn_hr.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #HOME .news__main--btn a {
    width: 13.42667vw;
    height: 13.42667vw;
  }
}

#HOME .local {
  position: relative;
  z-index: 5;
  margin-top: -135px;
  background: url("../images/home/localBg.png") 0 0 no-repeat;
  -moz-background-size: cover;
       background-size: cover;
}

@media screen and (max-width: 767px) {
  #HOME .local {
    margin-top: -8vw;
    background: url("../images/home/localBg_sp.png") 0 0 no-repeat;
    -moz-background-size: cover;
         background-size: cover;
  }
}

#HOME .local::after {
  position: absolute;
  content: "";
  width: 100%;
  height: -webkit-calc(100% - 5px);
  height: -moz-calc(100% - 5px);
  height: calc(100% - 5px);
  top: 0;
  left: 0;
  background: rgba(0, 50, 170, 0.5);
  z-index: -1;
}

#HOME .local .contentLayer {
  padding: 0;
}

#HOME .local__main {
  padding: 135px 0 278px;
  max-width: 960px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #HOME .local__main {
    padding: 28vw 0 22.66667vw;
  }
}

#HOME .local__main--title {
  text-align: center;
}

#HOME .local__main--title span {
  line-height: 0;
  width: 195px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--title span {
    width: 38.66667vw;
  }
}

#HOME .local__main--title span img, #HOME .local__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .local__main--title h2 {
  line-height: 0;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--title h2 {
    margin-top: 5.33333vw;
  }
}

#HOME .local__main--title h2 img, #HOME .local__main--title h2 .svg {
  width: 103px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--title h2 img, #HOME .local__main--title h2 .svg {
    width: 20.26667vw;
  }
}

#HOME .local__main--intro {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--intro {
    font-size: 3.73333vw;
    line-height: 8vw;
    margin-top: 8vw;
  }
}

#HOME .local__main--list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 62px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 8.53333vw;
  }
}

#HOME .local__main--list figure {
  width: 278px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--list figure {
    width: 43.2vw;
    margin: 0 1.6vw;
  }
  #HOME .local__main--list figure:nth-of-type(1) {
    margin: 0 13.33333vw 3.2vw;
  }
}

#HOME .local__main--list figure img, #HOME .local__main--list figure .svg {
  width: 100%;
  height: auto;
}

#HOME .local__main--list figure figcaption {
  text-align: center;
  color: #fff;
  font-size: 25px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--list figure figcaption {
    font-size: 3.73333vw;
    line-height: 4vw;
    letter-spacing: 0.04em;
    margin-top: 1.33333vw;
  }
}

#HOME .local__main--btn {
  margin-top: 45px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #HOME .local__main--btn {
    margin-top: 7.46667vw;
    text-align: center;
  }
}

#HOME .store {
  position: relative;
  z-index: 6;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  background: url("../images/home/storeBg.png") top center no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  margin-top: -145px;
}

#HOME .store .contentLayer {
  padding: 0;
}

@media screen and (max-width: 767px) {
  #HOME .store {
    margin-top: -5.33333vw;
    background: url("../images/home/storeBg_sp.png") top center no-repeat;
    -moz-background-size: cover;
         background-size: cover;
    padding-bottom: 10.66667vw;
  }
}

#HOME .store::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 102%;
  height: 200px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../images/home/maskWave.png") 0 0 no-repeat;
  -moz-background-size: 100% auto;
       background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  #HOME .store::after {
    height: 29.33333vw;
  }
}

#HOME .store__main {
  max-width: 960px;
  width: 100%;
  margin: auto;
  padding: 140px 0 0;
}

@media screen and (max-width: 767px) {
  #HOME .store__main {
    padding: 26.66667vw 10.66667vw 0;
  }
}

#HOME .store__main--title span {
  display: inline-block;
  line-height: 0;
  width: 265px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--title span {
    width: 50.93333vw;
  }
}

#HOME .store__main--title span img, #HOME .store__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .store__main--title h2 {
  line-height: 0;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--title h2 {
    margin-top: 6.66667vw;
  }
}

#HOME .store__main--title h2 img, #HOME .store__main--title h2 .svg {
  width: 143px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--title h2 img, #HOME .store__main--title h2 .svg {
    width: 27.73333vw;
  }
}

#HOME .store__main--txt {
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: #0032aa;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--txt {
    font-size: 3.73333vw;
    line-height: 8vw;
    margin-top: 8vw;
  }
}

#HOME .store__main--btn {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--btn {
    margin-top: 8vw;
  }
}

#HOME .store__main--figs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 95px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--figs {
    margin-top: 38.66667vw;
    margin-left: -10.66667vw;
    margin-right: -10.66667vw;
  }
}

#HOME .store__main--figs figure img, #HOME .store__main--figs figure .svg {
  width: 100%;
  height: auto;
}

#HOME .store__main--figs figure:nth-of-type(1) {
  width: 413px;
  margin-left: -40px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--figs figure:nth-of-type(1) {
    width: 42.4vw;
    margin-left: -8.53333vw;
  }
}

#HOME .store__main--figs figure:nth-of-type(2) {
  width: 444px;
  margin-right: -305px;
}

@media screen and (max-width: 767px) {
  #HOME .store__main--figs figure:nth-of-type(2) {
    width: 62.4vw;
    margin-right: -20vw;
  }
}

#HOME .ogasawara {
  background: #005ac8;
  padding: 25px 0 0;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara {
    padding-top: 0;
    margin-top: -5.33333vw;
    position: relative;
    z-index: 8;
  }
}

#HOME .ogasawara .contentLayer {
  padding: 0;
}

#HOME .ogasawara__top {
  margin: 0 -1.66667% 145px;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__top {
    margin: 0 -2.66667vw 22.66667vw;
  }
}

#HOME .ogasawara__top img, #HOME .ogasawara__top .svg {
  width: 100%;
  height: auto;
}

#HOME .ogasawara__main {
  max-width: 620px;
  width: 100%;
  margin: 125px auto 0;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main {
    margin: 0;
  }
}

#HOME .ogasawara__main--title {
  text-align: center;
}

#HOME .ogasawara__main--title span {
  line-height: 0;
  display: inline-block;
  width: 321px;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main--title span {
    width: 58.13333vw;
  }
}

#HOME .ogasawara__main--title span img, #HOME .ogasawara__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .ogasawara__main--title h2 {
  line-height: 0;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main--title h2 {
    margin-top: 6.66667vw;
  }
}

#HOME .ogasawara__main--title h2 img, #HOME .ogasawara__main--title h2 .svg {
  width: 250px;
  height: auto;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main--title h2 img, #HOME .ogasawara__main--title h2 .svg {
    width: 48.8vw;
  }
}

#HOME .ogasawara__main--txt {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main--txt {
    margin-top: 9.06667vw;
    font-size: 3.73333vw;
    line-height: 8vw;
    letter-spacing: 0.06em;
  }
}

#HOME .ogasawara__main--btn {
  margin-top: 55px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main--btn {
    margin-top: 7.46667vw;
  }
}

#HOME .ogasawara__main::before, #HOME .ogasawara__main::after {
  position: absolute;
  content: "";
}

#HOME .ogasawara__main::before {
  width: 203px;
  height: 185px;
  background: url("../images/home/aboutFish.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  left: -203px;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main::before {
    width: 26.4vw;
    height: 24vw;
    left: 3.46667vw;
    bottom: -22.13333vw;
  }
}

#HOME .ogasawara__main::after {
  width: 376px;
  height: 186px;
  background: url("../images/home/aboutTurtle.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  right: -240px;
  bottom: -140px;
  -webkit-transform: rotate(-335deg);
     -moz-transform: rotate(-335deg);
      -ms-transform: rotate(-335deg);
          transform: rotate(-335deg);
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__main::after {
    width: 55.2vw;
    height: 27.2vw;
    right: 1.33333vw;
    bottom: -36vw;
  }
}

#HOME .ogasawara__bot {
  margin-top: 55px;
}

@media screen and (max-width: 767px) {
  #HOME .ogasawara__bot {
    margin-top: 27.73333vw;
  }
}

#HOME .recruit {
  padding: 145px 0 165px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit {
    padding: 0;
  }
}

#HOME .recruit .contentLayer {
  padding: 0;
}

#HOME .recruit__main {
  max-width: 960px;
  width: 100%;
  margin: auto;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main {
    padding: 23.46667vw 9.33333vw 32.8vw;
  }
}

#HOME .recruit__main::before, #HOME .recruit__main::after {
  position: absolute;
  content: "";
}

#HOME .recruit__main::before {
  width: 261px;
  height: 127px;
  background: url("../images/home/recruitIc01.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  left: -70px;
  top: 0;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main::before {
    width: 41.86667vw;
    height: 20.26667vw;
    top: 9.33333vw;
    left: -8.53333vw;
  }
}

#HOME .recruit__main::after {
  width: 228px;
  height: 106px;
  background: url("../images/home/recruitIc02.png") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  right: 0;
  bottom: -55px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main::after {
    width: 45.6vw;
    height: 21.33333vw;
    bottom: 8.53333vw;
  }
}

#HOME .recruit__main--title {
  text-align: center;
}

#HOME .recruit__main--title span {
  line-height: 0;
  display: inline-block;
  width: 108px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--title span {
    width: 19.46667vw;
  }
}

#HOME .recruit__main--title span img, #HOME .recruit__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .recruit__main--title h2 {
  line-height: 0;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--title h2 {
    margin-top: 6.66667vw;
  }
}

#HOME .recruit__main--title h2 img, #HOME .recruit__main--title h2 .svg {
  width: 142px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--title h2 img, #HOME .recruit__main--title h2 .svg {
    width: 27.73333vw;
  }
}

#HOME .recruit__main--intro {
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #0032aa;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--intro {
    font-size: 3.73333vw;
    line-height: 8vw;
    margin-top: 8vw;
  }
}

#HOME .recruit__main--list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 155px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32vw;
  }
}

#HOME .recruit__main--list figure {
  width: 440px;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--list figure {
    width: 100%;
  }
}

#HOME .recruit__main--list figure > img, #HOME .recruit__main--list figure .svg {
  width: 100%;
  height: auto;
}

#HOME .recruit__main--list figure > figcaption {
  position: absolute;
  top: -100px;
  width: 197px;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--list figure > figcaption {
    width: 30.66667vw;
    top: -16.26667vw;
  }
}

#HOME .recruit__main--list figure > figcaption img, #HOME .recruit__main--list figure > figcaption .svg {
  width: 100%;
  height: auto;
}

#HOME .recruit__main--list figure:nth-of-type(1) > figcaption {
  left: 0;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--list figure:nth-of-type(2) {
    margin-top: 21.6vw;
  }
}

#HOME .recruit__main--list figure:nth-of-type(2) > figcaption {
  right: 0;
}

@media screen and (max-width: 767px) {
  #HOME .recruit__main--list figure:nth-of-type(2) > figcaption {
    right: 7.2vw;
  }
}

#HOME .recruit__main--btn {
  margin-top: 33px;
  text-align: center;
}

#HOME .contact {
  padding: 203px 0 0;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

@media screen and (max-width: 767px) {
  #HOME .contact {
    padding: 22.66667vw 0 0;
  }
  #HOME .contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    background: #e9f7ff;
  }
}

#HOME .contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 150%;
  background: #e9f7ff;
  -webkit-mask-image: url("../images/home/maskWave2.png");
          mask-image: url("../images/home/maskWave2.png");
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  #HOME .contact::before {
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}

#HOME .contact .contentLayer {
  padding: 0;
}

#HOME .contact__main--title {
  text-align: center;
}

#HOME .contact__main--title span {
  line-height: 0;
  display: inline-block;
  width: 116px;
}

@media screen and (max-width: 767px) {
  #HOME .contact__main--title span {
    width: 21.06667vw;
  }
}

#HOME .contact__main--title span img, #HOME .contact__main--title span .svg {
  width: 100%;
  height: auto;
}

#HOME .contact__main--title h2 {
  line-height: 0;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  #HOME .contact__main--title h2 {
    margin-top: 6.66667vw;
  }
}

#HOME .contact__main--title h2 img, #HOME .contact__main--title h2 .svg {
  width: 140px;
}

@media screen and (max-width: 767px) {
  #HOME .contact__main--title h2 img, #HOME .contact__main--title h2 .svg {
    width: 27.2vw;
  }
}

#HOME .contact__main--btn {
  text-align: center;
  margin-top: 57px;
}

@media screen and (max-width: 767px) {
  #HOME .contact__main--btn {
    margin-top: 8vw;
  }
}

#HOME .contact__main--btn a {
  width: 369px;
  height: 54px;
  -moz-border-radius: 27px;
       border-radius: 27px;
  font-size: 20px;
  letter-spacing: 0.14em;
  padding: 0 63px;
}

@media screen and (max-width: 767px) {
  #HOME .contact__main--btn a {
    width: 74.98667vw;
    height: 11.14667vw;
    -moz-border-radius: 5.6vw;
         border-radius: 5.6vw;
    font-size: 4vw;
    padding: 0 13.33333vw;
  }
}

#HOME .footer__fig {
  background: #e9f7ff;
}

/*
@media screen and ($over-tab) {}
@media screen and ($less-tab) {}
*/
.fvCom {
  position: relative;
  -webkit-mask-image: url("../images/fvComMask.png");
          mask-image: url("../images/fvComMask.png");
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}

@media screen and (max-width: 767px) {
  .fvCom {
    -webkit-mask-image: url("../images/fvComMask_sp.png");
            mask-image: url("../images/fvComMask_sp.png");
    -webkit-mask-position: bottom center;
            mask-position: bottom center;
    -webkit-mask-size: cover;
            mask-size: cover;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}

.fvCom picture {
  width: 100%;
}

.fvCom picture img, .fvCom picture .svg {
  width: 100%;
  height: 491px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fvCom picture img, .fvCom picture .svg {
    height: 57.33333vw;
  }
}

.fvCom__title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  background: rgba(0, 90, 203, 0.2);
}

.fvCom__title h2 {
  line-height: 0;
  max-width: 513px;
  width: 100%;
  margin-top: 36px;
}

@media screen and (max-width: 767px) {
  .fvCom__title h2 {
    max-width: 70.93333vw;
    margin-top: 7.73333vw;
  }
}

.fvCom__title h2 img, .fvCom__title h2 .svg {
  width: 100%;
  height: auto;
}

#NEWS {
  /*-------------------------------------------> .fv */
}

#NEWS .news__main {
  max-width: 960px;
  width: 100%;
  margin: 78px auto 0;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main {
    margin: 13.86667vw auto 0;
    width: 100%;
    padding: 0 5.33333vw;
  }
}

#NEWS .news__main--nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -12px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--nav ul {
    margin: -0.8vw -0.8vw;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#NEWS .news__main--nav ul li {
  margin: 12px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--nav ul li {
    margin: 0.8vw;
  }
}

#NEWS .news__main--nav ul li a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  min-width: 125px;
  border: 1px solid #0032aa;
  -moz-border-radius: 22px;
       border-radius: 22px;
  white-space: nowrap;
  padding: 0 35px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #0032aa;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--nav ul li a {
    height: 8.8vw;
    min-width: 24.8vw;
    padding: 0 8vw;
    font-size: 3.46667vw;
  }
}

#NEWS .news__main--nav ul li a:hover, #NEWS .news__main--nav ul li a.active {
  background: #0032aa;
  color: #fff;
  opacity: 1;
}

#NEWS .news__main--list {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list {
    margin-top: 8vw;
  }
}

#NEWS .news__main--list ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -28px -12px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul {
    margin: -5.33333vw -2.66667vw;
  }
}

#NEWS .news__main--list ul li {
  width: 304px;
  margin: 28px 12px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li {
    margin: 5.33333vw 2.66667vw;
    width: 41.33333vw;
  }
}

#NEWS .news__main--list ul li a {
  display: block;
  color: #0032aa;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 13px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a {
    padding: 0;
  }
}

#NEWS .news__main--list ul li a figure {
  margin: 0 -13px;
  -moz-border-radius: 20px;
       border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

#NEWS .news__main--list ul li a figure figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 90, 200, 0.4);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#NEWS .news__main--list ul li a figure figcaption::after {
  content: "";
  width: 35px;
  height: 35px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: url("../images/home/newsBtnDetail.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a figure {
    margin: 0;
    -moz-border-radius: 2.66667vw;
         border-radius: 2.66667vw;
  }
}

#NEWS .news__main--list ul li a figure img, #NEWS .news__main--list ul li a figure .svg {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a figure img, #NEWS .news__main--list ul li a figure .svg {
    height: 25.33333vw;
  }
}

#NEWS .news__main--list ul li a time {
  display: block;
  font-size: 16px;
  line-height: 17px;
  font-weight: 500;
  width: 100%;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a time {
    font-size: 3.46667vw;
    line-height: 1;
    margin-top: 1.6vw;
  }
}

#NEWS .news__main--list ul li a p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a p {
    font-size: 3.73333vw;
    line-height: 4.53333vw;
    margin-top: 1.6vw;
  }
}

#NEWS .news__main--list ul li a .meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 11px -4px -2px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a .meta {
    margin: 1.86667vw -0.26667vw -0.26667vw;
  }
}

#NEWS .news__main--list ul li a .meta span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2px 4px;
  min-width: 80px;
  font-weight: 500;
  height: 24px;
  -moz-border-radius: 12px;
       border-radius: 12px;
  border: 1px solid #0032aa;
  color: #0032aa;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--list ul li a .meta span {
    margin: 0.26667vw;
    min-width: 11.73333vw;
    padding: 0 3.2vw;
    height: 5.33333vw;
    -moz-border-radius: 2.66667vw;
         border-radius: 2.66667vw;
    font-size: 3.2vw;
  }
}

#NEWS .news__main--list ul li a:hover {
  opacity: 1;
}

#NEWS .news__main--list ul li a:hover figure figcaption {
  opacity: 1;
}

#NEWS .news__main--list ul li a:hover p, #NEWS .news__main--list ul li a:hover time, #NEWS .news__main--list ul li a:hover .meta {
  opacity: 0.4;
}

#NEWS .news__main--pagi {
  margin-top: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--pagi {
    margin-top: 16vw;
  }
}

#NEWS .news__main--pagi .navigation {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#NEWS .news__main--pagi .navigation .nav-links {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#NEWS .news__main--pagi .page-numbers, #NEWS .news__main--pagi .current {
  width: 61px;
  height: 61px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #0032aa;
  color: #0032aa;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--pagi .page-numbers, #NEWS .news__main--pagi .current {
    margin: 1.33333vw;
    width: 8.26667vw;
    height: 8.26667vw;
    font-size: 5.33333vw;
  }
}

#NEWS .news__main--pagi .page-numbers:hover, #NEWS .news__main--pagi .current:hover {
  background: #0032aa;
  color: #fff;
  opacity: 1;
}

#NEWS .news__main--pagi .current {
  background: #0032aa;
  color: #fff;
}

#NEWS .news__main--pagi .prev, #NEWS .news__main--pagi .next, #NEWS .news__main--pagi .page-numbers.prev, #NEWS .news__main--pagi .page-numbers.next {
  width: 16px;
  height: 18px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/icArrow.svg") center no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  border: none;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--pagi .prev, #NEWS .news__main--pagi .next, #NEWS .news__main--pagi .page-numbers.prev, #NEWS .news__main--pagi .page-numbers.next {
    width: 4.26667vw;
    height: 4.8vw;
  }
}

#NEWS .news__main--pagi .prev {
  -webkit-transform: scaleX(-1);
     -moz-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 22px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--pagi .prev {
    margin-right: 3.2vw;
  }
}

#NEWS .news__main--pagi .next {
  margin-left: 22px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--pagi .next {
    margin-left: 3.2vw;
  }
}

#NEWS .news__main--pagi .disabled {
  opacity: 0.2;
}

#NEWS .news__main--detail h1 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0032aa;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail h1 {
    font-size: 5.33333vw;
    line-height: 8vw;
  }
}

#NEWS .news__main--detail .meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

#NEWS .news__main--detail .meta time {
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .meta time {
    font-size: 3.73333vw;
    margin-right: 3.2vw;
  }
}

#NEWS .news__main--detail .meta a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2px 4px;
  min-width: 80px;
  font-weight: 500;
  height: 24px;
  -moz-border-radius: 12px;
       border-radius: 12px;
  border: 1px solid #0032aa;
  color: #0032aa;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#NEWS .news__main--detail .meta a:hover {
  background: #0032aa;
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .meta a {
    margin: 0.26667vw;
    min-width: 11.73333vw;
    padding: 0 3.2vw;
    height: 5.33333vw;
    -moz-border-radius: 2.66667vw;
         border-radius: 2.66667vw;
    font-size: 3.2vw;
  }
}

#NEWS .news__main--detail .thumb {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .thumb {
    margin-top: 6.66667vw;
  }
}

#NEWS .news__main--detail .thumb img, #NEWS .news__main--detail .thumb .svg {
  width: 100%;
  height: auto;
  -moz-border-radius: 35px;
       border-radius: 35px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .thumb img, #NEWS .news__main--detail .thumb .svg {
    -moz-border-radius: 3.2vw;
         border-radius: 3.2vw;
  }
}

#NEWS .news__main--detail .content {
  font-size: 16px;
  line-height: 32px;
  color: #0032aa;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .content {
    font-size: 3.73333vw;
    line-height: 7.46667vw;
    margin-top: 7.46667vw;
  }
}

#NEWS .news__main--detail .backList {
  text-align: center;
  margin-top: 87px;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .backList {
    margin-top: 14.66667vw;
  }
}

#NEWS .news__main--detail .backList a {
  width: 201px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -moz-border-radius: 22px;
       border-radius: 22px;
  border: 1px solid #0032aa;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#NEWS .news__main--detail .backList a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleX(-1);
     -moz-transform: translateY(-50%) scaleX(-1);
      -ms-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#NEWS .news__main--detail .backList a:hover {
  opacity: 1;
  background: #0032aa;
  color: #fff;
}

#NEWS .news__main--detail .backList a:hover::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #NEWS .news__main--detail .backList a {
    width: 54.93333vw;
    height: 12vw;
    padding: 0 10.66667vw;
    font-size: 4.26667vw;
    -moz-border-radius: 5.86667vw;
         border-radius: 5.86667vw;
  }
}

/*
@media screen and ($over-tab) {}
@media screen and ($less-tab) {}
*/
#CONTACT {
  /*-------------------------------------------> .fv */
}

#CONTACT .contact__main {
  max-width: 780px;
  width: 100%;
  margin: 87px auto 0;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main {
    padding: 0 5.33333vw;
    margin-top: 13.33333vw;
  }
}

#CONTACT .contact__main .intro {
  text-align: center;
  font-size: 18px;
  line-height: 19px;
  font-weight: 500;
  color: #0032aa;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .intro {
    font-size: 4vw;
    line-height: 6.66667vw;
  }
}

#CONTACT .contact__main .form {
  margin-top: 84px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form {
    margin-top: 16vw;
  }
}

#CONTACT .contact__main .form dl dt {
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  color: #0032aa;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dt {
    font-size: 4vw;
    line-height: 4.26667vw;
  }
}

#CONTACT .contact__main .form dl dt.required::after {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "必須";
  background: #005ac8;
  color: #fff;
  width: 48px;
  height: 16px;
  -moz-border-radius: 8px;
       border-radius: 8px;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dt.required::after {
    width: 12vw;
    height: 4vw;
    -moz-border-radius: 2.13333vw;
         border-radius: 2.13333vw;
    font-size: 3.2vw;
  }
}

#CONTACT .contact__main .form dl dd {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dd {
    margin-top: 4.53333vw;
  }
}

#CONTACT .contact__main .form dl dd .wrapInput {
  width: 100%;
}

#CONTACT .contact__main .form dl dd .wrapInput input, #CONTACT .contact__main .form dl dd .wrapInput textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #0032aa;
  color: #0032aa;
  padding: 15px;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.03em;
  -moz-box-shadow: 0;
       box-shadow: 0;
  outline: none;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dd .wrapInput input, #CONTACT .contact__main .form dl dd .wrapInput textarea {
    height: 13.33333vw;
    padding: 4vw;
    font-size: 3.73333vw;
    line-height: 7.46667vw;
  }
}

#CONTACT .contact__main .form dl dd .wrapInput input::-webkit-input-placeholder, #CONTACT .contact__main .form dl dd .wrapInput textarea::-webkit-input-placeholder {
  color: #0032aa;
  opacity: 1;
}

#CONTACT .contact__main .form dl dd .wrapInput input::-moz-placeholder, #CONTACT .contact__main .form dl dd .wrapInput textarea::-moz-placeholder {
  color: #0032aa;
  opacity: 1;
}

#CONTACT .contact__main .form dl dd .wrapInput input:-ms-input-placeholder, #CONTACT .contact__main .form dl dd .wrapInput textarea:-ms-input-placeholder {
  color: #0032aa;
  opacity: 1;
}

#CONTACT .contact__main .form dl dd .wrapInput input::placeholder, #CONTACT .contact__main .form dl dd .wrapInput textarea::placeholder {
  color: #0032aa;
  opacity: 1;
}

#CONTACT .contact__main .form dl dd .wrapInput textarea {
  height: 300px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dd .wrapInput textarea {
    height: 40vw;
  }
}

#CONTACT .contact__main .form dl dd .wrapName {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: -10px -7.5px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dd .wrapName {
    margin: -1.6vw -0.8vw;
  }
}

#CONTACT .contact__main .form dl dd .wrapName .wrapInput {
  width: 380px;
  margin: 10px 7.5px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl dd .wrapName .wrapInput {
    margin: 1.6vw 0.8vw;
    width: 43.73333vw;
  }
}

#CONTACT .contact__main .form dl + dl {
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form dl + dl {
    margin-top: 9.33333vw;
  }
}

#CONTACT .contact__main .form .btn {
  text-align: center;
  margin-top: 97px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form .btn {
    margin-top: 16vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #CONTACT .contact__main .form .btn .back {
    margin: 2.66667vw 0;
  }
}

#CONTACT .contact__main .form .btn button, #CONTACT .contact__main .form .btn input[type="submit"] {
  width: 264px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -moz-border-radius: 22px;
       border-radius: 22px;
  border: 1px solid #0032aa;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1;
  font-weight: 500;
  position: relative;
  outline: none;
  -moz-box-shadow: none;
       box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form .btn button, #CONTACT .contact__main .form .btn input[type="submit"] {
    width: 63.33333vw;
    height: 10.89333vw;
    -moz-border-radius: 5.33333vw;
         border-radius: 5.33333vw;
    font-size: 4vw;
    padding: 0 9.33333vw;
  }
}

#CONTACT .contact__main .form .btn button::after, #CONTACT .contact__main .form .btn input[type="submit"]::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .form .btn button::after, #CONTACT .contact__main .form .btn input[type="submit"]::after {
    width: 3.73333vw;
    height: 2.93333vw;
    right: 6.13333vw;
  }
}

#CONTACT .contact__main .form .btn button:hover, #CONTACT .contact__main .form .btn input[type="submit"]:hover {
  opacity: 1;
  background: #0032aa;
  color: #fff;
}

#CONTACT .contact__main .form .btn button:hover::after, #CONTACT .contact__main .form .btn input[type="submit"]:hover::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

#CONTACT .contact__main .form .btn .back {
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#CONTACT .contact__main .form .btn .back::after {
  -webkit-transform: translateY(-50%) scaleX(-1);
     -moz-transform: translateY(-50%) scaleX(-1);
      -ms-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

#CONTACT .contact__main .thanks h3 {
  text-align: center;
  font-size: 30px;
  line-height: 45px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .thanks h3 {
    font-size: 6.13333vw;
    line-height: 12vw;
  }
}

#CONTACT .contact__main .thanks .txt {
  text-align: center;
  font-size: 18px;
  line-height: 45px;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .thanks .txt {
    font-size: 3.73333vw;
    line-height: 8.53333vw;
    margin: 9.33333vw -2.66667vw 0;
  }
}

#CONTACT .contact__main .thanks .btnBack {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .thanks .btnBack {
    margin-top: 13.33333vw;
  }
}

#CONTACT .contact__main .thanks .btnBack a {
  width: 258px;
  height: 45px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -moz-border-radius: 22px;
       border-radius: 22px;
  border: 1px solid #0032aa;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#CONTACT .contact__main .thanks .btnBack a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  background: url("../images/icArrow.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleX(-1);
     -moz-transform: translateY(-50%) scaleX(-1);
      -ms-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  right: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#CONTACT .contact__main .thanks .btnBack a:hover {
  opacity: 1;
  background: #0032aa;
  color: #fff;
}

#CONTACT .contact__main .thanks .btnBack a:hover::after {
  background: url("../images/icArrowWhite.svg") 0 0 no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

@media screen and (max-width: 767px) {
  #CONTACT .contact__main .thanks .btnBack a {
    width: 65.33333vw;
    height: 12vw;
    padding: 0 9.33333vw;
    font-size: 4vw;
    -moz-border-radius: 5.86667vw;
         border-radius: 5.86667vw;
  }
}

#CONTACT .contact__main .form .btn .back, #CONTACT .contact__main .form .btn input[type="submit"] {
  display: none;
}

#CONTACT .contact__main .form.confirm .btn .confirm {
  display: none;
}

#CONTACT .contact__main .form.confirm .btn .back, #CONTACT .contact__main .form.confirm .btn input[type="submit"] {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.wpcf7-spinner {
  display: none!important;
}
.error {
  display: block;
  width: 100%;
  color: #ff0000;
}
#CONTACT .contact__main .form.confirm .wrapInput input,
#CONTACT .contact__main .form.confirm .wrapInput textarea {
  border: none;
  height: auto;
  width: auto;
}
@-webkit-keyframes afterLoad {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

@-moz-keyframes afterLoad {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

@keyframes afterLoad {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

@-webkit-keyframes afterHidden {
  from {
    overflow: hidden;
  }
  to {
    overflow: inherit;
  }
}

@-moz-keyframes afterHidden {
  from {
    overflow: hidden;
  }
  to {
    overflow: inherit;
  }
}

@keyframes afterHidden {
  from {
    overflow: hidden;
  }
  to {
    overflow: inherit;
  }
}
