@charset "UTF-8";
:root {
  --main-font-size: 16px; /*62.5%*/
  --main-font-weight: 400;
  --main-line-height: 1.8;
  --main-letter-spacing: 0;
  --color-primary: #007acc;
  --color-secondary: #f0f0f0;
  --color-background: #ffffff;
  --color-text: #080202;
  --color-midnight-blue: #011e60;
  --color-barberry: #dadd1a;
  --color-stratos: #001447;
  --color-chambray: #344b81;
  --color-rhino: #2d3a5c;
  --font-family-base: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-en: "Helvetica Neue", Arial, sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-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
// ====================================================== */
: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)) {
  /*
  * 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;
}

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

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

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-moz-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)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

/* ==========================================================================
 clamp設定

// how to use
// Include the clamp mixin with font-size property
.my-element {
  @include clamp(font-size, 1rem, 2.5vw, 2rem);
}

// Include the clamp mixin with margin property
.my-element {
  @include clamp(margin, 1rem, 5vw, 2rem);
}
========================================================================== */
/* ==========================================================================
 font-size clamp設定
https://jackswim3411.hatenablog.com/entry/2023/10/16/005702

// 使用例
.example-class {
  // PC: 2.9rem -> 5rem, SP: 1.6rem -> 2.4rem
  @include m.responsive-font-size(29, 50, 16, 24);
}
========================================================================== */
/**
 * Converts a pixel value to vw units.
 *
 * @param $object - The pixel value to be converted.
 * @param $windowSize - The viewport width.
 * @return - The value in vw units.
 */
/**
 * Converts a pixel value to vh units.
 *
 * @param $object - The pixel value to be converted.
 * @param $windowSize - The viewport height.
 * @return - The value in vh units.
 */
/**
 * Converts a pixel value to percentage units.
 *
 * @param $object - The pixel value to be converted.
 * @param $windowSize - The base value for the percentage calculation.
 * @return - The value in percentage units.
 */
/**
 * Halves a pixel value.
 *
 * @param $object - The pixel value to be halved.
 * @return - The halved value.
 */
/**
 * Quarter a pixel value.
 *
 * @param $object - The pixel value to be quartered.
 * @return - The quartered value.
 */
/**
 * Generates a z-index based on a name.
 *
 * @param $name - The name to be converted to a z-index.
 * @return - The generated z-index.
 */
/**
 * Converts a pixel value to em units.
 *
 * @param $pixels - The pixel value to be converted.
 * @param $context - The base font-size (default is 16px).
 * @return - The value in em units.
 */
/*
 * get-em-by-per 関数は、指定されたfont-sizeとletter-spacingのパーセンテージを引数として取り、
 * その結果をem単位で返します。
 *
 * @param {Number} $font-size - 計算の基準となるfont-sizeを指定します。この値はrem単位で指定されます。
 * @param {Number} $percentage - letter-spacingのパーセンテージを指定します。この値は%単位で指定されます。
 * @return {Number} - 計算されたletter-spacingの値をem単位で返します。
 *
 * @example
 *   // 1.4remのfont-sizeと4%のletter-spacingを持つ要素のletter-spacingを計算
 *   p {
 *     font-size: 1.4rem;
 *     letter-spacing: get-em-by-per(1.4, 4);
 *   }
 */
.transitionStop {
  transition-duration: 0s !important;
}

.l-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

html {
  font-size: var(--main-font-size);
  font-weight: var(--main-font-weight);
  line-height: var(--main-line-height);
  letter-spacing: var(--main-letter-spacing);
  font-feature-settings: "palt";
  font-kerning: normal;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
html.is-menu-open {
  overflow: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-size: 100% auto;
  text-align: left;
  text-decoration: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-base);
  overflow-wrap: anywhere; /* はみ出す場合はどこでも改行OK */
  word-break: normal; /* 単語は原則途中で切らない */
  line-break: strict; /* 日本語の禁則処理を厳密に適用 */
  color: #fff;
}
body.is-menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.l-main {
  flex: 1 0 auto;
}

.l-header {
  flex-shrink: 0;
}

.l-footer {
  flex-shrink: 0;
  margin-top: auto;
}

* {
  scrollbar-color: var(--color-barberry) var(--color-chambray);
  scrollbar-width: thin;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.l-header.no-blur {
  backdrop-filter: none;
}
.l-header.no-blur .l-header__logo-img path {
  fill: #fff;
}
.l-header.has-blur {
  backdrop-filter: blur(3px);
}
.l-header.is-hidden-by-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.l-header__logo {
  position: relative;
  z-index: 2;
  margin: 16px 0 0 22px;
}
@media only screen and (max-width: 768px) {
  .l-header__logo {
    margin: 3vw 0 0 2vw;
  }
}
.l-header__logo-anchor {
  display: block;
  line-height: 1;
}
.l-header__logo-img {
  height: 58px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .l-header__logo-img {
    height: 6.6vw;
  }
}
.l-header__logo-img--lower-wh .st0 {
  fill: #ffffff;
}
.l-header__logo-img--lower .st0 {
  fill: #001447;
}

.l-main {
  background-color: var(--color-stratos);
}

.l-prefooter--white {
  background-color: #fff;
}
.l-prefooter--stratos {
  background-color: var(--color-stratos);
}
.l-prefooter__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 104px;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__inner {
    padding: 13vw 0;
    margin-inline: 6.6666666667vw;
  }
}
.l-prefooter__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__top {
    gap: 6.6666666667vw;
    flex-direction: column;
    align-items: center;
  }
}
.l-prefooter__button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px;
  border: 1px solid rgb(255, 255, 255);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  min-width: 550px;
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button {
    font-size: clamp(1rem, 0.273rem + 3.64vw, 1.125rem);
  }
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button {
    letter-spacing: 0.02em;
    padding: 1vw 2vw 2vw;
    min-width: 29.3333333333vw;
    width: 100%;
  }
}
.l-prefooter__button--store:before {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20375%20479'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v479h375V0H0ZM355,459h-142.5v-118.5h-50v118.5H20V20h335v439Z'/%3e%3crect%20class='st0'%20x='66.8'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='340.5'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='340.5'%20width='50'%20height='50'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button--store:before {
    width: 4.4vw !important;
    height: 5.0666666667vw !important;
    transform: translate(2vw, 1vw);
  }
}
.l-prefooter__button--contact:before {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20512%20375'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v375h512V0H0ZM482.4,20h0l-226.5,226.5L29.5,20h452.9ZM492,355H20V38.7l236,236L492,38.7v316.3Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button--contact:before {
    width: 4.8vw !important;
    height: 3.4666666667vw !important;
    transform: translate(2vw, 0);
  }
}
.l-prefooter__button:before {
  width: 33px;
  height: 38px;
  content: "";
}
.l-prefooter__button--text {
  transform: translate(11px, 5px);
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button--text {
    transform: translate(6px, 4px);
  }
}
.l-prefooter__button--arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button--arrow {
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    max-width: 48px;
    max-height: 48px;
  }
}
.l-prefooter__button--arrow:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 14px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20data-name='%20レイヤー%201'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20stroke-width:%200px;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='cls-1'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e") no-repeat left top;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .l-prefooter__button--arrow:after {
    width: 2.2666666667vw;
    height: 1.8666666667vw;
  }
}

.l-footer {
  background-color: #ffffff;
  color: var(--color-text);
}
.l-footer__logo-section {
  display: flex;
  justify-content: center;
  background-color: var(--color-midnight-blue);
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo-section {
    padding: 5.3333333333vw 0 4.4vw;
  }
}
.l-footer__logo-link {
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.l-footer__logo-link:hover {
  opacity: 0.8;
}
.l-footer__galleria-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .l-footer__galleria-logo {
    height: 5.3333333333vw;
  }
}
.l-footer__inner {
  padding: 25px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 6.4vw 6.6666666667vw 6.6666666667vw;
    flex-direction: column;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .l-footer__left {
    gap: 2.6666666667vw;
    width: 100%;
  }
}
.l-footer__nav {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 1.3333333333vw;
    justify-content: center;
  }
}
.l-footer__nav-link {
  text-decoration: none;
  transition: color 0.3s ease;
  position: static;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
@media only screen and (max-width: 768px) {
  .l-footer__nav-link {
    font-size: clamp(0.5625rem, 0.563rem + 0vw, 0.5625rem);
  }
}
.l-footer__nav-link:after {
  content: "｜";
  display: inline-block;
  margin-left: 17px;
  pointer-events: none;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .l-footer__nav-link:after {
    margin-left: 1.3333333333vw;
  }
}
.l-footer__nav-link:last-child:after {
  content: none;
}
.l-footer__nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.l-footer__right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-footer__right {
    width: 100%;
    justify-content: center;
  }
}
.l-footer__company img {
  display: block;
  height: 33px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .l-footer__company img {
    margin-top: 0.5vw;
    height: 4.2666666667vw;
  }
}
.l-footer__copyright {
  padding: 20px 0;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #e5e5e5;
}
@media only screen and (max-width: 768px) {
  .l-footer__copyright {
    padding: 4vw 0;
  }
}
.l-footer__copyright--text {
  margin: 0;
  color: #000;
  letter-spacing: 0.1em;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
@media only screen and (max-width: 768px) {
  .l-footer__copyright--text {
    font-size: clamp(0.5625rem, 0.563rem + 0vw, 0.5625rem);
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__copyright--text {
    letter-spacing: 0.12em;
    padding: 0 2.6666666667vw;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .c-button {
    min-width: 24vw;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .c-button__play-movie {
    max-width: 44.8vw;
    margin: 0 auto;
  }
}
.c-button--shape-pill {
  width: clamp(280px, 25cqw, 400px);
  height: 65px;
  border-radius: 65px;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-pill {
    height: 12vw;
    min-width: 24vw;
    border-radius: 6vw;
    width: 100%;
    max-width: none;
  }
}
.c-button--shape-pill-medium {
  width: clamp(280px, 25cqw, 338px);
  height: 65px;
  border-radius: 65px;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-pill-medium {
    width: 45.0666666667vw;
    height: 9.7333333333vw;
    min-width: 170px;
    border-radius: 9.7333333333vw;
  }
}
.c-button--shape-square {
  width: clamp(280px, 25cqw, 340px);
  height: 67px;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-square {
    height: 10.1333333333vw;
    width: 24vw;
    width: 100%;
  }
}
.c-button--shape-prefooter {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 80px 15px 20px;
  min-width: 550px;
  height: auto;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: clamp(22px, 2.5vw, 28px);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-prefooter {
    min-width: 29.3333333333vw;
    width: 100%;
    padding: 2vw 10vw 2vw 2.6666666667vw;
    gap: 2vw;
    font-size: clamp(16px, 2.4vw, 18px);
    letter-spacing: 0.02em;
  }
}
.c-button--shape-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-icon {
    width: 8.6666666667vw;
    height: 8.6666666667vw;
  }
}
.c-button--shape-roundbox {
  width: auto;
  min-width: 280px;
  height: 100px;
  border-radius: 50px;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-roundbox {
    min-width: 26.6666666667vw;
    height: 13.666667vw;
    border-radius: 9.333333vw;
    width: 100%;
  }
}
.c-button--shape-roundbox-large {
  width: auto;
  min-width: 320px;
  height: 100px;
  border-radius: 50px;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-button--shape-roundbox-large {
    min-width: 26.6666666667vw;
    height: 6.6666666667vw;
    border-radius: 3.3333333333vw;
    width: 100%;
  }
}
.c-button--style-gradient {
  border: 1px solid #ffffff;
}
.c-button--style-gradient:before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
  filter: blur(30px) brightness(1.1);
  border-radius: inherit;
}
@media only screen and (max-width: 768px) {
  .c-button--style-gradient:before {
    display: none;
  }
}
@media (any-hover: hover) {
  .c-button--style-gradient:hover:before {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}
.c-button--style-transparent {
  background-color: transparent;
  border: 1px solid #fff;
}
@media (any-hover: hover) {
  .c-button--style-transparent:hover {
    background-color: #ccd0da;
  }
}
.c-button--style-transparent.c-button--color-stratos {
  border-color: var(--color-stratos);
  color: var(--color-stratos);
}
.c-button--style-transparent.c-button--color-stratos .c-button__icon--play:after {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2042%2042'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M21,0C9.4,0,0,9.4,0,21s9.4,21,21,21,21-9.4,21-21S32.6,0,21,0ZM21,40c-10.5,0-19-8.5-19-19S10.5,2,21,2s19,8.5,19,19-8.5,19-19,19Z'/%3e%3cpolygon%20class='st0'%20points='17%2025.6%2025%2021%2017%2016.4%2017%2025.6'/%3e%3c/svg%3e");
}
.c-button--style-transparent.c-button--color-stratos .c-button__icon--arrow {
  background-color: rgba(0, 20, 71, 0.3);
}
.c-button--style-transparent.c-button--color-stratos .c-button__icon--arrow:after {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e");
}
.c-button--style-transparent.c-button--color-stratos .c-button__icon--arrow--down:after {
  background-image: url("data:image/webp;base64,UklGRhABAABXRUJQVlA4WAoAAAAQAAAAFAAAGAAAVlA4TJwAAAAvFAAGEBqntW07UROn/2Z/ktjLWmgWHnQYlY+e6JHjCgBI5XsSW9nWKr65m08tYHuLZunZPNUEpMlfzfj0AaZHdIAUzU/AmMtv6yKtjEFYqe4d5FWZEuGrSrFBSZUXwfwP1blCXfXAkwQ3T5s0VLljT3mujZIr5tQfrw7O6NNG49TggJLe51Jhh5D+J0eVPWJGP2xlA5NxKNbgaQNQU0FJTgAAADhCSU0D7QAAAAAAEABIAAAAAQACAEgAAAABAAI4QklNBCgAAAAAAAwAAAACP/AAAAAAAAA4QklNBEMAAAAAAA1QYmVXARAABQEAAAAAAA==");
}
@media (any-hover: hover) {
  .c-button--style-transparent.c-button--color-stratos:hover {
    background-color: rgba(0, 20, 71, 0.05);
  }
}
.c-button--style-transparent.c-button--stratos-fadein {
  transition: none;
}
@media (any-hover: hover) {
  .c-button--style-transparent.c-button--stratos-fadein:hover {
    background-color: var(--color-stratos);
  }
  .c-button--style-transparent.c-button--stratos-fadein:hover .c-button__icon,
  .c-button--style-transparent.c-button--stratos-fadein:hover .c-button__img-text,
  .c-button--style-transparent.c-button--stratos-fadein:hover .c-button__text {
    filter: invert(1) brightness(2);
  }
}
.c-button--style-transparent.c-button--white-fadein {
  transition: none;
}
@media (any-hover: hover) {
  .c-button--style-transparent.c-button--white-fadein:hover {
    background-color: #fff;
  }
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__icon,
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__img-text,
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__text {
    color: var(--color-stratos);
  }
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__icon--arrow:after {
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e");
  }
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__icon--play:after {
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2042%2042'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M21,0C9.4,0,0,9.4,0,21s9.4,21,21,21,21-9.4,21-21S32.6,0,21,0ZM21,40c-10.5,0-19-8.5-19-19S10.5,2,21,2s19,8.5,19,19-8.5,19-19,19Z'/%3e%3cpolygon%20class='st0'%20points='17%2025.6%2025%2021%2017%2016.4%2017%2025.6'/%3e%3c/svg%3e");
  }
  .c-button--style-transparent.c-button--white-fadein:hover .c-button__img-text--play-bg {
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20126.4%2025.1'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_レイヤー_1-2'%3e%3cpath%20class='st0'%20d='M8.6,1.6c2,0,3.3.2,4.4,1.3,1.2,1.3,1.2,3,1,4.2-.1.7-.6,2.6-2.2,3.9-1.2,1-2.8,1.6-4.8,1.6h-2.2l-1.2,6.5H0L3.4,1.6h5.2ZM5.3,9.7h1.4c.7,0,1.5,0,2.4-.6.7-.5,1.2-1.3,1.4-2,.2-1-.2-1.6-.6-2-.6-.5-1.5-.6-2.3-.6h-1.2l-1,5.1h0Z'/%3e%3cpath%20class='st0'%20d='M21.4,0l-3.7,19.1h-3.2L18.2,0h3.2Z'/%3e%3cpath%20class='st0'%20d='M31.8,7.8h3.2l-2.2,11.3h-3.2l.3-1.5c-1.5,1.6-3.1,1.8-3.9,1.8-3.5,0-5.4-2.7-4.7-6.1.6-3.3,3.5-6,6.9-6s2.6.2,3.3,1.8l.3-1.5h0ZM24.6,13.4c-.4,1.8.7,3.2,2.6,3.2s3.5-1.4,3.8-3.2-.7-3.2-2.6-3.2-3.5,1.4-3.8,3.2h0Z'/%3e%3cpath%20class='st0'%20d='M40.3,17.4l-3.6-9.6h3.8l2.3,6.4,4.4-6.4h3.7l-12.6,17.3h-3.7s5.7-7.7,5.7-7.7Z'/%3e%3cpath%20class='st0'%20d='M62.7,1.6h2.5l2.6,11.1,7.1-11.1h2.5l-.4,17.5h-3.5l.5-10.8-6.8,10.8h-1.2l-2.5-10.8-3.9,10.8h-3.5L62.7,1.6Z'/%3e%3cpath%20class='st0'%20d='M92.2,9c.9,1,1.4,2.6,1.1,4.4-.4,1.8-1.5,3.4-2.8,4.4-1.2.9-2.8,1.6-5,1.6s-3.5-.7-4.3-1.6c-.9-1-1.4-2.6-1.1-4.4.4-1.9,1.5-3.4,2.8-4.4,1.2-.9,2.8-1.6,5-1.6s3.5.7,4.3,1.6h0ZM89.9,13.4c.3-1.8-.8-3.2-2.6-3.2s-3.5,1.4-3.9,3.2c-.3,1.7.7,3.2,2.6,3.2s3.5-1.5,3.9-3.2Z'/%3e%3cpath%20class='st0'%20d='M98.4,7.8l1.8,6.4,4.3-6.4h3.6l-8,11.3h-1.7l-3.6-11.3s3.6,0,3.6,0Z'/%3e%3cpath%20class='st0'%20d='M113,7.8l-2.2,11.3h-3.2l2.2-11.3h3.2ZM112.6,1c1.1,0,1.8.9,1.6,1.9-.2,1.1-1.2,1.9-2.3,1.9s-1.8-.9-1.6-1.9,1.2-1.9,2.3-1.9Z'/%3e%3cpath%20class='st0'%20d='M125.7,15.9c-.5.8-2.3,3.5-6.3,3.5s-3.2-.5-4.1-1.6c-1.1-1.2-1.3-2.6-.9-4.4.4-2.2,1.6-3.6,2.6-4.4,1.6-1.3,3.3-1.6,4.6-1.6,2.3,0,3.5.9,4.1,1.9.9,1.4.8,3.2.5,4.4v.3h-8.7c-.1.7,0,1.4.2,1.9.2.5.9,1.1,2.1,1.1s2.3-.6,3-1.5l2.9.5h0ZM123.4,11.9c0-1.6-1.1-2.3-2.3-2.3s-2.6.8-3.2,2.3h5.5Z'/%3e%3c/g%3e%3c/svg%3e");
  }
}
.c-button--style-transparent.c-button--color-scorpion {
  border-color: var(--color-stratos);
  color: var(--color-stratos);
}
.c-button--style-transparent.c-button--color-scorpion .c-button__icon--play:after {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2042%2042'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%235e5e5e;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M21,0C9.4,0,0,9.4,0,21s9.4,21,21,21,21-9.4,21-21S32.6,0,21,0ZM21,40c-10.5,0-19-8.5-19-19S10.5,2,21,2s19,8.5,19,19-8.5,19-19,19Z'/%3e%3cpolygon%20class='st0'%20points='17%2025.6%2025%2021%2017%2016.4%2017%2025.6'/%3e%3c/svg%3e");
}
.c-button--style-transparent.c-button--color-scorpion .c-button__icon--arrow {
  background-color: rgba(0, 20, 71, 0.3);
}
.c-button--style-transparent.c-button--color-scorpion .c-button__icon--arrow:after {
  background-image: url("../assets/img/common/arrow_right_scorpion.svg");
}
.c-button--style-transparent.c-button--color-scorpion .c-button__icon--arrow--down:after {
  background-image: url("../assets/img/common/arrow_down_scorpion.webp");
}
.c-button--style-solid {
  border: 1px solid transparent;
}
@media (any-hover: hover) {
  .c-button--style-solid:hover {
    opacity: 0.8;
  }
}
.c-button--style-outline {
  background-color: transparent;
  border: 2px solid currentColor;
}
@media (any-hover: hover) {
  .c-button--style-outline:hover {
    background-color: currentColor;
    color: var(--color-stratos);
  }
}
.c-button--style-prefooter {
  background-color: transparent;
  border: 1px solid var(--color-stratos);
  color: var(--color-stratos);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button--prefooter-stratos-fadein:hover {
    background-color: var(--color-stratos);
    transition: none;
  }
  .c-button--prefooter-stratos-fadein:hover .c-button__icon,
  .c-button--prefooter-stratos-fadein:hover .c-button__img-text,
  .c-button--prefooter-stratos-fadein:hover .c-button__text {
    filter: invert(1) brightness(2);
    transition: none;
  }
}
@media (any-hover: hover) {
  .c-button--prefooter-white-fadein:hover {
    background-color: #fff;
    transition: none;
  }
  .c-button--prefooter-white-fadein:hover .c-button__text {
    color: var(--color-stratos);
  }
  .c-button--prefooter-white-fadein:hover .c-button__icon--arrow:after {
    background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e") no-repeat center;
  }
  .c-button--prefooter-white-fadein:hover .c-button__icon--prefooter-store-white {
    background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20375%20479'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v479h375V0H0ZM355,459h-142.5v-118.5h-50v118.5H20V20h335v439Z'/%3e%3crect%20class='st0'%20x='66.8'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='340.5'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='340.5'%20width='50'%20height='50'/%3e%3c/svg%3e") no-repeat center;
  }
  .c-button--prefooter-white-fadein:hover .c-button__icon--prefooter-contact-white {
    background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20512%20375'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v375h512V0H0ZM482.4,20h0l-226.5,226.5L29.5,20h452.9ZM492,355H20V38.7l236,236L492,38.7v316.3Z'/%3e%3c/svg%3e") no-repeat center;
  }
}
.c-button--style-white-shadow {
  background-color: #fff;
  color: var(--color-stratos);
  border: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 51, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-button--style-white-shadow:hover {
    box-shadow: 5px 5px 8px rgba(0, 0, 51, 0.35);
  }
}
.c-button--style-stratos-border {
  background-color: #fff;
  color: var(--color-stratos);
  border: 2px solid var(--color-stratos);
}
.c-button--color-purple {
  --button-gradient: linear-gradient(90deg,
    rgba(29, 30, 122, 1) 0%,
    rgba(102, 55, 195, 1) 35%,
    rgba(157, 72, 253, 1) 53%,
    rgba(107, 58, 201, 1) 71%,
    rgba(29, 30, 122, 1) 100%);
  background: var(--button-gradient);
}
.c-button--color-purple.c-button--style-gradient:before {
  background: var(--button-gradient);
}
@media only screen and (max-width: 768px) {
  .c-button--color-purple {
    --button-gradient: linear-gradient(90deg,rgba(29, 29, 121, 1) 0%, rgba(85, 50, 177, 1) 13%, rgba(157, 72, 253, 1) 50%, rgba(85, 50, 177, 1) 88%, rgba(29, 29, 121, 1) 100%);
  }
}
.c-button--color-yellow {
  --button-gradient: linear-gradient(90deg,
    rgba(16, 39, 80, 1) 0%,
    rgba(52, 109, 66, 1) 23%,
    rgba(171, 201, 17, 1) 52%,
    rgba(52, 109, 66, 1) 81%,
    rgba(16, 39, 80, 1) 100%);
  background: var(--button-gradient);
  color: var(--color-midnight-blue);
}
.c-button--color-yellow.c-button--style-gradient:before {
  background: var(--button-gradient);
}
@media only screen and (max-width: 768px) {
  .c-button--color-yellow {
    --button-gradient: linear-gradient(90deg,rgba(11, 44, 87, 1) 0%, rgba(43, 102, 65, 1) 8%, rgba(167, 199, 23, 1) 50%, rgba(43, 102, 65, 1) 93%, rgba(11, 44, 87, 1) 100%);
  }
}
.c-button--color-yellow-type2 {
  --button-gradient: linear-gradient(90deg,rgba(114, 165, 0, 1) 0%, rgba(160, 191, 12, 1) 12%, rgba(219, 223, 25, 1) 50%, rgba(160, 191, 12, 1) 89%, rgba(114, 165, 0, 1) 100%);
  background: var(--button-gradient);
  color: var(--color-midnight-blue);
}
.c-button--color-yellow-type2.c-button--style-gradient:before {
  background: var(--button-gradient);
}
.c-button--color-blue {
  --button-gradient: linear-gradient(90deg,
    rgba(142, 49, 182, 1) 0%,
    rgba(120, 127, 199, 1) 23%,
    rgba(18, 187, 216, 1) 52%,
    rgba(120, 127, 199, 1) 81%,
    rgba(142, 49, 182, 1) 100%);
  background: var(--button-gradient);
}
.c-button--color-blue.c-button--style-gradient:before {
  background: var(--button-gradient);
}
@media only screen and (max-width: 768px) {
  .c-button--color-blue {
    --button-gradient: linear-gradient(90deg,rgba(170, 50, 150, 1) 0%, rgba(144, 122, 180, 1) 17%, rgba(25, 186, 215, 1) 50%, rgba(144, 122, 180, 1) 86%, rgba(170, 50, 150, 1) 100%);
  }
}
.c-button--color-darkblue {
  --button-gradient: linear-gradient(90deg,
    rgba(12, 32, 91, 1) 0%,
    rgba(32, 82, 131, 1) 23%,
    rgba(89, 184, 206, 1) 52%,
    rgba(32, 82, 131, 1) 81%,
    rgba(12, 32, 91, 1) 100%);
  background: var(--button-gradient);
}
.c-button--color-darkblue.c-button--style-gradient:before {
  background: var(--button-gradient);
}
@media only screen and (max-width: 768px) {
  .c-button--color-darkblue {
    --button-gradient: linear-gradient(90deg,rgba(13, 35, 93, 1) 0%, rgba(34, 70, 121, 1) 12%, rgba(127, 193, 211, 1) 50%, rgba(34, 70, 121, 1) 89%, rgba(13, 35, 93, 1) 100%);
  }
}
.c-button--color-white {
  background-color: #fff;
  color: var(--color-stratos);
}
.c-button--color-barberry {
  background-color: var(--color-barberry);
  color: var(--color-midnight-blue);
}
.c-button--color-midnight {
  background-color: var(--color-midnight-blue);
  color: #fff;
}
.c-button--color-stratos.c-button--style-solid {
  background-color: var(--color-stratos);
  color: #fff;
}
.c-button--color-white-border.c-button--style-transparent {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.c-button--color-white-border.c-button--style-transparent .c-button__icon--arrow {
  background-color: #ccd0da;
}
.c-button--color-white-border.c-button--style-transparent .c-button__icon--arrow:after {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20data-name='%20レイヤー%201'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20stroke-width:%200px;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='cls-1'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e");
}
.c-button--color-white-border.c-button--style-transparent .c-button__icon--arrow--down:after {
  background-image: url("data:image/webp;base64,UklGRtQAAABXRUJQVlA4WAoAAAAQAAAAFAAAGAAAQUxQSIcAAAABgJtt27Hn+TmJbdtY5Y86p3OVBWxvkVlsp8oVve9Xpo2ICRAlgBj//1g2+gZGli1iP+RzRGsUdq0nAKMakwD7vQ+AacUMwGtb2q8AM38sArzWRKT6gnIJ4Kkov4tPit8PWfk7+6BxlxR1/FZxHRXd6PUfl0HRj94AVyExGrzgzCvG3acOUQMAVlA4ICYAAADQAgCdASoVABkAP8Hc52w/Ni+pKAgD4DgJaQAAPaOgAP7pngAAAA==");
}
.c-button--color-white-border.c-button--style-transparent .c-button__icon--arrow--left:after {
  background-image: url("../assets/img/common/arrow_left.svg");
}
@media (any-hover: hover) {
  .c-button--color-white-border.c-button--style-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.c-button--color-stratos-border.c-button--style-transparent {
  background-color: transparent;
  border-color: var(--color-stratos);
  color: var(--color-stratos);
  transition: none;
}
.c-button--color-stratos-border.c-button--style-transparent .c-button__icon--arrow {
  background-color: #ccd0da;
  transition: none;
}
.c-button--color-stratos-border.c-button--style-transparent .c-button__icon--arrow:after {
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20data-name='%20レイヤー%201'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20stroke-width:%200px;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='cls-1'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e");
}
.c-button--color-stratos-border.c-button--style-transparent .c-button__icon--arrow--down:after {
  background-image: url("data:image/webp;base64,UklGRtQAAABXRUJQVlA4WAoAAAAQAAAAFAAAGAAAQUxQSIcAAAABgJtt27Hn+TmJbdtY5Y86p3OVBWxvkVlsp8oVve9Xpo2ICRAlgBj//1g2+gZGli1iP+RzRGsUdq0nAKMakwD7vQ+AacUMwGtb2q8AM38sArzWRKT6gnIJ4Kkov4tPit8PWfk7+6BxlxR1/FZxHRXd6PUfl0HRj94AVyExGrzgzCvG3acOUQMAVlA4ICYAAADQAgCdASoVABkAP8Hc52w/Ni+pKAgD4DgJaQAAPaOgAP7pngAAAA==");
}
.c-button--color-stratos-border.c-button--style-transparent .c-button__icon--arrow--left:after {
  background-image: url("../assets/img/common/arrow_left.svg");
}
@media (any-hover: hover) {
  .c-button--color-stratos-border.c-button--style-transparent:hover {
    color: #fff;
    background-color: var(--color-stratos);
  }
  .c-button--color-stratos-border.c-button--style-transparent:hover .c-button__icon--arrow {
    background-color: #fff;
  }
  .c-button--color-stratos-border.c-button--style-transparent:hover .c-button__icon--arrow:after {
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e");
  }
}
.c-button__img-text--model {
  display: block;
  width: auto;
  height: clamp(24px, 8cqw, 48px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__img-text--model {
    height: 7.7333333333vw;
  }
}
.c-button__img-text--play {
  display: block;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: clamp(24px, 9cqw, 27px);
  transform: translateX(clamp(12px, 5.333cqw, 32px));
}
@media only screen and (max-width: 768px) {
  .c-button__img-text--play {
    height: 4.6vw;
    transform: translateX(3.4666666667vw);
  }
}
.c-button__img-text--play-bg {
  width: clamp(138px, 9cqw, 138px);
  height: clamp(28px, 9cqw, 28px);
  transform: translateX(clamp(12px, 5.333cqw, 32px));
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20126.36%2025.1'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;stroke-width:0px;}%3c/style%3e%3c/defs%3e%3cg%20id='_レイヤー_1-2'%3e%3cpath%20class='cls-1'%20d='M8.55,1.62c2,0,3.34.21,4.42,1.34,1.19,1.26,1.23,2.96.99,4.22-.13.68-.6,2.57-2.22,3.9-1.17.97-2.75,1.55-4.79,1.55h-2.23l-1.25,6.47H0L3.39,1.62h5.16ZM5.28,9.69h1.41c.67,0,1.52,0,2.37-.55.73-.5,1.21-1.28,1.35-2.04.19-.97-.16-1.62-.6-1.99-.62-.5-1.51-.55-2.34-.55h-1.2l-1,5.14Z'/%3e%3cpath%20class='cls-1'%20d='M21.43,0l-3.7,19.1h-3.24L18.19,0h3.24Z'/%3e%3cpath%20class='cls-1'%20d='M31.79,7.76h3.25l-2.2,11.34h-3.25l.28-1.47c-1.49,1.65-3.07,1.83-3.89,1.83-3.54,0-5.35-2.72-4.71-6.05.65-3.35,3.48-6.03,6.89-6.03.88,0,2.58.16,3.34,1.83l.28-1.47ZM24.62,13.41c-.35,1.81.71,3.22,2.57,3.22s3.47-1.41,3.82-3.22c.35-1.81-.71-3.2-2.57-3.2s-3.46,1.39-3.81,3.2Z'/%3e%3cpath%20class='cls-1'%20d='M40.29,17.4l-3.61-9.64h3.78l2.31,6.44,4.44-6.44h3.67l-12.64,17.34h-3.67l5.72-7.7Z'/%3e%3cpath%20class='cls-1'%20d='M62.74,1.62h2.5l2.55,11.11,7.07-11.11h2.5l-.41,17.48h-3.51l.49-10.77-6.85,10.77h-1.17l-2.46-10.77-3.9,10.77h-3.51L62.74,1.62Z'/%3e%3cpath%20class='cls-1'%20d='M92.18,8.99c.95,1.02,1.44,2.59,1.08,4.45-.36,1.83-1.46,3.41-2.8,4.43-1.16.89-2.78,1.6-4.96,1.6s-3.53-.71-4.34-1.6c-.95-1.02-1.44-2.59-1.08-4.43.36-1.86,1.46-3.43,2.81-4.45,1.16-.89,2.78-1.6,4.96-1.6s3.53.71,4.34,1.6ZM89.91,13.44c.35-1.78-.76-3.22-2.62-3.22s-3.52,1.44-3.87,3.22c-.33,1.73.74,3.2,2.63,3.2s3.53-1.47,3.86-3.2Z'/%3e%3cpath%20class='cls-1'%20d='M98.38,7.76l1.79,6.39,4.27-6.39h3.62l-8,11.34h-1.7l-3.6-11.34h3.62Z'/%3e%3cpath%20class='cls-1'%20d='M112.96,7.76l-2.2,11.34h-3.24l2.2-11.34h3.24ZM112.64,1.05c1.06,0,1.77.86,1.57,1.91s-1.25,1.91-2.31,1.91-1.77-.86-1.57-1.91,1.25-1.91,2.31-1.91Z'/%3e%3cpath%20class='cls-1'%20d='M125.66,15.93c-.51.84-2.33,3.54-6.35,3.54-1.86,0-3.17-.52-4.11-1.6-1.05-1.18-1.29-2.65-.95-4.43.44-2.25,1.64-3.64,2.62-4.45,1.61-1.31,3.26-1.6,4.64-1.6,2.34,0,3.52.92,4.13,1.86.94,1.44.76,3.22.52,4.45l-.05.26h-8.62c-.13.68-.09,1.42.19,1.91.25.47.86,1.07,2.11,1.07s2.27-.58,2.98-1.49l2.89.47ZM123.45,11.92c.03-1.55-1.1-2.28-2.3-2.28s-2.59.76-3.15,2.28h5.45Z'/%3e%3c/g%3e%3c/svg%3e") no-repeat left top/contain;
}
@media only screen and (max-width: 768px) {
  .c-button__img-text--play-bg {
    height: 4.6vw;
    transform: translateX(22.466667%);
  }
}
.c-button__text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.c-button__text--prefooter {
  justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .c-button__text--prefooter {
    padding: 0;
  }
}
.c-button__icon {
  flex-shrink: 0;
}
.c-button__icon--play {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .c-button__icon--play {
    left: 7px;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.c-button__icon--play:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2042%2042'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M21,0C9.4,0,0,9.4,0,21s9.4,21,21,21,21-9.4,21-21S32.6,0,21,0ZM21,40c-10.5,0-19-8.5-19-19S10.5,2,21,2s19,8.5,19,19-8.5,19-19,19Z'/%3e%3cpolygon%20class='st0'%20points='17%2025.6%2025%2021%2017%2016.4%2017%2025.6'/%3e%3c/svg%3e") no-repeat left top;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--play:after {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.c-button__icon--text {
  z-index: 1;
  position: relative;
  display: block;
}
.c-button__icon--arrow {
  position: absolute;
  right: 9px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  background-color: #ccd0da;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow {
    right: 6px;
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    max-width: 48px;
    max-height: 48px;
  }
}
.c-button__icon--arrow:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 10.5px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20data-name='%20レイヤー%201'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20stroke-width:%200px;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='cls-1'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e") no-repeat left top;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow:after {
    width: 2.2666666667vw;
    height: 1.8666666667vw;
  }
}
.c-button__icon--arrow--down:after {
  transform: translate(calc(-50% + 1px), -50%);
  background-image: url("data:image/webp;base64,UklGRtQAAABXRUJQVlA4WAoAAAAQAAAAFAAAGAAAQUxQSIcAAAABgJtt27Hn+TmJbdtY5Y86p3OVBWxvkVlsp8oVve9Xpo2ICRAlgBj//1g2+gZGli1iP+RzRGsUdq0nAKMakwD7vQ+AacUMwGtb2q8AM38sArzWRKT6gnIJ4Kkov4tPit8PWfk7+6BxlxR1/FZxHRXd6PUfl0HRj94AVyExGrzgzCvG3acOUQMAVlA4ICYAAADQAgCdASoVABkAP8Hc52w/Ni+pKAgD4DgJaQAAPaOgAP7pngAAAA==");
}
.c-button__icon--arrow--stratos {
  position: absolute;
  right: 9px;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  background-color: rgba(0, 20, 71, 0.15);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow--stratos {
    right: 6px;
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    max-width: 48px;
    max-height: 48px;
  }
}
.c-button__icon--arrow--stratos:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 14px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow--stratos:after {
    width: 2.2666666667vw;
    height: 1.8666666667vw;
  }
}
.c-button__icon--prefooter-store {
  flex-shrink: 0;
  width: 33px;
  height: 38px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20375%20479'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v479h375V0H0ZM355,459h-142.5v-118.5h-50v118.5H20V20h335v439Z'/%3e%3crect%20class='st0'%20x='66.8'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='340.5'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='340.5'%20width='50'%20height='50'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--prefooter-store {
    width: 4.4vw;
    height: 5.0666666667vw;
  }
}
.c-button__icon--prefooter-contact {
  flex-shrink: 0;
  width: 36px;
  height: 26px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20512%20375'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v375h512V0H0ZM482.4,20h0l-226.5,226.5L29.5,20h452.9ZM492,355H20V38.7l236,236L492,38.7v316.3Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--prefooter-contact {
    width: 4.8vw;
    height: 3.4666666667vw;
  }
}
.c-button__icon--prefooter-store-white {
  flex-shrink: 0;
  width: 33px;
  height: 38px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20375%20479'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v479h375V0H0ZM355,459h-142.5v-118.5h-50v118.5H20V20h335v439Z'/%3e%3crect%20class='st0'%20x='66.8'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='61.9'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='154.8'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='162.5'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='247.7'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='66.8'%20y='340.5'%20width='50'%20height='50'/%3e%3crect%20class='st0'%20x='258.1'%20y='340.5'%20width='50'%20height='50'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--prefooter-store-white {
    width: 4.4vw;
    height: 5.0666666667vw;
  }
}
.c-button__icon--prefooter-contact-white {
  flex-shrink: 0;
  width: 36px;
  height: 26px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_2'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20512%20375'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M0,0v375h512V0H0ZM482.4,20h0l-226.5,226.5L29.5,20h452.9ZM492,355H20V38.7l236,236L492,38.7v316.3Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--prefooter-contact-white {
    width: 4.8vw;
    height: 3.4666666667vw;
  }
}
.c-button__icon--arrow-circle {
  position: absolute;
  right: 21px;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  background-color: var(--color-stratos);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow-circle {
    right: 1.4666666667vw;
    width: 3.8666666667vw;
    height: 3.8666666667vw;
    max-width: 29px;
    max-height: 29px;
  }
}
.c-button__icon--arrow-circle:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 14px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20data-name='%20レイヤー%201'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2013%2012'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20stroke-width:%200px;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='cls-1'%20points='7.2%20.2%205.8%201.8%209%205.1%20.2%205.1%20.2%207.1%209%207.1%205.8%2010.2%207.2%2011.8%2012.8%206.1%207.2%20.2'/%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-button__icon--arrow-circle:after {
    width: 1.2vw;
    height: 1vw;
    max-width: 9px;
    max-height: 7.5px;
  }
}
.c-button__logo {
  display: block;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  position: relative;
}
.c-button__logo--height-small {
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .c-button__logo--height-small {
    height: 2.6666666667vw;
  }
}
.c-button__logo--height-medium {
  height: 40px;
}
@media only screen and (max-width: 768px) {
  .c-button__logo--height-medium {
    height: 3.3333333333vw;
  }
}
.c-button__logo--height-large {
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .c-button__logo--height-large {
    height: 4vw;
  }
}
.c-button__logo--height-xlarge {
  height: 60px;
}
@media only screen and (max-width: 768px) {
  .c-button__logo--height-xlarge {
    height: 4.6666666667vw;
  }
}
.c-button__logo--height-custom {
  height: var(--logo-height, 40px);
}
@media only screen and (max-width: 768px) {
  .c-button__logo--height-custom {
    height: var(--logo-height-sp, 3.3333333333vw);
  }
}
.c-button--width-full {
  width: 100%;
}
.c-button--width-auto {
  width: auto;
}
.c-button--width-fixed {
  width: 320px;
}
@media only screen and (max-width: 768px) {
  .c-button--width-fixed {
    width: 100%;
  }
}
.c-button--width-650 {
  width: 650px !important;
  min-width: auto;
}
@media only screen and (max-width: 768px) {
  .c-button--width-650 {
    width: 100% !important;
  }
}
.c-button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.c-button--loading {
  color: transparent;
}
.c-button--loading:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
}

.c-button--height-compact {
  height: 35px !important;
}
.c-button--height-compact.c-button--shape-pill, .c-button--height-compact.c-button--shape-pill-medium {
  border-radius: 45px;
}
@media only screen and (max-width: 768px) {
  .c-button--height-compact {
    height: 6vw !important;
  }
  .c-button--height-compact.c-button--shape-pill, .c-button--height-compact.c-button--shape-pill-medium {
    border-radius: 6vw;
  }
}
.c-button--padding-compact {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .c-button--padding-compact {
    padding: 0 2.1333333333vw;
  }
}
.c-button--icon-small .c-button__text {
  line-height: 1;
  display: flex;
  transform: translate(-10px, 1px);
  font-size: clamp(0.625rem, 0.559rem + 0.28vw, 0.8125rem);
}
@media only screen and (max-width: 768px) {
  .c-button--icon-small .c-button__text {
    font-size: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  }
}
@media only screen and (max-width: 768px) {
  .c-button--icon-small .c-button__text {
    transform: translate(0, 1px);
  }
}
.c-button--icon-small .c-button__icon {
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 768px) {
  .c-button--icon-small .c-button__icon {
    width: 4.5333333333vw !important;
    height: 4.5333333333vw !important;
  }
}
.c-button--icon-small .c-button__icon--arrow {
  right: 4px;
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 768px) {
  .c-button--icon-small .c-button__icon--arrow {
    right: 3px;
    width: 1.4666666667vw;
    height: 1.3333333333vw;
  }
}

.c-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overscroll-behavior: contain;
}
.c-fullscreen-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.c-fullscreen-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  width: auto;
  max-width: 100%;
  padding: 29.3333333333vw 12vw 8vw;
  box-sizing: border-box;
}
.c-fullscreen-menu__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  gap: 7.4666666667vw;
  margin: 0;
}
.c-fullscreen-menu__item {
  opacity: 0;
}
.c-fullscreen-menu__img {
  width: auto;
  height: 100%;
}
.c-fullscreen-menu__link {
  display: block;
  line-height: 1;
  position: relative;
  color: var(--color-stratos);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
  padding-left: 4vw;
}
.c-fullscreen-menu__link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.0666666667vw;
  height: 1.3333333333vw;
  background: transparent url(data:image/webp;base64,UklGRogAAABXRUJQVlA4WAoAAAAQAAAABwAACQAAQUxQSD8AAAAFYBTbVptrEBusIDHQPDQZ3Ua3UA0wLNMTERExAbWa+QobxDu/g2x/OBPffGBz/ib92aPQAo0cAeOlJ5C5G18AVlA4ICIAAABwAQCdASoIAAoAAsBMJYgCdAF1AAD+9bh/I7CG7DXjEAAA) no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-fullscreen-menu__link--md {
    height: 5.3333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-fullscreen-menu__link--lg {
    height: 7.2vw;
  }
}
.c-fullscreen-menu__subtitle {
  font-size: 14px;
  color: var(--color-stratos);
  margin-top: 5px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-fullscreen-menu__subtitle {
    font-size: 1.6vw;
  }
}
.c-fullscreen-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 6.6666666667vw;
  margin-top: 29.3333333333vw;
}

html.is-menu-open {
  overflow: hidden;
}

body.is-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.c-hamburger {
  display: none;
  position: fixed;
  top: 16px;
  right: 22px;
  width: 90px;
  height: 90px;
  background-color: var(--color-midnight-blue);
  border: 0 none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .c-hamburger:hover .c-hamburger__line:nth-child(1) {
    top: -2px;
  }
  .c-hamburger:hover .c-hamburger__line:nth-child(3) {
    bottom: -2px;
  }
}
@media only screen and (max-width: 768px) {
  .c-hamburger {
    display: flex;
    width: 12vw;
    height: 12vw;
    top: 0;
    right: 0;
  }
}
.c-hamburger__lines {
  position: relative;
  width: 38px;
  height: 26px;
  display: block;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .c-hamburger__lines {
    width: 4vw;
    height: 2.6666666667vw;
  }
}
.c-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: all 0.23s ease-out;
}
@media only screen and (max-width: 768px) {
  .c-hamburger__line {
    height: 0.2666666667vw;
    min-height: 1px;
  }
}
.c-hamburger__line:nth-child(1) {
  top: 0;
}
.c-hamburger__line:nth-child(2) {
  top: calc(50% - 1.5px);
}
@media only screen and (max-width: 768px) {
  .c-hamburger__line:nth-child(2) {
    top: calc(50% - 0.2vw);
    transform: translateX(0.8vw);
  }
}
.c-hamburger__line:nth-child(3) {
  bottom: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(calc(-50% - 1.5px)) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(calc(-50% + 0.5px)) rotate(45deg);
  }
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(calc(-50% + 1.5px)) rotate(-45deg);
}

.c-section-title--small {
  width: auto;
  height: 44px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-section-title--small {
    height: 5.2vw;
  }
}
.c-section-title--md {
  width: auto;
  height: 50px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-section-title--md {
    height: 5.2vw;
  }
}
.c-section-title__img {
  width: auto;
  height: 100%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .c-section-title__img {
    height: 100%;
  }
}

/**
 * YouTube Modal Component
 * YouTube動画を再生するモーダル
 */
.youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.youtube-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.youtube-modal.is-active .youtube-modal__content {
  transform: translate(-50%, -50%) scale(1);
}
.youtube-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.youtube-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 1200px;
  background-color: #000;
  overflow: visible;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .youtube-modal__content {
    width: 95%;
    max-width: none;
  }
}
.youtube-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 0;
}
.youtube-modal__close:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .youtube-modal__close {
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
  }
}
.youtube-modal__close-icon {
  width: 28px;
  height: 28px;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .youtube-modal__close-icon {
    width: 30px;
    height: 30px;
  }
}
.youtube-modal__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  aspect-ratio: 16/9;
  height: 0;
  overflow: hidden;
  background-color: #000;
}
.youtube-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.youtube-modal__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.p-kv .swiper,
.p-kv .swiper-wrapper,
.p-kv .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.p-kv {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  min-height: 780px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-kv {
    height: 146.6666666667vw;
    background: transparent;
    min-height: 53.3333333333vw;
  }
}
.p-kv__swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-kv__slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-kv__slide.swiper-slide {
  width: 100%;
  height: 100%;
  display: block;
}
.p-kv__element {
  opacity: 0;
  will-change: transform, opacity;
}
.p-kv__element-img {
  width: auto;
  height: 100%;
  display: block;
}
.p-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.55);
  transform-origin: center center;
  will-change: transform, opacity;
}
.p-kv__catch {
  position: absolute;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-kv__catch {
    max-width: 82px;
  }
}
.p-kv__copy {
  position: absolute;
  top: 1.5625%;
  left: 8.3333333333%;
  width: 52.0833333333%;
  max-width: 998px;
  height: auto;
  z-index: 2;
  aspect-ratio: 1.277;
}
@media only screen and (max-width: 1100px) {
  .p-kv__copy {
    top: 41.5625%;
    left: 5.333333%;
  }
}
@media only screen and (max-width: 768px) {
  .p-kv__copy {
    top: 8.8vw;
    left: 12.6666666667vw;
    width: 74.5333333333vw;
    max-width: 280px;
  }
}
.p-kv__copy path, .p-kv__copy polygon {
  fill: #fff;
  opacity: 0;
}
.p-kv__person {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 768px) {
  .p-kv__person {
    width: 100%;
    aspect-ratio: 0.682;
  }
}
.p-kv__person-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.p-kv__product {
  position: absolute;
  z-index: 3;
}
[data-slide-index="0"] .p-kv__bg {
  background: transparent url(../img/kv/kv_bg1.webp) no-repeat center center/cover;
  transform: scale(1.55);
}
@media only screen and (max-width: 768px) {
  [data-slide-index="0"] .p-kv__bg {
    background: transparent url(../img/kv/kv_bg1@sp.webp) no-repeat center center/cover;
  }
}
[data-slide-index="0"] .p-kv__catch {
  bottom: 7.5625%;
  right: 5.7%;
  width: 32.6%;
  max-width: 623px;
  aspect-ratio: 3.333;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="0"] .p-kv__catch {
    bottom: 6.666667vw;
    left: 4vw;
    width: 23.8vw;
    right: auto;
    aspect-ratio: 0.357; /* 173 ÷ 484 */
  }
}
[data-slide-index="0"] .p-kv__product {
  bottom: 4.5625%;
  left: 4.6%;
  width: 26.875%;
  max-width: 516px;
  aspect-ratio: 2.438;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="0"] .p-kv__product {
    bottom: 6.2666666667vw;
    left: auto;
    right: 4.2666666667vw;
    width: 60vw;
    max-width: 225px;
    aspect-ratio: 2.446;
  }
}
[data-slide-index="1"] .p-kv__bg {
  background: transparent url(../img/kv/kv_bg2.webp) no-repeat center center/cover;
  transform: scale(1.5);
}
@media only screen and (max-width: 768px) {
  [data-slide-index="1"] .p-kv__bg {
    background: transparent url(../img/kv/kv_bg2@sp.webp) no-repeat center center/cover;
  }
}
[data-slide-index="1"] .p-kv__catch {
  bottom: 4%;
  right: 4%;
  width: 9.5833333333%;
  max-width: 184px;
  aspect-ratio: 0.357;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="1"] .p-kv__catch {
    bottom: 6.666667vw;
    left: 4vw;
    width: 23.8vw;
    aspect-ratio: 0.357; /* 173 ÷ 484 */
  }
}
[data-slide-index="1"] .p-kv__product {
  bottom: 2%;
  left: 5%;
  width: 22.6041666667%;
  max-width: 434px;
  aspect-ratio: 2.057;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="1"] .p-kv__product {
    bottom: 4.266667vw;
    left: auto;
    right: 2.266667vw;
    width: 55vw;
    max-width: 225px;
    aspect-ratio: 2.061;
  }
}
[data-slide-index="2"] .p-kv__bg {
  background: transparent url(../img/kv/kv_bg3.webp) no-repeat center center/cover;
  transform: scale(1.6);
}
@media only screen and (max-width: 768px) {
  [data-slide-index="2"] .p-kv__bg {
    background: transparent url(../img/kv/kv_bg3@sp.webp) no-repeat center center/cover;
  }
}
[data-slide-index="2"] .p-kv__catch {
  bottom: 4%;
  right: 4%;
  width: 9.5833333333%;
  max-width: 184px;
  aspect-ratio: 0.357;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="2"] .p-kv__catch {
    bottom: 6.666667vw;
    left: 4vw;
    width: 23.8vw;
    aspect-ratio: 0.357; /* 173 ÷ 484 */
  }
}
[data-slide-index="2"] .p-kv__product {
  bottom: 2%;
  left: 5%;
  width: 24.1145833333%;
  max-width: 463px;
  aspect-ratio: 2.186;
}
@media only screen and (max-width: 768px) {
  [data-slide-index="2"] .p-kv__product {
    bottom: 4.266667vw;
    left: auto;
    right: 2.266667vw;
    width: 55vw;
    max-width: 225px;
    aspect-ratio: 2.208;
  }
}
.p-kv .swiper-button-prev,
.p-kv .swiper-button-next {
  display: none !important;
}
.p-kv__pagination {
  position: absolute !important;
  bottom: 32px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 22px;
  width: auto !important;
}
@media only screen and (max-width: 768px) {
  .p-kv__pagination {
    display: none;
  }
}
.p-kv__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}
.p-kv__pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.p-kv__pagination .swiper-pagination-bullet-active {
  background: var(--color-barberry);
}
.p-kv__pagination .swiper-pagination-bullet-active:hover {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .p-kv__element {
    transition: none !important;
    animation: none !important;
  }
  .p-kv .swiper-slide {
    transition-duration: 0.001ms !important;
  }
  .p-kv__nav-prev, .p-kv__nav-next,
  .p-kv .swiper-pagination-bullet {
    transition: none !important;
  }
}
.p-concept {
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-concept {
    padding: 8vw 0;
    padding: 13vw 0;
  }
}
.p-concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .p-concept__inner {
    padding: 0;
  }
}
.p-concept__title {
  margin-bottom: 84px;
  will-change: clip-path, opacity, transform;
  transform-origin: left center;
}
@media only screen and (max-width: 768px) {
  .p-concept__title {
    margin-bottom: 10vw;
  }
}
.p-concept__content {
  text-align: center;
  margin-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  .p-concept__content {
    margin-bottom: 6vw;
  }
}
.p-concept__text {
  line-height: 1.75;
  margin-bottom: 81px;
  letter-spacing: 0.02em;
  color: var(--color-stratos);
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-concept__text {
    font-size: clamp(0.75rem, 0.023rem + 3.64vw, 0.875rem);
  }
}
.p-concept__text .concept-text-line {
  line-height: 2.2;
  display: inline-block;
  will-change: clip-path, opacity, transform;
  transform-origin: left center;
  margin-bottom: 10vw;
}
@media only screen and (max-width: 768px) {
  .p-concept__text {
    line-height: 2.8;
    letter-spacing: -0.04em;
    margin-bottom: 12vw;
  }
}
.p-concept__emphasis {
  line-height: 1.75;
}
.p-concept__emphasis-img {
  width: auto;
  max-width: 100%;
  height: clamp(12px, 5.333cqw, 40px);
  display: block;
  margin: 0 auto 13px;
  will-change: clip-path, opacity, transform;
  transform-origin: left center;
}
@media only screen and (max-width: 768px) {
  .p-concept__emphasis-img {
    height: 6.4vw;
    margin-bottom: 2vw;
  }
}
.p-concept__emphasis-img path {
  fill: var(--color-stratos);
}
.p-concept__emphasis-text {
  letter-spacing: 0.08em;
  color: var(--color-stratos);
  will-change: clip-path, opacity, transform;
  transform-origin: left center;
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-concept__emphasis-text {
    font-size: clamp(0.75rem, 0.023rem + 3.64vw, 0.875rem);
  }
}
.p-concept__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-concept__buttons .c-button {
  will-change: clip-path, opacity, transform;
  transform-origin: left center;
}

.p-product {
  padding: 120px 0 0;
  background-color: #e4e5e8;
}
@media only screen and (max-width: 768px) {
  .p-product {
    padding: 12vw 0 0;
  }
}
.p-product__series--s {
  opacity: 0;
  will-change: opacity;
}
.p-product__series--x {
  opacity: 0;
  will-change: opacity;
}
.p-product__series--f {
  opacity: 0;
  will-change: opacity;
}
.p-product__series--gsl {
  opacity: 0;
  will-change: opacity;
}
.p-product__series-name, .p-product__series-catch, .p-product__series-supplement, .p-product__series-text, .p-product__series-figure, .p-product__series-buttons {
  opacity: 0;
  will-change: opacity, transform;
}
.p-product__series-img--gsl1, .p-product__series-img--gsl2 {
  opacity: 0;
  will-change: opacity, transform;
}
.p-product__title {
  margin-bottom: 100px;
  will-change: opacity, transform;
}
@media only screen and (max-width: 768px) {
  .p-product__title {
    margin-bottom: 8vw;
  }
}
.p-product__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1440px;
  padding-inline: clamp(20px, 5cqw, 240px);
  margin: 0 auto 122px auto;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .p-product__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    padding-inline: 0;
    margin: 0 13.6666666667vw 13.666667vw;
  }
}
.p-product__nav-link {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  border-radius: 10px;
  flex: 1 1 0;
  min-width: 0;
  transition: all 0.3s ease;
  container-type: inline-size;
  box-shadow: 0 3px 5px 1px rgba(1, 21, 68, 0.3);
  will-change: opacity;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0;
  }
}
@media (any-hover: hover) {
  .p-product__nav-link:hover:after {
    animation: iconDownFade 0.5s linear infinite;
  }
}
@keyframes iconDownFade {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
}
.p-product__nav-link:after {
  z-index: 2;
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  background: transparent url(data:image/webp;base64,UklGRgQBAABXRUJQVlA4WAoAAAAQAAAAHAAAEAAAQUxQSLcAAAABgFzb2rHn/vk6+UexbbsL27ZtZ6w+0kQqsI3Re4JPJUTEBMjar5K/VQeWrENMvS91hiPrCDDNPjQb4KT8GzCdnjoM8F2pkk+AXg+9AJ+lkgo/AIZcDQJ8FOl/zjvAhItxgPdc2We+Asw6zAC8Zsk57Rlg0WYR4DldbpOeANYDCqwCPCXLffwDwHbINsBDgrzG3gKcAdzFynvkDfY3UfIz7NLmKkz+RlwD15HyO/Sci1D5HzwNyj0AVlA4ICYAAADQAgCdASodABEAP8Hc52w/Ni+pKAgD4DgJaQAAPaOgAP7pngAAAA==) no-repeat left top;
  background-size: contain;
  width: 14px;
  height: 9px;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link:after {
    bottom: 5px;
    width: 1.8666666667vw;
    height: 1.2vw;
    max-width: 14px;
    max-height: 9px;
  }
}
.p-product__nav-link--series-s {
  background: transparent url(../img/top/s_series_button_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link--series-s {
    background: transparent url(../img/top/s_series_button_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__nav-link--series-x {
  background: transparent url(../img/top/x_series_button_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link--series-x {
    background: transparent url(../img/top/x_series_button_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__nav-link--series-f {
  background: transparent url(../img/top/f_series_button_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link--series-f {
    background: transparent url(../img/top/f_series_button_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__nav-link--series-gsl {
  background: transparent url(../img/top/gsl_series_button_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-link--series-gsl {
    padding: 7.7% 0 5.23%;
    background: transparent url(../img/top/gsl_series_button_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__nav-img {
  width: auto;
  height: clamp(48px, 40cqw, 138px);
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-product__nav-img {
    height: 16.8vw;
    transform: translateY(-1.6vw);
  }
}
.p-product__series {
  padding: 5.4% 0 5.23%;
}
@media only screen and (max-width: 768px) {
  .p-product__series {
    padding: 6vw 7vw 10vw;
  }
}
.p-product__series:last-child {
  margin-bottom: 0;
}
.p-product__series-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: clamp(20px, 10cqw, 180px);
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .p-product__series-inner {
    padding: 0;
  }
}
.p-product__series--s {
  background: transparent url(../img/top/s_series_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__series--s {
    background: transparent url(../img/top/s_series_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__series--x {
  background: transparent url(../img/top/x_series_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__series--x {
    background: transparent url(../img/top/x_series_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__series--f {
  background: transparent url(../img/top/f_series_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__series--f {
    background: transparent url(../img/top/f_series_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__series--gsl {
  background: transparent url(../img/top/gsl_series_bg.webp) no-repeat left top;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-product__series--gsl {
    background: transparent url(../img/top/gsl_series_bg@sp.webp) no-repeat left top;
    background-size: cover;
  }
}
.p-product__series-content {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  container-type: inline-size;
}
@media only screen and (max-width: 768px) {
  .p-product__series-content {
    position: relative;
  }
}
.p-product__series-info {
  width: 768px;
  flex-shrink: 0;
}
@container (max-width: 1600px) {
  .p-product__series-info {
    width: clamp(320px, 50cqw, 768px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-info {
    width: 100% !important;
  }
}
.p-product__series-info--x {
  width: 880px;
  transform: translate(-1%, 0%);
}
@container (max-width: 1600px) {
  .p-product__series-info--x {
    width: clamp(320px, 45cqw, 768px);
  }
}
.p-product__series-info--gsl {
  width: 998px;
  transform: translate(8%, 0%);
}
@container (max-width: 1600px) {
  .p-product__series-info--gsl {
    width: clamp(320px, 62.375cqw, 768px);
  }
}
@container (max-width: 1440px) {
  .p-product__series-info--gsl {
    width: clamp(320px, 52.375cqw, 768px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-info--gsl {
    transform: translateX(0);
  }
}
.p-product__series-figure {
  flex-shrink: 0;
}
.p-product__series-figure--s {
  width: 540px;
}
@container (max-width: 1600px) {
  .p-product__series-figure--s {
    width: clamp(200px, 34.75cqw, 540px);
    transform: translateY(3%);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-figure--s {
    position: absolute;
    top: 12vw;
    right: -3vw;
    width: 36.5333333333vw;
  }
}
.p-product__series-figure--x {
  width: 650px;
  transform: translate(4%, -1%);
}
@container (max-width: 1600px) {
  .p-product__series-figure--x {
    width: clamp(200px, 45.625cqw, 650px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-figure--x {
    position: absolute;
    top: 18vw;
    right: -1vw;
    width: 42.4vw;
  }
}
.p-product__series-figure--f {
  width: 798px;
  transform: translate(5%, -2%);
}
@container (max-width: 1600px) {
  .p-product__series-figure--f {
    width: clamp(200px, 59.875cqw, 798px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-figure--f {
    position: absolute;
    top: 22vw;
    right: -1vw;
    width: 44.8vw;
  }
}
.p-product__series-figure--gsl {
  position: relative;
  width: 750px;
  transform: translate(-5%, 0);
}
@container (max-width: 1600px) {
  .p-product__series-figure--gsl {
    width: clamp(200px, 46.875cqw, 750px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-figure--gsl {
    transform: translateX(0) !important;
    width: 48vw;
    margin: 0 auto 4.666667vw;
  }
}
.p-product__series-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.p-product__series-img--gsl1 {
  z-index: 2;
  position: relative;
  margin-top: 8%;
  width: 380px;
}
@container (max-width: 1600px) {
  .p-product__series-img--gsl1 {
    width: clamp(100px, 24.75cqw, 380px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-img--gsl1 {
    margin-top: 13.3333333333vw;
    width: 24vw;
  }
}
.p-product__series-img--gsl2 {
  z-index: 1;
  position: absolute;
  top: 0;
  right: -2%;
  width: 380px;
}
@container (max-width: 1600px) {
  .p-product__series-img--gsl2 {
    width: clamp(100px, 24.75cqw, 380px);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-img--gsl2 {
    margin-top: -6.666667vw;
    width: 24vw;
  }
}
.p-product__series-name {
  margin-bottom: 10.71875%;
}
@media only screen and (max-width: 768px) {
  .p-product__series-name {
    margin-bottom: 14.8vw;
  }
}
.p-product__series-name--sm {
  height: clamp(42px, 20cqw, 127px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-name--sm {
    height: 14.8vw;
  }
}
.p-product__series-name--md {
  height: clamp(42px, 20cqw, 132px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-name--md {
    height: 14.8vw;
  }
}
.p-product__series-name--lg {
  height: clamp(42px, 20cqw, 192px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-name--lg {
    height: 23.5vw;
    transform: translateX(-2.6vw) !important;
    margin-bottom: 10.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-name--lg + .p-product__series-catch {
    height: 21.466667vw;
    transform: translateX(-2.6vw) !important;
  }
}
.p-product__series-name-img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__series-catch {
  margin-bottom: 8.114583%;
  height: clamp(86px, 16cqw, 256px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-catch {
    margin-bottom: 3.666667vw;
    height: 25.4666666667vw;
  }
}
.p-product__series-catch-img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__series-catch--x {
  height: clamp(86px, 17cqw, 254px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-catch--x {
    height: 25.466667vw;
  }
}
.p-product__series-supplement {
  margin-bottom: 7.510417%;
  height: clamp(16px, 12cqw, 35px);
}
@media only screen and (max-width: 768px) {
  .p-product__series-supplement {
    margin-bottom: 14.1333333333vw;
    height: 2.9333333333vw;
  }
}
.p-product__series-supplement-img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product__series-text {
  margin-bottom: 12%;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.65;
  font-size: clamp(0.75rem, 0.574rem + 0.75vw, 1.25rem);
}
@media only screen and (max-width: 768px) {
  .p-product__series-text {
    font-size: clamp(0.625rem, 0.261rem + 1.82vw, 0.6875rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-text {
    letter-spacing: -0.01em;
    margin-bottom: 5.666667vw;
  }
  .p-product__series-text br {
    display: none;
  }
}
.p-product__series-buttons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-product__series-buttons {
    gap: 5.3333333333vw;
    flex-direction: column;
  }
}
.p-product__series-buttons--x {
  margin-top: 2.5%;
}
@media only screen and (max-width: 768px) {
  .p-product__series-buttons--x {
    margin-top: 3.5%;
  }
}
@media only screen and (max-width: 768px) {
  .p-product__series-buttons .c-button__play-movie {
    margin: 1.3333333333vw auto 0;
  }
}

.p-and-galleria {
  padding: 120px 0 100px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-and-galleria {
    padding: 14.6666666667vw 0 12.666667vw;
  }
}
.p-and-galleria__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__inner {
    padding: 0 6.6666666667vw;
  }
}
.p-and-galleria__title {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__title {
    margin-bottom: 9.3333333333vw;
  }
}
.p-and-galleria__title img {
  width: auto;
  height: 74px;
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__title img {
    height: 9.2vw;
  }
}
.p-and-galleria__text {
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 70px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  color: var(--color-stratos);
  font-size: clamp(1.75rem, 1.618rem + 0.56vw, 2.125rem);
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__text {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__text {
    line-height: 1.65;
    margin-bottom: 9.3333333333vw;
  }
}
.p-and-galleria__buttons {
  display: flex;
  justify-content: center;
}
.p-and-galleria__buttons .c-button__img-text {
  display: block;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: clamp(14px, 6cqw, 23px);
}
@media only screen and (max-width: 768px) {
  .p-and-galleria__buttons .c-button__img-text {
    height: 5.6vw;
  }
}

.p-information {
  padding: 114px 0;
  background-color: #e4e5e9;
}
@media only screen and (max-width: 768px) {
  .p-information {
    padding: 16vw 0 11vw;
  }
}
.p-information__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 45px 73px;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .p-information__inner {
    margin-inline: 6vw;
    padding: 0;
  }
}
.p-information__title {
  margin-bottom: 95px;
}
@media only screen and (max-width: 768px) {
  .p-information__title {
    margin-bottom: 14.6666666667vw;
  }
}
.p-information__list {
  list-style: none;
  padding: 36px 0 0;
  margin: 0;
  border-top: 1px solid #808fb0;
}
@media only screen and (max-width: 768px) {
  .p-information__list {
    padding: 4.2666666667vw 0 0;
  }
}
.p-information__item {
  border-bottom: 1px solid #808fb0;
  margin-bottom: 36px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .p-information__item {
    margin-bottom: 4.5333333333vw;
    padding-bottom: 4.8vw;
  }
}
.p-information__item:last-child {
  border-bottom: none;
}
.p-information__link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .p-information__link {
    gap: 1.3333333333vw;
    flex-wrap: wrap;
  }
}
.p-information__link:before {
  position: absolute;
  bottom: 9px;
  right: 0;
  content: "";
  width: 50px;
  height: 50px;
  background: transparent url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%2050%2050'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.7.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%208)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%230a163a;%20}%20.st1%20{%20fill:%20%23d9de1a;%20}%20%3c/style%3e%3c/defs%3e%3crect%20class='st1'%20width='50'%20height='50'/%3e%3cpolygon%20class='st0'%20points='26.1%2012.9%2024%2015%2032.5%2023.5%2011.8%2023.5%2011.8%2026.5%2032.5%2026.5%2024%2034.9%2026.1%2037.1%2038.2%2025%2026.1%2012.9'/%3e%3c/svg%3e") left top;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .p-information__link:before {
    right: -6px;
    bottom: 1.2vw;
    width: 4vw;
    height: 4vw;
  }
}
.p-information__meta {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .p-information__meta {
    margin-bottom: 2.9333333333vw;
  }
}
.p-information__category {
  display: inline-block;
  margin-right: 20px;
  color: var(--color-rhino);
  opacity: 0.4;
  font-weight: 500;
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-information__category {
    font-size: clamp(0.6875rem, -0.04rem + 3.64vw, 0.8125rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-information__category {
    margin-right: 2vw;
    min-width: 9.3333333333vw;
  }
}
.p-information__date {
  color: var(--color-rhino);
  opacity: 0.4;
  font-weight: 500;
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-information__date {
    font-size: clamp(0.6875rem, -0.04rem + 3.64vw, 0.8125rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-information__date {
    min-width: 10.6666666667vw;
  }
}
.p-information__text {
  width: 93%;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-stratos);
  font-size: clamp(1.375rem, 1.243rem + 0.56vw, 1.75rem);
}
.p-information__text a {
  transition: all .3s;
}
.p-information__text a:hover {
  opacity: 0.5;
  transition: all .3s;
}
@media only screen and (max-width: 768px) {
  .p-information__text {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-information__text {
    width: 95%;
    letter-spacing: -0.01em;
    line-height: 1.75;
  }
}
.p-information__button {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.p-stores {
  background-color: #fff;
  color: var(--color-stratos);
  padding: 120px 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-stores {
    padding: 25vw 0 3.666667vw;
  }
}
.p-stores__inner {
  max-width: 650px;
  margin: 0 auto;
  padding-inline: 40px;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .p-stores__inner {
    padding: 0 6.6666666667vw;
  }
}
.p-stores__title {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .p-stores__title {
    margin-bottom: 9.666667vw;
  }
}
.p-stores__section-divider {
  border-top: 1px solid #808aa3;
  border-bottom: none;
  padding: 0;
  height: 1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-stores__section-divider--md {
  margin: 40px 0 80px;
}
@media only screen and (max-width: 768px) {
  .p-stores__section-divider--md {
    margin: 5.3333333333vw 0 10.6666666667vw;
  }
}
.p-stores__section-divider--lg {
  margin: 70px 0 66px;
}
@media only screen and (max-width: 768px) {
  .p-stores__section-divider--lg {
    margin: 9.533333vw 0 9.8vw;
  }
}
.p-stores__section-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-stores__section-title {
    font-size: clamp(0.8125rem, 0.085rem + 3.64vw, 0.9375rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-stores__section-title {
    margin-bottom: 4vw;
  }
}
.p-stores__store-list, .p-stores__other-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .p-stores__store-list, .p-stores__other-list {
    gap: 5.3333333333vw;
  }
}
.p-stores__store-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-stores__description {
  text-align: center;
  margin-top: 52px;
  line-height: 1.4;
  font-weight: 500;
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-stores__description {
    font-size: clamp(0.8125rem, 0.085rem + 3.64vw, 0.9375rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-stores__description {
    margin-top: 7vw;
  }
}
.p-stores__connect-box {
  border: 1px solid #7f89a3;
  padding: 47px 24px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .p-stores__connect-box {
    padding: 6.2666666667vw 3.2vw;
    margin-top: 9vw;
  }
}
.p-stores__connect-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  font-size: clamp(0.75rem, 0.354rem + 1.69vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-stores__connect-list {
    font-size: clamp(0.8125rem, 0.085rem + 3.64vw, 0.9375rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-stores__connect-list {
    gap: 24px;
  }
}
.p-stores__connect-group {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .p-stores__connect-group {
    grid-template-columns: 1fr;
  }
}
.p-stores__connect-stores {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media only screen and (max-width: 768px) {
  .p-stores__connect-stores {
    gap: 1.2vw;
  }
}
.p-stores__connect-store {
  position: relative;
  line-height: 1.5;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.p-stores__button,
.p-stores .c-button--stores-full {
  width: 100% !important;
  max-width: 100%;
}
.p-stores .c-button__logo--height-dospara {
  height: 52px;
}
@media only screen and (max-width: 768px) {
  .p-stores .c-button__logo--height-dospara {
    height: 6.9333333333vw;
  }
}
.p-stores .c-button__logo--height-edion {
  height: 61px;
}
@media only screen and (max-width: 768px) {
  .p-stores .c-button__logo--height-edion {
    height: 8.1333333333vw;
  }
}
.p-stores .c-button__logo--height-biccamera {
  height: 42px;
}
@media only screen and (max-width: 768px) {
  .p-stores .c-button__logo--height-biccamera {
    height: 5.6vw;
  }
}
.p-stores .c-button__logo--height-yodobashi {
  height: 65px;
}
@media only screen and (max-width: 768px) {
  .p-stores .c-button__logo--height-yodobashi {
    height: 8.6666666667vw;
  }
}

.p-contact {
  background-color: #fff;
  color: var(--color-stratos);
  padding: 120px 0 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-contact {
    padding: 25vw 0 17.666667vw;
  }
}
.p-contact__inner {
  max-width: 650px;
  margin: 0 auto;
  padding-inline: 40px;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .p-contact__inner {
    padding: 0 6.6666666667vw;
  }
}
.p-contact__title {
  margin-bottom: 93px;
}
@media only screen and (max-width: 768px) {
  .p-contact__title {
    margin-bottom: 8.5333333333vw;
  }
}
.p-contact__message {
  text-align: center;
  margin-bottom: 37px;
}
.p-contact__message:nth-of-type(n+2) {
  border-top: 1px solid #7f89a3;
  padding-top: 36px;
}
@media only screen and (max-width: 768px) {
  .p-contact__message {
    margin-bottom: 4.6666666667vw;
  }
}
.p-contact__message-line {
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-contact__message-line {
    font-size: clamp(0.8125rem, 0.085rem + 3.64vw, 0.9375rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-contact__message-line {
    line-height: 1.6;
  }
}
.p-contact__company {
  padding: 2px 8px;
  font-weight: 600;
}
.p-contact__description {
  text-align: center;
  margin-bottom: 48px;
}
.p-contact__description:nth-of-type(n+2) {
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .p-contact__description {
    margin-bottom: 8vw;
  }
}
.p-contact__description-text {
  line-height: 1.9;
  font-size: clamp(1rem, 0.824rem + 0.75vw, 1.5rem);
}
.p-contact__description-text:nth-of-type(n+2) {
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .p-contact__description-text {
    font-size: clamp(0.8125rem, 0.085rem + 3.64vw, 0.9375rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-contact__description-text {
    line-height: 1.65;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact__description-text br {
    display: none;
  }
}
.p-contact__info-box {
  border: 1px solid #7f89a3;
  padding: 46px 38px;
}
@media only screen and (max-width: 768px) {
  .p-contact__info-box {
    padding: 24px 20px;
  }
}
.p-contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media only screen and (max-width: 768px) {
  .p-contact__info-list {
    gap: 3px;
  }
}
.p-contact__info-item {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .p-contact__info-item {
    gap: 4px;
  }
}
.p-contact__info-label {
  flex-shrink: 0;
  font-weight: 600;
  margin-right: 7px;
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-contact__info-label {
    font-size: clamp(0.5rem, -2.409rem + 14.55vw, 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-contact__info-label {
    margin-bottom: 4px;
    margin-right: 0;
  }
}
.p-contact__info-value {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-contact__info-value {
    font-size: clamp(0.5rem, -2.409rem + 14.55vw, 1rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-contact__info-value {
    letter-spacing: 0;
  }
}
.p-contact__email {
  -moz-user-select: text;
       user-select: text;
  -webkit-user-select: text;
  min-height: 1.2em;
  display: inline-block;
}
.p-contact__website {
  -moz-user-select: text;
       user-select: text;
  -webkit-user-select: text;
}

.p-influencer {
  background-color: #fff;
  color: var(--color-midnight-blue);
  min-height: 100vh;
  padding: 0 0 120px;
}
@media only screen and (max-width: 768px) {
  .p-influencer {
    padding: 0 0 25vw;
  }
}
.p-influencer__hero {
  position: relative;
  margin-bottom: 120px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-influencer__hero {
    margin-bottom: 7.666667vw;
  }
}
.p-influencer__hero-inner {
  padding: 160px 0 106px;
  background: transparent url("../img/influencer/kv_influencer.webp") no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-influencer__hero-inner {
    padding: 19.666667vw 0 15.333333vw;
    background: transparent url("../img/kv_influencer@sp.webp") no-repeat center center;
    background-size: cover;
  }
}
.p-influencer__title-section {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 67px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__title-section {
    margin-bottom: 9.5vw;
  }
}
.p-influencer__title {
  margin: 0 0 42px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__title {
    margin: 0 0 9.2vw;
  }
}
.p-influencer__title img {
  width: auto;
  height: 89px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-influencer__title img {
    height: 9.133333vw;
  }
}
.p-influencer__subtitle {
  line-height: 1.7;
  letter-spacing: 0.015em;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.25rem, 1.074rem + 0.75vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-influencer__subtitle {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
.p-influencer__img-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5625vw;
  max-width: 1625px;
  margin: 0 auto;
  padding-inline: clamp(50px, 2.0833vw, 150px);
  box-sizing: content-box;
  position: relative;
  z-index: 1;
  min-height: clamp(150px, 27.08vw, 520px);
}
@media (min-width: 1920px) {
  .p-influencer__img-grid {
    gap: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .p-influencer__img-grid {
    grid-template-columns: repeat(9, 1fr);
    gap: 2vw;
    min-height: clamp(250px, 35vw, 400px);
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__img-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.333333vw;
    min-height: 26.6666666667vw;
    padding-inline: 5.3333333333vw;
  }
}
.p-influencer__img-block {
  aspect-ratio: 1;
  opacity: 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.02);
}
.p-influencer__img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-influencer__view-all {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__view-all {
    margin: 0 5.3333333333vw 5.3333333333vw;
  }
}
.p-influencer__view-button {
  width: clamp(280px, 35cqw, 650px);
  font-size: clamp(1.375rem, 1.199rem + 0.75vw, 1.875rem);
}
@media only screen and (max-width: 768px) {
  .p-influencer__view-button {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__view-button {
    width: 100%;
    height: 9vw;
  }
}
.p-influencer__view-number {
  margin-left: 8px;
}
.p-influencer__tabs {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__tabs {
    margin-bottom: 6.5vw;
  }
}
.p-influencer__tabs-title {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.074rem + 0.75vw, 1.75rem);
}
@media only screen and (max-width: 768px) {
  .p-influencer__tabs-title {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__tabs-title {
    margin-bottom: 4.5vw;
  }
}
.p-influencer__tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25vw;
  max-width: 1016px;
  margin: 0 auto;
  padding-inline: 2vw;
  box-sizing: content-box;
}
@media (min-width: 1920px) {
  .p-influencer__tabs-list {
    gap: 19px;
    padding-inline: 38px;
  }
}
@media (max-width: 1016px) {
  .p-influencer__tabs-list {
    max-width: none;
    padding-inline: 3vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .p-influencer__tabs-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8vw;
    padding-inline: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__tabs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6vw;
    padding-inline: 5.3333333333vw;
  }
}
.p-influencer__tab {
  padding: 10px 24px;
  background: transparent;
  text-align: center;
  border: 1px solid #808fb0;
  border-radius: 25px;
  cursor: pointer;
  font-size: clamp(0.625rem, 0.493rem + 0.56vw, 1rem);
}
@media only screen and (max-width: 768px) {
  .p-influencer__tab {
    font-size: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  }
}
@media (any-hover: hover) {
  .p-influencer__tab:hover {
    color: #fff;
    background-color: var(--color-stratos);
  }
}
.p-influencer__tab.is-active {
  color: #fff;
  background-color: var(--color-stratos);
}
@media only screen and (max-width: 768px) {
  .p-influencer__tab {
    padding: 1.0666666667vw 2.1333333333vw;
  }
}
.p-influencer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.823vw;
  max-width: 1016px;
  margin: 0 auto;
  padding-inline: 2.5vw;
  box-sizing: content-box;
}
@media (min-width: 1920px) {
  .p-influencer__grid {
    gap: 35px;
    padding-inline: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .p-influencer__grid {
    gap: 2.5vw;
    padding-inline: 4vw;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.6666666667vw;
    padding-inline: 5.3333333333vw;
    margin-bottom: 60px;
  }
}
.p-influencer__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  margin-bottom: clamp(10px, 1.5vw, 20px);
}
@media only screen and (max-width: 768px) {
  .p-influencer__card {
    margin-bottom: 6vw;
  }
}
.p-influencer__card-title {
  text-align: center;
  margin-bottom: 7px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-title {
    margin-bottom: 0.5vw;
    line-height: 1;
  }
}
.p-influencer__card-text {
  font-size: clamp(0.625rem, 0.559rem + 0.28vw, 0.8125rem);
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-text {
    font-size: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-text {
    line-height: 1.2;
  }
}
.p-influencer__card-name {
  display: block;
  font-weight: 600;
}
.p-influencer__card-handle {
  font-weight: 500;
}
.p-influencer__card-figure {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(4px, 1.4vw, 13px);
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-figure {
    margin-bottom: 1.5vw;
  }
}
.p-influencer__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10% 10% 0;
  box-sizing: border-box;
  display: block;
  border-radius: 4px;
}
@media (max-width: 1440px) {
  .p-influencer__card-img {
    padding: 8% 8% 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .p-influencer__card-img {
    padding: 7% 7% 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-img {
    padding: 4.1333333333vw 4.1333333333vw 0;
  }
}
.p-influencer__card-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(12px, 1vw, 20px);
}
@media only screen and (max-width: 768px) {
  .p-influencer__card-socials {
    gap: 4vw;
    margin-bottom: 3vw;
  }
}
.p-influencer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 768px) {
  .p-influencer__social-link {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
@media (any-hover: hover) {
  .p-influencer__social-link:hover {
    transform: scale(1.1);
  }
}
.p-influencer__social-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .p-influencer__social-icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.p-influencer__social-icon-x {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20100%20100'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.8.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%202)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpolygon%20class='st0'%20points='50.6%2046.2%2038.7%2029.2%2032.4%2029.2%2047.1%2050.2%2048.9%2052.9%2048.9%2052.9%2061.5%2070.9%2067.8%2070.9%2052.4%2048.8%2050.6%2046.2'/%3e%3cpath%20class='st0'%20d='M50.1,0C22.5,0,.1,22.4.1,50s22.4,50,50,50,50-22.4,50-50S77.7,0,50.1,0ZM59.6,73.8l-12.7-18.5-15.9,18.5h-4.1l18.2-21.2-18.2-26.5h13.9l12.1,17.6,15.1-17.6h4.1l-17.4,20.2h0l18.9,27.5s-14,0-14,0Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
.p-influencer__social-icon-youtube {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20100%20100'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.8.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%202)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23001447;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50,50-22.4,50-50S77.6,0,50,0ZM78.4,64.3c-.7,2.6-2.7,4.6-5.2,5.2-4.6,1.3-23.1,1.3-23.1,1.3,0,0-18.5,0-23.1-1.3-2.6-.7-4.6-2.7-5.2-5.2-1.3-4.6-1.3-14.3-1.3-14.3,0,0,0-9.6,1.2-14.2.7-2.6,2.7-4.6,5.2-5.2,4.6-1.3,23.1-1.3,23.1-1.3,0,0,18.5,0,23.1,1.3,2.6.7,4.6,2.7,5.2,5.2,1.3,4.6,1.3,14.3,1.3,14.3,0,0,0,9.7-1.3,14.3h0Z'/%3e%3cpolygon%20class='st0'%20points='44.1%2058.9%2059.4%2050%2044.1%2041.1%2044.1%2058.9'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}
.p-influencer__social-icon-twitch {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_1'%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20100%20100'%3e%3c!--%20Generator:%20Adobe%20Illustrator%2029.8.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%202.1.1%20Build%202)%20--%3e%3cdefs%3e%3cstyle%3e%20.st0%20{%20fill:%20%23011e60;%20}%20%3c/style%3e%3c/defs%3e%3cpath%20class='st0'%20d='M50.1,0C22.5,0,.1,22.4.1,50s22.4,50,50,50,50-22.4,50-50S77.7,0,50.1,0ZM76.3,58.9l-14.3,14.3h-10.6l-6.9,7.1h-7.4v-7.1h-13.1v-38.4l3.7-9.4h48.7v33.5h0Z'/%3e%3cpath%20class='st0'%20d='M43.1,71.7l7.1-7.1h13.1l8.1-8.1v-26.3h-39.3v34.4h11s0,7.1,0,7.1ZM58.3,39.7h5.1v14.3h-5.1v-14.3ZM45.3,39.7h4.9v14.3h-4.9v-14.3Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .p-influencer__card.is-detonator .p-influencer__social-link[aria-label=Twitch] {
    display: none;
  }
}
.u-mt-xs {
  margin-top: var(--space-xs);
}

.u-mt-sm {
  margin-top: var(--space-sm);
}

.u-mt-md {
  margin-top: var(--space-md);
}

.u-mt-lg {
  margin-top: var(--space-lg);
}

.u-mt-xl {
  margin-top: var(--space-xl);
}

.u-mb-xs {
  margin-bottom: var(--space-xs);
}

.u-mb-sm {
  margin-bottom: var(--space-sm);
}

.u-mb-md {
  margin-bottom: var(--space-md);
}

.u-mb-lg {
  margin-bottom: var(--space-lg);
}

.u-mb-xl {
  margin-bottom: var(--space-xl);
}

.u-pt-xs {
  padding-top: var(--space-xs);
}

.u-pt-sm {
  padding-top: var(--space-sm);
}

.u-pt-md {
  padding-top: var(--space-md);
}

.u-pt-lg {
  padding-top: var(--space-lg);
}

.u-pt-xl {
  padding-top: var(--space-xl);
}

.u-pb-xs {
  padding-bottom: var(--space-xs);
}

.u-pb-sm {
  padding-bottom: var(--space-sm);
}

.u-pb-md {
  padding-bottom: var(--space-md);
}

.u-pb-lg {
  padding-bottom: var(--space-lg);
}

.u-pb-xl {
  padding-bottom: var(--space-xl);
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* バナー */
.common-banner {
    width: 300px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.banner-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-close span {
    position: absolute;
    top: 59%;
    left: 50%;
    z-index: +1;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .common-banner {
    width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .common-banner {
    width: 120px;
    right: 10px;
    bottom: 10px;
  }
  .banner-close {
    width: 20px;
    height: 20px;
    font-size: 15px;
  }
  .banner-close span {
    top: 57%;
  }
}