@charset "UTF-8";
.common .corporateFooter {
  position: relative;
  background: #FFFFFF;
}

/*! 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%;`.
  */
  -webkit-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%;
  -moz-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;
          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;
          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. */
  -webkit-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., `⇒`).
  */
  -webkit-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
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-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;`.
  */
  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;`.
  */
  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
// ====================================================== */
::-webkit-file-upload-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

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

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

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

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-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(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-ms-input-placeholder)) {
  /*
  * 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(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;
}

::-webkit-file-upload-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])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

::-webkit-file-upload-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button,
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(:enabled)::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

button {
  border: none;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
}

/* FONT ------------------------------------------->
'Inter': 400 500 600 700
'Noto Serif JP': 600
'Noto Sans JP': 300 400 500 700 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 {
  font-weight: 500;
}

.w_sBold {
  font-weight: 600;
}

.w_bold, .f_def {
  font-weight: 700;
}

.w_eBold {
  font-weight: 800;
}

.w_black {
  font-weight: 900;
}

.f_serif {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

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

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

/*-------------------------------------------> html / body style */
#container, * {
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-variant: normal;
}

#container {
  width: 100%;
  min-width: 100%;
  height: 100%;
  background: #f6eee0;
  color: #3e2716;
  font-family: "Zen Kaku Gothic New", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  #container .pc {
    display: block;
  }
  #container .sp {
    display: none;
  }
  #container img.pc, #container .svg.pc {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  #container {
    height: 100%;
  }
  #container .pc {
    display: none;
  }
  #container .sp {
    display: block;
  }
  #container img.pc {
    display: none;
  }
  #container img.sp, #container .svg.sp {
    display: inline;
  }
}
#container .hide {
  display: none;
}

/*-------------------------------------------> link style */
#container a {
  color: inherit;
  outline: none;
  cursor: pointer;
}
#container a:link {
  text-decoration: none;
}
#container a:visited {
  text-decoration: none;
}
#container a:hover {
  text-decoration: none;
}
#container a:active {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #container .OverOpacity,
  #container .OverOpacityGroup a {
    opacity: 1;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
  }
  #container .OverOpacity:hover,
  #container .OverOpacityGroup a:hover {
    opacity: 0.4;
  }
}

/*-------------------------------------------> Common style */
#container img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#container br.pc {
  display: block;
}
#container br.pc.sp {
  display: block;
}
#container br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #container br.pc {
    display: none;
  }
  #container br.sp {
    display: block;
  }
  #container br.sp.pc {
    display: block;
  }
}

/*-------------------------------------------> Layout */
#container {
  position: relative;
  width: 100%;
  /*-------------------------------------------> menu */
}
#container .side {
  /*
  position: fixed;
  z-index: 10;
  height: calc(100vh - 92px);
  top: 92px;
  .Scroll & {
  	height: 100vh;
  	top: 0;
  }
  */
  position: sticky;
  top: 0;
  height: calc(100vh - 92px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: calc((100% - 375px) / 2);
  background: #f6eee0 url(../img/side_bg.png) no-repeat center bottom;
  background-size: 100% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Scroll #container .side {
  height: 100vh;
}
#container .side.sideLeft {
  left: 0;
  float: left;
}
#container .side.sideLeft .frame {
  margin: auto 0 auto auto;
}
#container .side.sideRight {
  right: 0;
  float: right;
}
#container .side.sideRight .frame {
  margin: auto auto auto 0;
}
#container .side .frame {
  width: 100%;
  max-width: 678.75px;
}
#container #main {
  position: relative;
  z-index: 100;
  container-type: inline-size;
  background: #f6eee0;
  width: 375px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #container #main {
    overflow: hidden;
    -webkit-filter: drop-shadow(0px 15px 10px rgba(62, 39, 22, 0.3));
            filter: drop-shadow(0px 15px 10px rgba(62, 39, 22, 0.3));
  }
  #container #menuBtn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #container .side {
    display: none;
  }
  #container #main {
    width: 100vw;
  }
  #container #menuBtn {
    width: 24.2666666667vw;
    height: 16.4vw;
    position: fixed;
    z-index: 600;
    right: 12.5333333333vw;
    bottom: 6vw;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    pointer-events: none;
  }
  .Scroll #container #menuBtn {
    opacity: 1;
    pointer-events: auto;
  }
  #container #menuBtn button {
    display: block;
    width: 100%;
    height: 100%;
  }
  #container #menuBtn img .menu-fill-line, #container #menuBtn .svg .menu-fill-line {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .MOpen #container #menuBtn {
    opacity: 1;
    pointer-events: auto;
  }
  .MOpen #container #menuBtn img .menu-fill-line.line01, .MOpen #container #menuBtn img .menu-fill-line.line03, .MOpen #container #menuBtn .svg .menu-fill-line.line01, .MOpen #container #menuBtn .svg .menu-fill-line.line03 {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  #container #menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #container #menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: url(../img/bg_noise.jpg) repeat center top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #container #menu .logo {
    width: 37.0666666667vw;
    position: absolute;
    top: 8vw;
    left: 7.3333333333vw;
  }
  #container #menu .frame {
    width: 60.6666666667vw;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.3s 0.15s ease-out;
    transition: all 0.3s 0.15s ease-out;
  }
  #container #menu .frame ul li {
    background: transparent;
  }
  #container #menu .frame ul li a {
    display: block;
  }
  #container #menu .frame ul li a img, #container #menu .frame ul li a .svg {
    display: block;
  }
  #container #menu .frame ul li + li {
    margin-top: 9.3333333333vw;
  }
  .MOpen #container #menu {
    pointer-events: auto;
    opacity: 1;
  }
  .MOpen #container #menu .frame {
    opacity: 1;
  }
}

/*-------------------------------------------> splash */
#splash {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  top: 0;
  left: 0;
}
#splash img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  #splash {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #splash {
    display: none;
  }
}

/*-------------------------------------------> pageTop */
@media screen and (min-width: 768px) {
  #pageTop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #pageTop {
    position: fixed;
    z-index: 200;
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    right: 2vw;
    bottom: 2vw;
    pointer-events: none;
    opacity: 0;
  }
  #pageTop a {
    display: block;
  }
  #pageTop a img, #pageTop a .svg {
    -webkit-filter: drop-shadow(0.4vw 0.4vw 0.6666666667vw rgba(235, 97, 0, 0.5));
            filter: drop-shadow(0.4vw 0.4vw 0.6666666667vw rgba(235, 97, 0, 0.5));
  }
}
.Scroll #pageTop {
  pointer-events: auto;
  opacity: 1;
}

/*-------------------------------------------> BlogCode */
.blogCode {
  font-size: 32px;
  line-height: 1.625;
  letter-spacing: 0em;
}
.blogCode p, .blogCode ul, .blogCode ol, .blogCode table {
  margin-bottom: 2em;
}
.blogCode ul, .blogCode ol {
  margin-left: 1.5em;
}
.blogCode h1, .blogCode h2, .blogCode h3, .blogCode h4, .blogCode h5, .blogCode h6 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.4;
  font-weight: bold;
}
.blogCode h1, .blogCode h2 {
  font-size: 40px;
}
.blogCode h3 {
  font-size: 35px;
}
.blogCode h4 {
  font-size: 30px;
}
.blogCode h5 {
  font-size: 25px;
}
.blogCode h6 {
  font-size: 20px;
}
.blogCode ul {
  list-style: disc;
}
.blogCode ol {
  list-style: decimal;
}
.blogCode li {
  list-style-position: outside;
}
.blogCode a {
  text-decoration: underline;
  color: #3e2716;
}
.blogCode a:hover {
  background: #3e2716;
}
.blogCode strong, .blogCode b {
  font-weight: bold;
}
.blogCode img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .blogCode {
    font-size: 32px; /* legacy */
    font-size: 4.2666666667vw;
    line-height: 1.625;
    letter-spacing: 0em;
  }
  .blogCode h1, .blogCode h2, .blogCode h3, .blogCode h4, .blogCode h5, .blogCode h6 {
    line-height: 1.5;
  }
  .blogCode h1, .blogCode h2 {
    font-size: 5.3333333333vw;
  }
  .blogCode h3 {
    font-size: 4.6666666667vw;
  }
  .blogCode h4 {
    font-size: 4vw;
  }
  .blogCode h5 {
    font-size: 3.3333333333vw;
  }
  .blogCode h6 {
    font-size: 2.6666666667vw;
  }
}

/*-------------------------------------------> Loading */
#Loading {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eb6100;
}
#Loading .Loading-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#Loading .Loading-wrap .loader {
  background: #FFF;
  padding: 20px;
}
#Loading .Loading-wrap .loader img {
  width: 185px;
}
@media screen and (max-width: 767px) {
  #Loading .Loading-wrap .loader {
    padding: 2.6666666667vw;
  }
  #Loading .Loading-wrap .loader img {
    width: 46.6666666667vw;
  }
}

/*-------------------------------------------> plugin style */
/* Slick */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -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.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-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;
  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;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  text-indent: -9999px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #3e2716;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #3e2716;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #3e2716;
  opacity: 0.75;
}

@media screen and (max-width: 767px) {
  .slick-dotted.slick-slider {
    margin-bottom: 80px;
  }
  .slick-dots {
    bottom: -80px;
  }
  .slick-dots li {
    height: 25px;
    width: 25px;
    margin: 0 25px;
  }
  .slick-dots li button {
    height: 25px;
    width: 25px;
    padding: 0px;
  }
  .slick-dots li button:before {
    width: 25px;
    height: 25px;
    border-radius: 12px;
    line-height: 25px;
  }
}
/*
@media screen and ($over-tab) {}
@media screen and ($less-tab) {}
*/
/*-------------------------------------------> PC - side */
#container .sideLeft .sideLogo {
  width: clamp(0px, 100% - 60px, 278px);
  position: absolute;
  top: 20px;
  left: 30px;
}
#container .sideLeft .navi {
  width: clamp(0px, 59.1160220994%, 802.5px);
  margin: auto;
}
#container .sideLeft .navi ul {
  width: 100%;
}
#container .sideLeft .navi ul li {
  position: relative;
  padding-left: 0;
}
#container .sideLeft .navi ul li + li {
  margin-top: 38px;
}
#container .sideLeft .navi ul li a {
  display: block;
}
#container .sideLeft .navi ul li img, #container .sideLeft .navi ul li .svg {
  display: block;
}
#container .sideLeft .navi ul li.active::after {
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 28/24;
  background: url(../img/svg/menu_active.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  translate: -120% -50%;
}
#container .sideRight dl {
  width: clamp(0px, 54.1436464088%, 735px);
  margin: auto;
}
#container .sideRight dl dt img {
  width: clamp(0px, 68.9795918367%, 507px);
}
#container .sideRight dl dd {
  margin-top: 18.0487804878%;
}
#container .sideRight dl dd ul li {
  position: relative;
}
#container .sideRight dl dd ul li + li {
  margin-top: 4.8780487805%;
}
#container .sideRight dl dd ul li a {
  display: block;
}
#container .sideRight dl dd ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  opacity: 0;
}
#container .sideRight dl dd ul li a:hover::after {
  opacity: 1;
}
#container .sideRight dl dd ul li:nth-child(1) a::after {
  background-image: url(../img/side_buy_item01_hover.png);
}
#container .sideRight dl dd ul li:nth-child(2) a::after {
  background-image: url(../img/side_buy_item02_hover.png);
}
#container .sideRight dl dd ul li:nth-child(3) a::after {
  background-image: url(../img/side_buy_item03_hover.png);
}

/*-------------------------------------------> #Main */
#main {
  background: #f6eee0;
}
#main #cover {
  position: relative;
  background: #f6eee0 url(../img/cover_bg.jpg) no-repeat center top;
  background-size: 100% auto;
  width: 100%;
}
#main #cover .logo {
  padding-top: 40.4cqw;
}
#main #cover .copy {
  padding-top: 15.2cqw;
}
#main #cover .item {
  padding-top: 10.1333333333cqw;
}
#main #cover .parts {
  position: absolute;
}
#main #cover .anime01 {
  width: 32.5333333333cqw;
  top: 3.9501466667cqw;
  left: 15.49724cqw;
}
#main #cover .anime02 {
  width: 37.7333333333cqw;
  top: 25.8196533333cqw;
  left: 73.1429466667cqw;
}
#main #cover .anime03 {
  width: 39.2cqw;
  top: 52.69836cqw;
  left: -9.3333333333cqw;
}
#main #cover .anime04 {
  width: 39.0666666667cqw;
  top: 94.75152cqw;
  left: 68.3859066667cqw;
}
#main #cover .anime05 {
  width: 34.9333333333cqw;
  top: 3.66628cqw;
  left: 54.17072cqw;
}
#main #cover .anime06 {
  width: 25.6cqw;
  top: 18.64756cqw;
  left: -7.9068666667cqw;
}
#main #cover .anime07 {
  width: 15.2cqw;
  top: 61.8131333333cqw;
  left: 77.6536cqw;
}
#main #cover .anime08 {
  width: 28.9333333333cqw;
  top: 93.4948cqw;
  left: -5.0302533333cqw;
}
#main #cover .anime01 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#main #cover .anime01 img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#main #cover .anime05 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
#main #cover .anime02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#main #cover .anime02 img {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#main #cover .anime06 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#main #cover .anime03 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#main #cover .anime03 img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#main #cover .anime07 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#main #cover .anime04 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#main #cover .anime04 img {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#main #cover .anime08 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
#main #cover .logo {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
#main #cover .copy {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
#main #cover .item {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
#main #about {
  position: relative;
  padding-top: 15.3333333333cqw;
  margin-bottom: 5.3333333333cqw;
}
#main #about .text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 16px; /* legacy */
  font-size: 4.2666666667cqw;
  line-height: 2.25;
  letter-spacing: 0em;
}
#main #about .text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.625em;
  content: "";
}
#main #about .text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.625em;
  content: "";
}
#main #about .text p + p {
  margin-top: 2.25em;
}
#main #about .point {
  margin-top: 40cqw;
}
#main #about .point .point02 {
  margin-top: 17.6cqw;
}
#main #about .point .point03 {
  margin-top: 17.6cqw;
}
#main #about .point .note {
  margin-top: 30.1333333333cqw;
}
#main #about .side01, #main #about .side02, #main #about .side03 {
  position: absolute;
}
#main #about .side01 {
  width: 19.8666666667cqw;
  top: 12cqw;
  right: 0;
}
#main #about .side02 {
  width: 15.4666666667cqw;
  top: 123.6cqw;
  left: 0;
}
#main #about .side03 {
  width: 28cqw;
  top: 221.8666666667cqw;
  right: 0;
}
#main #concept {
  background: url(../img/story_bg.jpg?v=2) no-repeat center top;
  background-size: 100% auto;
  height: 253.3333333333cqw;
  padding-top: 14.6666666667cqw;
}
#main #concept .title {
  margin-bottom: 16cqw;
}
#main #concept .frame {
  overflow: auto;
}
#main #concept .frame::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
#main #concept .frame::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}
#main #concept .frame::-webkit-scrollbar-thumb {
  background-color: #d4aa70;
  border-radius: 100px;
}
#main #concept .frame .text {
  background: url(../img/story_side.png) no-repeat right top;
  background-size: 21.8666666667cqw auto;
  padding: 0 28cqw 0 8cqw;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px; /* legacy */
  font-size: 4.2666666667cqw;
  line-height: 2.65625;
  letter-spacing: 0em;
}
#main #concept .frame .text p + p {
  margin-right: 2.65625em;
}
#main #concept .icon {
  width: 28.8cqw;
  margin-top: 6.6666666667cqw;
  margin-left: 8.5333333333cqw;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: iconScroll;
          animation-name: iconScroll;
}
#main #pairing {
  margin-top: 29.3333333333cqw;
}
#main #pairing .title {
  margin-bottom: 12cqw;
}
#main #pairing .item {
  position: relative;
  padding-top: 44.2666666667cqw;
}
#main #pairing .item + .item {
  margin-top: 11.3333333333cqw;
}
#main #pairing .item .cover, #main #pairing .item .c1, #main #pairing .item .c2, #main #pairing .item .c3, #main #pairing .item .c4 {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}
#main #pairing .item .cover .c1, #main #pairing .item .c1 .c1, #main #pairing .item .c2 .c1, #main #pairing .item .c3 .c1, #main #pairing .item .c4 .c1 {
  z-index: 40;
}
#main #pairing .item .cover .c2, #main #pairing .item .c1 .c2, #main #pairing .item .c2 .c2, #main #pairing .item .c3 .c2, #main #pairing .item .c4 .c2 {
  z-index: 50;
}
#main #pairing .item .cover .c3, #main #pairing .item .c1 .c3, #main #pairing .item .c2 .c3, #main #pairing .item .c3 .c3, #main #pairing .item .c4 .c3 {
  z-index: 30;
}
#main #pairing .item .cover .c4, #main #pairing .item .c1 .c4, #main #pairing .item .c2 .c4, #main #pairing .item .c3 .c4, #main #pairing .item .c4 .c4 {
  z-index: 20;
}
#main #pairing .item .frame {
  position: relative;
  z-index: 10;
  width: 92.5333333333cqw;
  background: #FFF;
  border-style: solid;
  border-width: 0.5333333333cqw;
  border-color: #3e2716;
  border-radius: 5.3333333333cqw;
  padding-top: 82.6666666667cqw;
  margin-left: 4.5333333333cqw;
  -webkit-filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #3e2716);
          filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #3e2716);
}
#main #pairing .item .frame .name {
  width: 92.5333333333cqw;
  margin-bottom: 5.6cqw;
}
#main #pairing .item .frame .text {
  font-size: 16px; /* legacy */
  font-size: 4.2666666667cqw;
  line-height: 1.4375;
  letter-spacing: 0em;
  margin: 0 7.4666666667cqw;
}
#main #pairing .item .frame .text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.21875em;
  content: "";
}
#main #pairing .item .frame .text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.21875em;
  content: "";
}
#main #pairing .item .frame .detail {
  width: 100cqw;
  margin-top: 6cqw;
  margin-left: -5.0666666667cqw;
}
#main #pairing .item.item1 .frame {
  border-color: #a02521;
  -webkit-filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #a02521);
          filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #a02521);
}
#main #pairing .item.item2 .frame {
  border-color: #263f66;
  -webkit-filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #263f66);
          filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #263f66);
}
#main #pairing .item.item3 .frame {
  border-color: #6a0052;
  -webkit-filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #6a0052);
          filter: drop-shadow(1.3333333333cqw 1.3333333333cqw 0 #6a0052);
}
#main #loop {
  position: relative;
  background: #FFF url(../img/pairing_bg.png) no-repeat left top;
  background-size: 100% auto;
  padding: 25.3333333333cqw 0;
  margin-top: 32cqw;
  overflow: hidden;
}
#main #loop .logo {
  position: relative;
  z-index: 50;
}
#main #loop .loop {
  position: absolute;
  z-index: 10;
  top: calc(50% - 3cqw);
  left: 0;
  width: 100%;
}
#main #loop .loopimage {
  width: 267.2cqw;
  height: 6cqw;
  background: url(../img/loop.png) repeat-x left top;
  background-size: auto 100%;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: loop;
          animation-name: loop;
}
#main #lineup {
  background: #FFF;
}
#main #lineup .title {
  margin-bottom: 10.6666666667cqw;
}
#main #lineup .item {
  background: #666;
  padding-top: 13.3333333333cqw;
}
#main #lineup .item .image {
  position: relative;
  width: 89.8666666667cqw;
  height: 89.8666666667cqw;
  border-radius: 3.2cqw;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #f2edea;
}
#main #lineup .item .image .img {
  position: relative;
  z-index: 10;
}
#main #lineup .item .image .img img {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-name: imgswing;
          animation-name: imgswing;
}
#main #lineup .item .image .link {
  width: 19.7333333333cqw;
  height: 19.7333333333cqw;
  position: absolute;
  z-index: 50;
  right: 2.8cqw;
  bottom: 2.8cqw;
}
@media screen and (min-width: 768px) {
  #main #lineup .item .image a .link img .lineup-fill-arrow, #main #lineup .item .image a .link img .lineup-fill-bg, #main #lineup .item .image a .link .svg .lineup-fill-arrow, #main #lineup .item .image a .link .svg .lineup-fill-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #main #lineup .item .image a:hover .link img .lineup-fill-arrow, #main #lineup .item .image a:hover .link .svg .lineup-fill-arrow {
    translate: 2.6666666667cqw 0;
  }
}
#main #lineup .item dl dt {
  margin-top: 9.3333333333cqw;
  margin-bottom: 8cqw;
}
#main #lineup .item dl dd {
  font-size: 16px; /* legacy */
  font-size: 4.2666666667cqw;
  line-height: 1.4375;
  letter-spacing: 0em;
  text-align: center;
  color: #FFF;
  margin-bottom: 8cqw;
}
#main #lineup .item dl dd::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.21875em;
  content: "";
}
#main #lineup .item dl dd::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.21875em;
  content: "";
}
#main #lineup .item dl dd .chart {
  margin-top: 10cqw;
}
#main #lineup .item .material {
  margin-top: 5.3333333333cqw;
}
#main #lineup .item.item1 {
  background: #ae0e16;
}
#main #lineup .item.item1 .image a .link img .lineup-fill-bg, #main #lineup .item.item1 .image a .link .svg .lineup-fill-bg {
  fill: #ee7800;
}
@media screen and (min-width: 768px) {
  #main #lineup .item.item1 .image a:hover .link img .lineup-fill-bg, #main #lineup .item.item1 .image a:hover .link .svg .lineup-fill-bg {
    fill: #ff9a4d;
  }
}
#main #lineup .item.item2 {
  background: #1d4069;
}
#main #lineup .item.item2 .image a .link img .lineup-fill-bg, #main #lineup .item.item2 .image a .link .svg .lineup-fill-bg {
  fill: #6289c6;
}
@media screen and (min-width: 768px) {
  #main #lineup .item.item2 .image a:hover .link img .lineup-fill-bg, #main #lineup .item.item2 .image a:hover .link .svg .lineup-fill-bg {
    fill: #8aaddb;
  }
}
#main #lineup .item.item3 {
  background: #6a0052;
}
#main #lineup .item.item3 .image a .link img .lineup-fill-bg, #main #lineup .item.item3 .image a .link .svg .lineup-fill-bg {
  fill: #be5b8e;
}
@media screen and (min-width: 768px) {
  #main #lineup .item.item3 .image a:hover .link img .lineup-fill-bg, #main #lineup .item.item3 .image a:hover .link .svg .lineup-fill-bg {
    fill: #db88b2;
  }
}
#main #howto {
  background: #FFF;
  margin-top: -34.6666666667cqw;
}
#main #howto .point {
  font-size: 19px; /* legacy */
  font-size: 5.0666666667cqw;
  line-height: 1.5789473684;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 14cqw;
}
#main #howto .point::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.2894736842em;
  content: "";
}
#main #howto .point::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.2894736842em;
  content: "";
}
#main #howto .step {
  background: url(../img/bg_noise.jpg) repeat center top;
  padding-top: 28cqw;
  margin-top: -14cqw;
}
#main #howto .step .stepTitle {
  margin-bottom: 5.6cqw;
}
#main #howto .step .movie {
  width: 86.6666666667cqw;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5.3333333333cqw;
  overflow: hidden;
}
#main #howto .step .movie .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 5.3333333333cqw;
  overflow: hidden;
}
#main #howto .step .movie .frame video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#main #howto .step ol {
  margin-top: 13.3333333333cqw;
}
#main #howto .step ol li + li {
  margin-top: 9.3333333333cqw;
}
#main #howto .step .pointFrame {
  width: 85.3333333333cqw;
  margin-top: 11.3333333333cqw;
  margin-bottom: 12cqw;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4.2666666667cqw;
  border: solid 0.2666666667cqw #3e2716;
  font-size: 16px; /* legacy */
  font-size: 4.2666666667cqw;
  line-height: 1.5625;
  letter-spacing: 0em;
  padding: 4.2666666667cqw 1.3333333333cqw 4.2666666667cqw 5.3333333333cqw;
}
#main #howto .step .pointFrame::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.28125em;
  content: "";
}
#main #howto .step .pointFrame::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.28125em;
  content: "";
}
#main #howto .step .pointFrame ul {
  margin: 0;
  padding: 0;
  margin-left: 1em;
}
#main #howto .step .pointFrame ul li {
  margin: 0;
  padding: 0;
  text-indent: -1em;
}
#main #howto .step .link {
  width: 86.4cqw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  #main #howto .step .link a img .recipe-fill-bg, #main #howto .step .link a .svg .recipe-fill-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #main #howto .step .link a:hover img .recipe-fill-bg, #main #howto .step .link a:hover .svg .recipe-fill-bg {
    fill: #715c4d;
  }
}
#main #slidephoto {
  overflow: hidden;
  background: url(../img/bg_noise.jpg) repeat center top;
}
#main #slidephoto .loopimage {
  margin-top: 9.3333333333cqw;
  margin-bottom: 14.6666666667cqw;
  width: 468.8cqw;
  height: 59.2cqw;
  background: url(../img/loop_slide.jpg) repeat-x left top;
  background-size: auto 100%;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: loop;
          animation-name: loop;
}
#main #shop {
  background: url(../img/bg_noise.jpg) repeat center top;
  padding-bottom: clamp(0px, 24cqw, 90px);
}
#main #shop .item + .item {
  margin-top: 17.6cqw;
}
#main #shop .item .image {
  position: relative;
  width: 68cqw;
  height: 68cqw;
  margin-left: auto;
  margin-right: auto;
}
#main #shop .item .image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 999px;
  position: relative;
  z-index: 10;
}
#main #shop .item .image span {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 50;
  top: 10.6666666667cqw;
  left: 0;
}
#main #shop .item .name {
  margin-top: 12cqw;
}
#main #shop .item .link {
  margin-top: 7.3333333333cqw;
  width: 86.4cqw;
  margin-left: auto;
  margin-right: auto;
}
#main #shop .item .link + .link {
  margin-top: 4cqw;
}
@media screen and (min-width: 768px) {
  #main #shop .item .link a img .amazon-fill-bg, #main #shop .item .link a img .shop-fill-bg, #main #shop .item .link a .svg .amazon-fill-bg, #main #shop .item .link a .svg .shop-fill-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #main #shop .item .link.ec a:hover img .shop-fill-bg, #main #shop .item .link.ec a:hover .svg .shop-fill-bg {
    fill: #ff9a4d;
  }
  #main #shop .item .link.amazon a:hover img .amazon-fill-bg, #main #shop .item .link.amazon a:hover .svg .amazon-fill-bg {
    fill: #715c4d;
  }
}

/* animation
.image {
	animation-delay: 0.3s;
}
&.inView {
	.base, .image {
		animation-name: fadeInUp;
	}
}
*/
.scroll p a::after {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
          animation-timing-function: cubic-bezier(0.5, 0.3, 0, 1);
  -webkit-animation-name: scrollIcon;
          animation-name: scrollIcon;
}

/*-------------------------------------------> animation module */
.anim-fadeIn {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          animation-fill-mode: both;
}

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

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

.anim-fadeInUp {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          animation-fill-mode: both;
}

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

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

.anim-fadeInDown {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          animation-fill-mode: both;
}

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

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

.anim-fadeInRight {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          animation-fill-mode: both;
}

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

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

.anim-fadeInLeft {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          animation-fill-mode: both;
}

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

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

.anim-swing {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.inView .isAnim.inView.anim-swing,
.inView .isAnim.inView .anim-swing,
.inView .anim-swing,
.inView.anim-swing {
  -webkit-animation-name: imgswing;
          animation-name: imgswing;
}

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

.anim-loop {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

.anim-fadeText span {
  display: inline-block;
  opacity: 0;
  -webkit-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;
          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;
          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;
          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;
          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;
          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;
          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;
          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;
          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;
          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;
          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;
          animation-delay: 1.8s;
}

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

.anim-fadeImage img {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-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;
          animation-name: fadeImage;
}

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

.linkArrow img, .linkArrow .svg {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.linkArrow:hover img, .linkArrow:hover .svg {
  -webkit-animation-name: linkArrow;
          animation-name: linkArrow;
}
.linkArrow.arrowR:hover img, .linkArrow.arrowR:hover .svg {
  -webkit-animation-name: linkArrowR;
          animation-name: linkArrowR;
}

.anim-slice {
  clip-path: inset(0 100% 0 0);
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-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;
          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;
          animation-name: slice;
}

.inView .isAnim.anim-slice,
.inView .isAnim .anim-slice {
  -webkit-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;
          animation-name: sliceR;
}

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

.anim-ddon {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
          animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

.anim-bound {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

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

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

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

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

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

.delay5 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

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

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

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

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

.delay10 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

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

/*-------------------------------------------> keyframe */
@-webkit-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, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-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;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-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;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-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;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes imgswing {
  0% {
    rotate: -15deg;
  }
  49% {
    rotate: -15deg;
  }
  50% {
    rotate: 15deg;
  }
  99% {
    rotate: 15deg;
  }
  100% {
    rotate: -15deg;
  }
}
@keyframes imgswing {
  0% {
    rotate: -15deg;
  }
  49% {
    rotate: -15deg;
  }
  50% {
    rotate: 15deg;
  }
  99% {
    rotate: 15deg;
  }
  100% {
    rotate: -15deg;
  }
}
@-webkit-keyframes iconScroll {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 2.6666666667cqw 0;
  }
}
@keyframes iconScroll {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 2.6666666667cqw 0;
  }
}
@-webkit-keyframes loop {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -50% 0;
  }
}
@keyframes loop {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -50% 0;
  }
}
@-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);
  }
  /*
   from {
     opacity: 0;
     transform: translateX(-50px);
     clip-path: inset(0 100% 0 0);
   }
   to {
     opacity: 1;
     transform: translateX(0);
     clip-path: inset(0 0 0 0);
   }
  */
}
@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);
  }
  /*
   from {
     opacity: 0;
     transform: translateX(-50px);
     clip-path: inset(0 100% 0 0);
   }
   to {
     opacity: 1;
     transform: translateX(0);
     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);
  }
}
@keyframes fadeImage {
  from {
    opacity: 0;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    opacity: 1;
    -webkit-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);
  }
}
@keyframes hoverImage {
  from {
    -webkit-transform: translateX(1);
            transform: translateX(1);
  }
  to {
    -webkit-transform: translateX(1.08);
            transform: translateX(1.08);
  }
}
@-webkit-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;
  }
}
@keyframes sliceR {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  99% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: none;
  }
}
@-webkit-keyframes ddon {
  0% {
    opacity: 0;
    scale: 1.5;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes ddon {
  0% {
    opacity: 0;
    scale: 1.5;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@-webkit-keyframes bound {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bound {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}