@charset "UTF-8";
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* z-index */
  --z-index-header: 900;
  --layer-loader: 100;
  --layer-hamburger: 90;
  --layer-header: 80;
  --layer-menu: 70;
  --layer-cvBtn: 60;
  /* color */
  --color-main: #29193d;
  --color-accent: #e52967;
  --color-campaign: #e52967;
  --color-discord: #5865f2;
  --color-key: #4f1edc;
  --color-cream: #fffcf2;
  --color-text: #0b0a26;
  --color-black: #000;
  --color-white: #fff;
  --color-bg: #f2f2fc;
  --color-bg-main: #c6e5f8;
  /* font-family */
  --ff-base: "Noto Serif JP", serif;
  --ff-gothic: "Noto Sans JP", sans-serif;
  --ff-serif: "Noto Serif JP", serif;
  /* font-size */
  --fz-base: 16px;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  --hover-opacity: 0.7;
  /* header height */
  --header-height: 60px;
  /* inner */
  --inner-width-no-unit: 1200;
  --inner-width: min(1200px, 100%);
  --inner-width-sp: min(500px, 100%);
  --padding-inner: 25px;
}
@media screen and (width >= 768px) {
  :root {
    --fz-base: 2rem;
  }
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}
@media screen and (width >= 768px) {
  :root {
    --padding-inner: 30px;
  }
}

html {
  min-height: 100vh;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / var(--inner-width-no-unit) * 100vw);
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: var(--hover-opacity);
  }
}
img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: auto;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--ff-base);
  font-size: var(--fz-base);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

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

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

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

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-contact {
  margin-top: var(--header-height);
}

.l-cv-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: var(--layer-cvBtn);
}
@media screen and (min-width: 768px) {
  .l-cv-button {
    right: 94px;
    bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .l-hamburger {
    position: fixed;
    top: 22.5px;
    right: 16px;
    z-index: var(--layer-hamburger);
  }
}
@media screen and (min-width: 768px) {
  .l-hamburger {
    display: none;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--layer-header);
  width: 100%;
  height: var(--header-height);
}

@media screen and (max-width: 767px) {
  .l-header__nav-area {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: var(--layer-menu);
    width: clamp(180px, 50vw, 300px);
    height: 100vh;
    padding-top: 80px;
    visibility: hidden;
    background-color: var(--color-cream);
  }
}

.l-header__nav-area.is-active {
  right: 0;
  visibility: visible;
}

.l-inner {
  max-width: calc(var(--inner-width-sp) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner-width) + var(--padding-inner) * 2);
  }
}

.l-loading {
  position: fixed;
  inset: 0;
  z-index: var(--layer-loader);
}

.l-loading__cont {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.c-anime {
  opacity: 0;
}

.c-anime-fadeIn.js-anime-active {
  animation: fade-in 0.4s forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-anime-fadeInUp.js-anime-active {
  animation: fade-in-up 0.4s forwards;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-anime-fadeInDown.js-anime-active {
  animation: fade-in-down 0.4s forwards;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-anime-fadeInLeft.js-anime-active {
  animation: fade-in-left 0.4s forwards;
}
@media screen and (max-width: 767px) {
  .c-anime-fadeInLeft.js-anime-active {
    animation: fade-in-up 0.4s forwards;
  }
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transform: translateX(-25px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-anime-fadeInRight.js-anime-active {
  animation: fade-in-right 0.4s forwards;
}
@media screen and (max-width: 767px) {
  .c-anime-fadeInRight.js-anime-active {
    animation: fade-in-up 0.4s forwards;
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transform: translateX(25px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 60px;
  padding: 8px 27px 8px 17px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-button {
    font-size: 16px;
  }
}
.c-button::after {
  position: absolute;
  top: 42%;
  right: 8px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transition: right 0.2s;
  transform: rotate(-45deg) translate(-50%, -50%);
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 1;
  }
  .c-button:hover::after {
    right: 4px;
  }
}

.c-button--01 {
  background-color: var(--color-main);
}

.c-button--02 {
  background-color: var(--color-main);
}

.c-button--03 {
  background-color: var(--color-discord);
}

.c-campaign-button {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-campaign-button {
    width: 261px;
  }
}
@media screen and (min-width: 768px) {
  .c-campaign-button {
    width: min(41vw, 591px);
  }
}
.c-campaign-button a {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .c-campaign-button a:hover {
    opacity: 0.8;
  }
}
.c-campaign-button a img {
  width: 100%;
}

.c-title {
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 12.8rem;
  }
}

.c-visual-wrapper {
  position: relative;
  overflow: hidden;
}
.c-visual-wrapper::before {
  display: block;
  padding-top: 56%;
  content: "";
}
.c-visual-wrapper > iframe,
.c-visual-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-visual-wrapper > img {
  object-fit: cover;
}

.p-info {
  position: relative;
  color: #f2f2fc;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-info {
    padding-block: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-block: 10rem;
  }
}
.p-info .l-inner {
  position: relative;
  z-index: 2;
}

.p-info__title {
  color: #f2f2fc;
}

.p-info__panel {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-info__panel {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-info__panel {
    margin-top: 7rem;
  }
}
.p-info__panel img {
  width: 100%;
}

.p-info__content {
  display: grid;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-info__content {
    gap: 80px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-info__content {
    gap: 9.2rem;
    margin-top: 8rem;
  }
}

.p-info__block-title {
  display: flex;
  padding-left: 3px;
  font-weight: var(--fw-semibold);
  color: #f2f2fc;
  text-shadow: 0 0 16px rgba(255, 252, 232, 0.6);
}
@media screen and (max-width: 767px) {
  .p-info__block-title {
    gap: 8px;
    font-size: 24px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .p-info__block-title {
    gap: 12px;
    font-size: 3.6rem;
  }
}
.p-info__block-title::before {
  display: block;
  flex-shrink: 0;
  content: "";
  background-color: var(--color-white);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-info__block-title::before {
    width: 15px;
    height: 15px;
    margin-top: calc((1lh - 15px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .p-info__block-title::before {
    width: 2rem;
    height: 2rem;
    margin-top: calc((1lh - 2rem) / 2);
  }
}

@media screen and (max-width: 767px) {
  .p-info__block-body {
    margin-top: 12px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-info__block-body {
    margin-top: 4rem;
  }
}
.p-info__block-body .rewards-list {
  display: grid;
  gap: 40px;
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-info__block-body .rewards-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.6rem 20px;
  }
}
.p-info__block-body .rewards-list li {
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2fc;
}
@media screen and (min-width: 768px) {
  .p-info__block-body .rewards-list li {
    font-size: max(2rem, 16px);
  }
}
.p-info__block-body .rewards-list li > ul {
  padding-left: 1.5em;
  margin-top: 12px;
  list-style-type: disc;
}
@media screen and (min-width: 768px) {
  .p-info__block-body p {
    font-size: 2.8rem;
    text-shadow: 0 0 16px rgba(255, 252, 232, 0.6);
  }
}
.p-info__block-body table {
  width: 100%;
  line-height: 1.4;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--color-accent);
}
@media screen and (max-width: 767px) {
  .p-info__block-body table {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-info__block-body table {
    font-size: 2.8rem;
  }
}
.p-info__block-body table th,
.p-info__block-body table td {
  vertical-align: middle;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-info__block-body table th,
  .p-info__block-body table td {
    padding: 12px 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-info__block-body table th,
  .p-info__block-body table td {
    padding: 1.6rem 2rem;
  }
}
.p-info__block-body table th {
  font-weight: var(--fw-semibold);
  text-align: left;
}
.p-info__block-body table td ul {
  padding-left: 1em;
}
.p-info__block-body table td ul li {
  list-style: disc;
}
.p-info__block-body table td ul li::marker {
  font-size: 0.6em;
}

.p-info__dates {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  align-items: center;
}
.p-info__dates .triangle-right {
  display: inline-block;
  width: 0.4em;
  height: 0.5em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--color-white);
}

.p-rule {
  position: relative;
  padding-block: 6rem 7.4rem;
  background-color: #e9e5e1;
}
@media screen and (min-width: 768px) {
  .p-rule {
    padding-block: 10rem;
  }
}

.p-rule__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-rule__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__list {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-rule__item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .p-rule__item + .p-rule__item {
    border-top: 1px solid var(--color-text);
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item + .p-rule__item {
    border-left: 1px solid var(--color-text);
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item:nth-child(2) {
    animation-delay: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item:nth-child(3) {
    animation-delay: 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item:nth-child(4) {
    animation-delay: 0.6s;
  }
}

.p-rule__item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-rule__item-inner {
    padding-block: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item-inner {
    padding: 16px;
  }
}

.p-rule__item-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: var(--semibold);
  color: var(--color-white);
  text-transform: uppercase;
  background-color: var(--color-main);
  transform: skewX(-22deg);
}
@media screen and (max-width: 767px) {
  .p-rule__item-index {
    padding: 0 12px;
    font-size: 16px;
    line-height: 27px;
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item-index {
    padding: 0.5rem 6rem;
    font-size: max(2.4rem, 18px);
    line-height: 1.55;
  }
}
.p-rule__item-index > span {
  display: inline-block;
  transform: skewX(22deg);
}

.p-rule__item-text {
  margin-bottom: auto;
  font-weight: var(--semibold);
}
@media screen and (max-width: 767px) {
  .p-rule__item-text {
    margin-top: 20px;
    font-weight: var(--bold);
  }
}
@media screen and (min-width: 768px) {
  .p-rule__item-text {
    margin-top: 28px;
  }
}

.p-rule__download {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .p-rule__download-item:first-child {
    width: 143.5294117647%;
  }
  .p-rule__download-item:last-child {
    width: 178.102189781%;
  }
}
.p-rule__download-item a {
  display: block;
}
.p-rule__download-item a img {
  width: 100%;
}

.p-rule__item-button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-rule__item-button {
    padding-inline: 32px;
  }
}

@media screen and (min-width: 768px) {
  .p-rule__button {
    margin-top: 80px;
  }
}
.p-rule__button .c-campaign-button {
  margin-inline: auto;
}

.p-cv-button {
  display: none;
  width: 100px;
  height: 100px;
  background-color: var(--color-discord);
  border-radius: 25em;
}
@media screen and (min-width: 768px) {
  .p-cv-button {
    width: 130px;
    height: 130px;
  }
}

.p-cv-button__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-cv-button__link {
    padding: 14px 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-cv-button__link:hover {
    opacity: var(--hover-opacity);
  }
}

.p-cv-button__text {
  position: relative;
  display: inline-block;
  margin-top: 54px;
  font-family: var(--ff-gothic);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-cv-button__text {
    margin-top: 39px;
  }
}
.p-cv-button__text::before {
  position: absolute;
  left: 50%;
  content: "";
  background-image: url("../images/common_icon-discord.BYKc_Zvl.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-cv-button__text::before {
    top: -15px;
    width: 29px;
    height: 23px;
  }
}
@media screen and (min-width: 768px) {
  .p-cv-button__text::before {
    top: -24px;
    width: 46px;
    height: 36px;
  }
}

.p-flow {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #e9e5e1;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.p-flow__text {
  position: relative;
  font-size: 20px;
  font-weight: var(--fw-bold);
  text-align: center;
  text-shadow: 0 0 16px #fff;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 3.2rem;
  }
}
.p-flow__text span {
  display: inline-block;
}

.p-flow__list {
  position: relative;
  display: grid;
  gap: 32px;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    transform: translateX(min(3.2vw, 16px));
  }
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    gap: 3rem;
    margin-top: 10rem;
  }
}
.p-flow__list li div {
  position: relative;
  display: flex;
  align-items: center;
  width: min(86.66vw, 390px);
  aspect-ratio: 325/118;
  background: url("../images/flow_box_sm.xhDyXQcw.webp") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow__list li div {
    width: 64.1rem;
    aspect-ratio: 666/199;
    background-image: url("../images/flow_box_lg.DHRSaQUz.webp");
  }
}
.p-flow__list li div::before {
  position: absolute;
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-flow__list li div::before {
    top: -25px;
    left: -12px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__list li div::before {
    top: -6rem;
    left: -3rem;
    width: 12rem;
    height: 12rem;
  }
}
.p-flow__list li div p {
  width: 84%;
  margin-inline-start: 10%;
  font-size: clamp(13px, 3.4vw, 14px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 8px #ff5900;
}
@media screen and (min-width: 768px) {
  .p-flow__list li div p {
    margin-inline-start: 10%;
    font-size: 2.4rem;
  }
}
.p-flow__list li:first-child div::before {
  background: url("../images/flow_icon01._VLE0k_c.webp") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow__list li:nth-child(2) div {
    transform: translateX(25%);
  }
}
.p-flow__list li:nth-child(2) div::before {
  background: url("../images/flow_icon02.D-OxNfke.webp") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow__list li:nth-child(3) div {
    transform: translateX(55%);
  }
}
.p-flow__list li:nth-child(3) div::before {
  background: url("../images/flow_icon03.VmgwoQq-.webp") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-flow__list li:nth-child(4) div {
    transform: translateX(80%);
  }
}
.p-flow__list li:nth-child(4) div::before {
  background: url("../images/flow_icon04.t-5MbEZp.webp") no-repeat center center/contain;
}

.p-flow__char {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-flow__char {
    margin-block-start: 14rem;
  }
}
.p-flow__char > h3 {
  width: fit-content;
  margin-inline: auto;
}
.p-flow__char > h3 span {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-flow__char > h3 span {
    font-size: 32px;
  }
}
.p-flow__char > h3 span::before, .p-flow__char > h3 span::after {
  position: absolute;
  top: 0;
  width: 16px;
  height: 100%;
  content: "";
  background-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-flow__char > h3 span::before, .p-flow__char > h3 span::after {
    width: 32px;
  }
}
.p-flow__char > h3 span::before {
  left: -16px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-flow__char > h3 span::before {
    left: -31.5px;
  }
}
.p-flow__char > h3 span::after {
  right: -16px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media screen and (min-width: 768px) {
  .p-flow__char > h3 span::after {
    right: -31.5px;
  }
}

.p-flow__charSwitch {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-flow__charSwitch {
    gap: 12px;
    margin-top: 6rem;
  }
}
.p-flow__charSwitch button {
  display: block;
  width: 12.3rem;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent);
  text-align: center;
  cursor: pointer;
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  transition: opacity 0.3s;
  transform: skew(-10deg);
}
@media screen and (min-width: 768px) {
  .p-flow__charSwitch button {
    width: 200px;
    padding: 10px;
    font-size: 24px;
  }
}
.p-flow__charSwitch button.is-active {
  color: var(--color-white);
  pointer-events: none;
  background-color: var(--color-accent);
}
@media (hover: hover) and (pointer: fine) {
  .p-flow__charSwitch button:hover {
    opacity: var(--hover-opacity);
  }
}
.p-flow__charSwitch button > span {
  display: block;
  transform: skew(10deg);
}

.p-flow__charTab {
  position: relative;
  margin-top: 2rem;
}

.p-flow__charTeam {
  display: none;
}
.p-flow__charTeam.is-active {
  display: block;
}
.p-flow__charTeam > div {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(7px);
}
.p-flow__charTeam > div.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam .team-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    max-width: 998px;
    margin-inline: auto;
    margin-top: 4rem;
  }
}
.p-flow__charTeam .char-images {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam .char-images {
    width: 54.1%;
    margin-left: auto;
  }
}
.p-flow__charTeam .char-image {
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.p-flow__charTeam .char-image:first-child {
  position: relative;
}
.p-flow__charTeam .char-image:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.p-flow__charTeam .char-image.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.p-flow__charTeam .char-switches {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam .char-switches {
    flex-shrink: 0;
  }
}
.p-flow__charTeam .char-switch {
  display: block;
  width: 8rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-flow__charTeam .char-switch:hover {
    opacity: 0.3;
  }
}
.p-flow__charTeam .char-switch.is-active {
  pointer-events: none;
  opacity: 1;
}
.p-flow__charTeam .char-switch img {
  width: 100%;
}
.p-flow__charTeam .team-button {
  margin-top: 2.8rem;
  text-align: center;
}
.p-flow__charTeam .team-button a {
  display: inline-block;
  padding: 0.8rem 4.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-accent);
  box-shadow: 4px 4px 0 #fff;
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam .team-button a {
    padding: 12px 13.2rem;
    font-size: 3.6rem;
    box-shadow: 6px 6px 0 #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=white] .char-switches {
    width: 41.68%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=white] .char-switch {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=white] .char-switch:first-child {
    margin-right: -5%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=white] .char-switch:last-child {
    margin-left: -5%;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=black] .char-switches {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=black] .char-switch {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=black] .char-switch:first-child, .p-flow__charTeam[data-team=black] .char-switch:nth-child(2) {
    margin-right: -5%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__charTeam[data-team=black] .char-switch:last-child {
    margin-left: -5%;
  }
}

.p-footer {
  padding-block: 20px 95px;
  background-color: #e9e5e1;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block-end: 12.5rem;
  }
}

.p-footer__copy {
  font-family: var(--ff-gothic);
  font-size: 14px;
  text-align: center;
}

.p-hamburger {
  width: 24px;
  height: 16px;
}

.p-hamburger.is-active .p-hamburger__line {
  background-color: transparent;
}
.p-hamburger.is-active .p-hamburger__line::before {
  top: 0;
  background-color: var(--color-text);
  transform: rotate(45deg);
}
.p-hamburger.is-active .p-hamburger__line::after {
  top: 0;
  background-color: var(--color-text);
  transform: rotate(-45deg);
}

.p-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: 0.2s;
  transform: translate(-50%, -50%);
}
.p-hamburger__line::before, .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-text);
  transition: inherit;
}
.p-hamburger__line::before {
  top: -8px;
}
.p-hamburger__line::after {
  top: 8px;
}

.p-header {
  background: var(--color-cream);
}

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 6px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__inner {
    padding-left: 40px;
  }
}

.p-header__logo {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 110px;
  }
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 187px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    height: auto;
    vertical-align: baseline;
  }
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    vertical-align: bottom;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-area {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    height: 100%;
  }
}

.p-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    height: 100%;
    padding: 0 24px 48px;
  }
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    gap: 32px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__menu-item {
    text-align: center;
  }
}

.p-header__menu-link {
  font-family: var(--ff-gothic);
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-header__menu-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-header__menu-link {
    font-size: max(1.6rem, 15px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-header__menu-link:hover {
    opacity: var(--hover-opacity);
  }
}

.p-header__menu-discord {
  display: block;
  width: 48px;
  height: 48px;
  font-size: 1px;
  text-indent: 100%;
  background-color: var(--color-discord);
  background-image: url("../images/common_icon-discord.BYKc_Zvl.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
  border-radius: 25em;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: var(--layer-loader);
}

.p-loading__cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #e9e5e1;
  transition: opacity 0.6s;
}

.p-loading__cont.is-hidden {
  opacity: 0;
}

.p-loading__logo {
  width: 100%;
  margin-right: auto;
  margin-bottom: 2em;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-loading__logo {
    max-width: 270px;
  }
}
@media screen and (min-width: 768px) {
  .p-loading__logo {
    max-width: 300px;
  }
}

.p-loader {
  width: fit-content;
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  background: radial-gradient(circle closest-side, #ff2f2f 94%, rgba(0, 0, 0, 0)) right/calc(200% - 1em) 100%;
  animation: l24 1.5s infinite alternate linear;
}
.p-loader::before {
  line-height: 1em;
  color: rgba(0, 0, 0, 0);
  content: "Loading...";
  background: inherit;
  background-image: radial-gradient(circle closest-side, #ffd6c9 94%, #ff2f2f);
  background-clip: text;
}

@keyframes l24 {
  100% {
    background-position: left;
  }
}
.p-mv {
  position: relative;
  z-index: 2;
  margin-top: var(--header-height);
  overflow-x: clip;
}

.p-mv__visual img {
  width: 100%;
  height: auto;
}

.p-mv__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-mv__inner {
  position: relative;
  padding: 40px 10px 0;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 0.4s;
  transition-property: opacity, transform;
  transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding: 0 2.7%;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv__inner {
    max-width: 1420px;
    padding: 0 0 0 40px;
    margin-inline: auto;
  }
}

.p-mv__inner.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .p-mv__copy {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-right: 8px;
  }
}

.p-mv__part {
  flex-shrink: 0;
  width: 37.46%;
}
@media screen and (min-width: 768px) {
  .p-mv__part {
    width: 33rem;
    width: clamp(180px, 22.91vw, 330px);
  }
}
.p-mv__part img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-mv__title {
    width: clamp(240px, 33.95vw, 489px);
    margin-top: 2rem;
  }
}
.p-mv__title img {
  width: 100%;
}

.p-mv__mission {
  width: 100%;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-mv__mission {
    width: clamp(420px, 45.13vw, 650px);
    margin-top: 3.6rem;
  }
}
.p-mv__mission img {
  width: 100%;
}

.p-mv__date {
  width: 74%;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-mv__date {
    width: clamp(150px, 20.83vw, 300px);
    margin-top: 2.4rem;
  }
}
.p-mv__date img {
  width: 100%;
}

.p-story {
  position: relative;
  overflow-x: clip;
  color: var(--color-white);
  background-color: var(--color-main);
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-story {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-story {
    padding-top: 10rem;
    padding-bottom: 15.6rem;
  }
}

.p-story__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 151.73vw;
  aspect-ratio: 2185/625;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-story__bg {
    display: none;
  }
}

.p-story__inner {
  position: relative;
  z-index: 2;
  max-width: 995px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-story__title {
    text-align: left;
  }
}

.p-story__lead {
  margin-top: 40px;
  font-weight: var(--fw-semibold);
}
@media screen and (max-width: 767px) {
  .p-story__lead {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-story__lead {
    margin-top: 6rem;
  }
}
.p-story__lead span {
  display: block;
  width: fit-content;
  padding: 2px 12px;
  font-size: 16px;
  color: var(--color-main);
  letter-spacing: -0.06em;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-story__lead span {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-story__lead span {
    padding-inline: 1rem;
    font-size: 4.4rem;
    letter-spacing: -0.03em;
  }
}

.p-story__content {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-story__content {
    margin-top: 4rem;
  }
}

.p-story__texts {
  position: relative;
  padding: 1.6rem 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-story__texts {
    padding: 3.2rem 2.4rem;
  }
}
.p-story__texts p {
  font-size: 14px;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .p-story__texts p {
    font-size: 2.4rem;
  }
}
.p-story__texts p + p {
  margin-top: 1.7em;
}
@media screen and (min-width: 768px) {
  .p-story__texts p + p {
    margin-top: 1.8em;
  }
}

.p-story__button {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-story__button {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .p-story__button {
    margin-inline-start: -3rem;
  }
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

@media (width <= 767px) {
  [data-only-device=md],
  .u-hidden-sm {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm],
  .u-hidden-md {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}
