@charset "UTF-8";
/* あいこの未来クラブ */
@font-face {
  font-display: swap;
  font-family: "AiKonomiLikeLove";
  src: url("../../assets/fonnts/v2_AiKonomiLikeLove.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* ---------- ベースファイル | ここから ---------- */
html {
  font-size: 16px;
}
@media (max-width: 640px) {
  html {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* フォントカラーは、使用頻度が多いものを選択する */
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #ffffff;
  line-height: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
  /*
  - :where() は詳細度（CSSの強さ）が 0 になるので、上書きしやすくするため指定
  - :any-link は a と area のリンクをまとめて指せる
  - label[for] はクリックで入力にフォーカスするので pointer は分かりやすい
  */
}

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

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

:where(input, select, textarea) {
  font-size: 1rem; /* = 16px */
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここから ~~~~~  */
/* HTMLの階層構造で適宜クラス名は変更する */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ~~~~~ コンテンツ量が少なく短いページ（404、サンクスページなど）でもフッターを最下部に表示する ここまで ~~~~~ */
iframe {
  border: none;
}

img {
  image-rendering: auto;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ---------- ベースファイル | ここまで ---------- */
/* ---------- リセットCSS | ここから ---------- */
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: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- リセットCSS | ここまで ---------- */
.inner {
  width: 100%;
  max-width: 48.75rem;
  padding-inline: clamp(0.938rem, -1.875rem + 3.13vw, 1.875rem); /* 15 ~ 30 | 1440 ~ 1920 */
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .inner {
    max-width: 33.75rem;
    padding-inline: 0.625rem;
  }
}

.lower-inner {
  width: 100%;
  max-width: 48.75rem;
  padding-inline: clamp(1.875rem, -5.625rem + 8.33vw, 4.375rem); /* 30 ~ 70 | 1440 ~ 1920 */
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .lower-inner {
    max-width: 33.75rem;
    padding-inline: 1.25rem;
  }
}

.accordion::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .accordion::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}
.accordion[open]::details-content {
  grid-template-rows: 1fr;
}

summary {
  list-style: none;
}

/* ---------- 読み込み時のチラつき防止 | ここから ---------- */
.anime-trigger,
.js-typewriter,
.js-glitch-white {
  opacity: 0;
}

.js-text-reveal span {
  opacity: 0;
}

/* ---------- 読み込み時のチラつき防止 | ここまで ---------- */
.is-typewriter::after {
  content: "​";
  border-right: 0.125rem solid transparent;
  margin-left: 0.125rem;
}

.is-typewriter.is-typewriter--active::after {
  border-right-color: #ffffff;
}

.is-glitch-white {
  position: relative;
  animation: glitch-white 0.8s step-end forwards;
}

.is-glitch-white::before,
.is-glitch-white::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 1.25rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .is-glitch-white::before,
  .is-glitch-white::after {
    inset: 0.625rem;
    border-radius: 0.625rem;
  }
}

.is-glitch-white::before {
  background: rgba(255, 255, 255, 0.55);
  animation: glitch-white-light 0.8s step-end;
}

.is-glitch-white::after {
  background: rgba(200, 200, 200, 0.45);
  animation: glitch-white-dark 0.8s step-end;
}

@keyframes glitch-white {
  0% {
    opacity: 0;
    transform: translate(0, 0);
    text-shadow: none;
  }
  2% {
    opacity: 1;
    transform: translate(-0.125rem, 0.0625rem);
    text-shadow: 0.3125rem 0 rgb(255, 255, 255), -0.25rem 0 rgba(200, 200, 200, 0.9);
  }
  4% {
    transform: translate(0.125rem, -0.0625rem);
    text-shadow: -0.3125rem 0 rgb(255, 255, 255), 0.1875rem 0 rgba(220, 220, 220, 0.8);
  }
  6% {
    opacity: 0;
  }
  7% {
    opacity: 1;
    transform: translate(0.0625rem, 0);
    text-shadow: 0.25rem 0 rgb(255, 255, 255), -0.3125rem 0 rgba(200, 200, 200, 0.9);
  }
  9% {
    transform: translate(-0.125rem, 0.0625rem);
    text-shadow: -0.25rem 0 rgba(255, 255, 255, 0.9), 0.3125rem 0 rgba(220, 220, 220, 0.8);
  }
  11% {
    opacity: 0;
  }
  12% {
    opacity: 1;
    transform: translate(0.125rem, -0.0625rem);
    text-shadow: 0.3125rem 0 rgb(255, 255, 255), -0.1875rem 0 rgba(200, 200, 200, 0.9);
  }
  14% {
    transform: translate(-0.0625rem, 0);
    text-shadow: -0.3125rem 0 rgb(255, 255, 255);
  }
  15% {
    opacity: 0;
  }
  16% {
    opacity: 1;
    transform: translate(0.125rem, 0.0625rem);
    text-shadow: 0.25rem 0 rgb(255, 255, 255), -0.25rem 0 rgba(220, 220, 220, 0.9);
  }
  18% {
    transform: translate(-0.125rem, -0.0625rem);
    text-shadow: -0.3125rem 0 rgba(255, 255, 255, 0.9), 0.3125rem 0 rgba(200, 200, 200, 0.8);
  }
  20% {
    opacity: 0;
  }
  21% {
    opacity: 1;
    transform: translate(0.0625rem, 0);
    text-shadow: 0.3125rem 0 rgb(255, 255, 255), -0.25rem 0 rgba(220, 220, 220, 0.9);
  }
  23% {
    transform: translate(-0.125rem, 0.0625rem);
    text-shadow: -0.25rem 0 rgba(255, 255, 255, 0.9);
  }
  25% {
    opacity: 0;
  }
  26% {
    opacity: 1;
    transform: translate(0.125rem, -0.0625rem);
    text-shadow: 0.25rem 0 rgba(255, 255, 255, 0.9), -0.3125rem 0 rgba(200, 200, 200, 0.8);
  }
  28% {
    transform: translate(-0.0625rem, 0);
    text-shadow: -0.25rem 0 rgba(255, 255, 255, 0.9), 0.1875rem 0 rgba(220, 220, 220, 0.7);
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
    transform: translate(0.125rem, 0.0625rem);
    text-shadow: 0.25rem 0 rgba(255, 255, 255, 0.8), -0.1875rem 0 rgba(200, 200, 200, 0.7);
  }
  33% {
    transform: translate(-0.0625rem, -0.0625rem);
    text-shadow: -0.25rem 0 rgba(255, 255, 255, 0.8);
  }
  35% {
    opacity: 0;
  }
  36% {
    opacity: 1;
    transform: translate(0.0625rem, 0);
    text-shadow: 0.1875rem 0 rgba(255, 255, 255, 0.8), -0.1875rem 0 rgba(220, 220, 220, 0.6);
  }
  38% {
    transform: translate(-0.125rem, 0.0625rem);
    text-shadow: -0.1875rem 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    opacity: 0;
  }
  41% {
    opacity: 1;
    transform: translate(0.0625rem, -0.0625rem);
    text-shadow: 0.1875rem 0 rgba(255, 255, 255, 0.7), -0.125rem 0 rgba(200, 200, 200, 0.5);
  }
  44% {
    transform: translate(-0.0625rem, 0);
    text-shadow: -0.1875rem 0 rgba(255, 255, 255, 0.6);
  }
  46% {
    opacity: 0;
  }
  47% {
    opacity: 1;
    transform: translate(0.0625rem, 0.0625rem);
    text-shadow: 0.125rem 0 rgba(255, 255, 255, 0.6), -0.125rem 0 rgba(220, 220, 220, 0.4);
  }
  50% {
    transform: translate(-0.0625rem, 0);
    text-shadow: -0.125rem 0 rgba(255, 255, 255, 0.5);
  }
  52% {
    opacity: 0;
  }
  53% {
    opacity: 1;
    transform: translate(0.0625rem, -0.0625rem);
    text-shadow: 0.125rem 0 rgba(255, 255, 255, 0.4);
  }
  56% {
    transform: translate(0, 0);
    text-shadow: -0.0625rem 0 rgba(200, 200, 200, 0.3);
  }
  58% {
    opacity: 0;
  }
  59% {
    opacity: 1;
    transform: translate(0.0625rem, 0);
    text-shadow: 0.0625rem 0 rgba(255, 255, 255, 0.2);
  }
  62% {
    transform: translate(0, 0);
    text-shadow: none;
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    text-shadow: none;
    opacity: 1;
  }
}
@keyframes glitch-white-light {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  1% {
    clip-path: inset(0% 0 85% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  2% {
    clip-path: inset(0);
    opacity: 0;
  }
  3% {
    clip-path: inset(25% 0 65% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  4% {
    clip-path: inset(0);
    opacity: 0;
  }
  5% {
    clip-path: inset(55% 0 35% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  6% {
    clip-path: inset(0);
    opacity: 0;
  }
  7% {
    clip-path: inset(80% 0 10% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  8% {
    clip-path: inset(0);
    opacity: 0;
  }
  9% {
    clip-path: inset(10% 0 80% 0);
    opacity: 1;
    transform: translateX(-0.1875rem);
  }
  10% {
    clip-path: inset(40% 0 50% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  11% {
    clip-path: inset(0);
    opacity: 0;
  }
  12% {
    clip-path: inset(70% 0 20% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  13% {
    clip-path: inset(0);
    opacity: 0;
  }
  14% {
    clip-path: inset(5% 0 88% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  15% {
    clip-path: inset(30% 0 60% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  16% {
    clip-path: inset(0);
    opacity: 0;
  }
  17% {
    clip-path: inset(60% 0 30% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  18% {
    clip-path: inset(0);
    opacity: 0;
  }
  19% {
    clip-path: inset(85% 0 5% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  20% {
    clip-path: inset(15% 0 75% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  21% {
    clip-path: inset(0);
    opacity: 0;
  }
  22% {
    clip-path: inset(45% 0 45% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  23% {
    clip-path: inset(0);
    opacity: 0;
  }
  24% {
    clip-path: inset(75% 0 15% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  25% {
    clip-path: inset(0);
    opacity: 0;
  }
  26% {
    clip-path: inset(20% 0 70% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  27% {
    clip-path: inset(50% 0 40% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  28% {
    clip-path: inset(0);
    opacity: 0;
  }
  29% {
    clip-path: inset(90% 0 2% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  30% {
    clip-path: inset(0);
    opacity: 0;
  }
  32% {
    clip-path: inset(8% 0 82% 0);
    opacity: 0.9;
    transform: translateX(0.3125rem);
  }
  33% {
    clip-path: inset(0);
    opacity: 0;
  }
  34% {
    clip-path: inset(35% 0 55% 0);
    opacity: 0.9;
    transform: translateX(-0.25rem);
  }
  35% {
    clip-path: inset(65% 0 25% 0);
    opacity: 0.8;
    transform: translateX(0.25rem);
  }
  36% {
    clip-path: inset(0);
    opacity: 0;
  }
  38% {
    clip-path: inset(48% 0 42% 0);
    opacity: 0.8;
    transform: translateX(-0.3125rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  40% {
    clip-path: inset(82% 0 8% 0);
    opacity: 0.7;
    transform: translateX(0.25rem);
  }
  41% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(18% 0 72% 0);
    opacity: 0.7;
    transform: translateX(-0.25rem);
  }
  43% {
    clip-path: inset(0);
    opacity: 0;
  }
  45% {
    clip-path: inset(58% 0 32% 0);
    opacity: 0.6;
    transform: translateX(0.1875rem);
  }
  46% {
    clip-path: inset(0);
    opacity: 0;
  }
  48% {
    clip-path: inset(38% 0 52% 0);
    opacity: 0.5;
    transform: translateX(-0.1875rem);
  }
  49% {
    clip-path: inset(0);
    opacity: 0;
  }
  51% {
    clip-path: inset(72% 0 18% 0);
    opacity: 0.5;
    transform: translateX(0.1875rem);
  }
  52% {
    clip-path: inset(0);
    opacity: 0;
  }
  54% {
    clip-path: inset(12% 0 78% 0);
    opacity: 0.4;
    transform: translateX(-0.1875rem);
  }
  55% {
    clip-path: inset(0);
    opacity: 0;
  }
  57% {
    clip-path: inset(42% 0 48% 0);
    opacity: 0.3;
    transform: translateX(0.125rem);
  }
  58%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes glitch-white-dark {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  1% {
    clip-path: inset(88% 0 2% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  2% {
    clip-path: inset(0);
    opacity: 0;
  }
  3% {
    clip-path: inset(60% 0 30% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  4% {
    clip-path: inset(0);
    opacity: 0;
  }
  5% {
    clip-path: inset(30% 0 60% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  6% {
    clip-path: inset(0);
    opacity: 0;
  }
  7% {
    clip-path: inset(5% 0 85% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  8% {
    clip-path: inset(0);
    opacity: 0;
  }
  9% {
    clip-path: inset(75% 0 15% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  10% {
    clip-path: inset(45% 0 45% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  11% {
    clip-path: inset(0);
    opacity: 0;
  }
  12% {
    clip-path: inset(15% 0 75% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  13% {
    clip-path: inset(0);
    opacity: 0;
  }
  14% {
    clip-path: inset(85% 0 5% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  15% {
    clip-path: inset(50% 0 40% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  16% {
    clip-path: inset(0);
    opacity: 0;
  }
  17% {
    clip-path: inset(22% 0 68% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  18% {
    clip-path: inset(0);
    opacity: 0;
  }
  19% {
    clip-path: inset(68% 0 22% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  20% {
    clip-path: inset(92% 0 0% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  21% {
    clip-path: inset(0);
    opacity: 0;
  }
  22% {
    clip-path: inset(38% 0 52% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  23% {
    clip-path: inset(0);
    opacity: 0;
  }
  24% {
    clip-path: inset(8% 0 82% 0);
    opacity: 1;
    transform: translateX(-0.3125rem);
  }
  25% {
    clip-path: inset(0);
    opacity: 0;
  }
  26% {
    clip-path: inset(55% 0 35% 0);
    opacity: 1;
    transform: translateX(0.3125rem);
  }
  27% {
    clip-path: inset(78% 0 12% 0);
    opacity: 1;
    transform: translateX(-0.25rem);
  }
  28% {
    clip-path: inset(0);
    opacity: 0;
  }
  29% {
    clip-path: inset(2% 0 88% 0);
    opacity: 1;
    transform: translateX(0.25rem);
  }
  30% {
    clip-path: inset(0);
    opacity: 0;
  }
  32% {
    clip-path: inset(82% 0 8% 0);
    opacity: 0.9;
    transform: translateX(-0.3125rem);
  }
  33% {
    clip-path: inset(0);
    opacity: 0;
  }
  34% {
    clip-path: inset(42% 0 48% 0);
    opacity: 0.8;
    transform: translateX(0.25rem);
  }
  35% {
    clip-path: inset(18% 0 72% 0);
    opacity: 0.8;
    transform: translateX(-0.25rem);
  }
  36% {
    clip-path: inset(0);
    opacity: 0;
  }
  38% {
    clip-path: inset(62% 0 28% 0);
    opacity: 0.7;
    transform: translateX(0.3125rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  40% {
    clip-path: inset(28% 0 62% 0);
    opacity: 0.7;
    transform: translateX(-0.25rem);
  }
  41% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(72% 0 18% 0);
    opacity: 0.6;
    transform: translateX(0.25rem);
  }
  43% {
    clip-path: inset(0);
    opacity: 0;
  }
  45% {
    clip-path: inset(32% 0 58% 0);
    opacity: 0.5;
    transform: translateX(-0.1875rem);
  }
  46% {
    clip-path: inset(0);
    opacity: 0;
  }
  48% {
    clip-path: inset(52% 0 38% 0);
    opacity: 0.5;
    transform: translateX(0.1875rem);
  }
  49% {
    clip-path: inset(0);
    opacity: 0;
  }
  51% {
    clip-path: inset(15% 0 75% 0);
    opacity: 0.4;
    transform: translateX(-0.1875rem);
  }
  52% {
    clip-path: inset(0);
    opacity: 0;
  }
  54% {
    clip-path: inset(65% 0 25% 0);
    opacity: 0.3;
    transform: translateX(0.1875rem);
  }
  55% {
    clip-path: inset(0);
    opacity: 0;
  }
  57% {
    clip-path: inset(48% 0 42% 0);
    opacity: 0.3;
    transform: translateX(-0.125rem);
  }
  58%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
/* ---------- prefers-reduced-motion | ここから ---------- */
@media (prefers-reduced-motion: reduce) {
  .anime-trigger,
  .js-typewriter,
  .js-glitch-white,
  .js-text-reveal span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* ---------- prefers-reduced-motion | ここまで ---------- */
.body-content {
  position: relative;
  display: grid;
  grid-template-columns: 1140fr 780fr;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .body-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 960px) {
  .body-content {
    grid-template-columns: 1fr;
  }
}

.body-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  z-index: -10;
}

.body-content::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(../../assets/images/common/bg-pc.webp);
  background-size: cover;
  background-position: top center;
  z-index: -9;
}
@media screen and (max-width: 767px) {
  .body-content::after {
    background-image: url(../../assets/images/common/bg-sp.webp);
  }
}

/* ---------- ゲーム部分 | ここから ---------- */
.body-content__game-area {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  padding-left: 2.5rem;
}
@media screen and (max-width: 960px) {
  .body-content__game-area {
    display: none;
  }
}

/* ---------- ゲーム部分 | ここまで ---------- */
/* ---------- メインコンテンツ | ここから ---------- */
.body-content__main {
  position: relative;
  min-width: 0;
  padding-inline: clamp(1.563rem, -1.25rem + 3.13vw, 2.5rem); /* 25 ~ 40 | 1440 ~ 1920 */
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .body-content__main {
    padding-inline: 0;
  }
}

.body-content__inner {
  max-width: 31.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.body-content__slide-text {
  position: relative;
}

/* ---------- メインコンテンツ | ここまで ---------- */
.breadcrumb__nav {
  width: 100%;
}

.breadcrumb__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb__item {
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.breadcrumb__item:first-of-type {
  text-transform: uppercase;
}

.breadcrumb__item::after {
  content: "-";
  display: inline-block;
  margin-inline: 0.1875rem;
}

.breadcrumb__item:last-of-type::after {
  content: none;
}

.breadcrumb__link {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: all 0.3s;
}

.breadcrumb__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.125rem;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .breadcrumb__link:hover {
    animation: breadcrumb-link-blink 0.5s step-start infinite;
  }
}
@keyframes breadcrumb-link-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
/* ----- ボタンタイプ共通設定 ここから ----- */
.btn {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn__text {
  display: inline-block;
  transition: all 0.3s;
}

/* ----- ボタンタイプ共通設定 ここまで ----- */
/* ---------- もっと見るボタン | ここから ---------- */
.btn-01 {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 18.75rem;
  width: 100%;
  height: 3.75rem;
  transition: all 0.3s;
}

.btn-01::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.btn-01[data-theme=blue]::before {
  background-image: url(../../assets/images/common/btn-blue.svg);
}

.btn-01[data-theme=red]::before {
  background-image: url(../../assets/images/common/btn-red.svg);
}

@media (any-hover: hover) {
  .btn-01:hover::before {
    animation: btn-01-blink 0.5s step-start infinite;
  }
}
@keyframes btn-01-blink {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}
.btn-01::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 45%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.1875rem;
  aspect-ratio: 19/12;
  z-index: 1;
}

@media (any-hover: hover) {
  .btn-01:hover::after {
    animation: btn-01-arrow 0.5s steps(1, end) infinite;
  }
}
@keyframes btn-01-arrow {
  0%, 100% {
    right: 1.25rem;
  }
  50% {
    right: 0.9375rem;
  }
}
.btn__text-01 {
  position: relative;
  transform: translateY(-0.3125rem);
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
}

/* ---------- もっと見るボタン | ここまで ---------- */
/* ---------- 送信するボタン | ここから ---------- */
.btn.btn-contact {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 18.75rem;
  width: 100%;
  height: 3.75rem;
  margin-inline: auto;
  transition: all 0.3s;
}

.btn.btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/btn-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.btn.btn-contact::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 45%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.1875rem;
  aspect-ratio: 19/12;
  z-index: 1;
}

.btn-contact__submit {
  position: relative;
  transform: translateY(-0.3125rem);
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  z-index: 1;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .btn.btn-contact:hover::before {
    animation: btn-01-blink 0.5s step-start infinite;
  }
  .btn.btn-contact:hover::after {
    animation: btn-01-arrow 0.5s steps(1, end) infinite;
  }
}
/* ---------- 送信するボタン | ここまで ---------- */
.concept {
  position: relative;
  z-index: 1;
}

.concept__inner {
  padding-inline: clamp(0.938rem, -3.75rem + 5.21vw, 2.5rem); /* 15 ~ 40 | 1440 ~ 1920 */
}

.concept__lower-heading {
  margin-top: 2.8125rem;
}

.concept__img {
  margin-top: 3.75rem;
}
.concept__img img {
  height: 100%;
  object-fit: contain;
}

.concept__text-wrapper {
  position: relative;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .concept__text-wrapper {
    margin-top: 2.5rem;
  }
}

.concept__text {
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept__text {
    font-size: max(1rem, 12px);
  }
}

.concept__fighter {
  position: absolute;
  top: 3.125rem;
  right: 0;
  max-width: 6.875rem;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .concept__fighter {
    top: -4.375rem;
  }
}
.concept__fighter img {
  height: 100%;
  object-fit: contain;
}

.concept__fighter-laser {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.concept__fighter-laser-beam {
  position: absolute;
  top: 100%;
  width: 0.1875rem;
  height: 5rem;
  background: linear-gradient(180deg, #00ffff 0%, #ffffff 50%, #00ffff 100%);
  box-shadow: 0 0 0.375rem #00ffff, 0 0 0.75rem #00ffff;
  opacity: 0;
}

.concept__fighter-laser-beam--top {
  left: 25%;
}

.concept__fighter-laser-beam--middle {
  left: 50%;
  transform: translateX(-50%);
}

.concept__fighter-laser-beam--bottom {
  left: 75%;
}

.concept__fighter-laser.is-shooting .concept__fighter-laser-beam--top {
  animation: concept-laser-shoot 0.6s linear forwards;
}

.concept__fighter-laser.is-shooting .concept__fighter-laser-beam--middle {
  animation: concept-laser-shoot 0.6s linear 0.1s forwards;
}

.concept__fighter-laser.is-shooting .concept__fighter-laser-beam--bottom {
  animation: concept-laser-shoot 0.6s linear 0.2s forwards;
}

@keyframes concept-laser-shoot {
  0% {
    top: 100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 800%;
    opacity: 0;
  }
}
.concept__rule-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-top: 3.3125rem;
}

.concept__rule-item + .concept__rule-item {
  padding-top: 1.25rem;
  border-top: 0.125rem dotted #ffffff;
}

.concept__rule-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.concept__rule-icon {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.concept__rule-name {
  font-size: 1.375rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.6363636364;
}

.concept__rule-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .concept__rule-text {
    font-size: max(0.9375rem, 12px);
  }
}

.concept__illust-wrapper {
  max-width: 28.125rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .concept__illust-wrapper {
    max-width: 21.875rem;
  }
}

.concept__card {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .concept__card {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.concept__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.concept__card::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .concept__card::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.concept__card-inner {
  padding-inline: clamp(0.938rem, -3rem + 4.38vw, 2.25rem); /* 15 ~ 36 | 1440 ~ 1920 */
  padding-block: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .concept__card-inner {
    padding: 0.9375rem;
  }
}

.concept__card-heading {
  padding-bottom: 1.5625rem;
  border-bottom: 0.125rem dotted #cccccc;
}

.concept__card-heading-text {
  font-size: max(1.625rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.0769230769;
}
@media screen and (max-width: 767px) {
  .concept__card-heading-text {
    font-size: max(1.25rem, 12px);
  }
}

.concept__card-items {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .concept__card-items {
    margin-top: 1.875rem;
  }
}

.concept__card-item {
  padding-bottom: 1.125rem;
  border-bottom: 0.125rem dotted #cccccc;
}

.concept__card-item-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.concept__card-item-icon {
  width: 2.5rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.concept__card-item-title {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}

@media screen and (max-width: 767px) {
  .concept__card-item-text-wrapper {
    margin-top: 0.3125rem;
  }
}

.concept__card-item-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .concept__card-item-text {
    padding-left: 0;
    font-size: max(0.9375rem, 12px);
  }
}

.continued {
  max-width: 28.125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .continued {
    max-width: 21.875rem;
  }
}

.continued__illust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
}

.continued__illust-item img {
  height: 100%;
  object-fit: contain;
}

.continued__text-wrapper {
  margin-top: 0.625rem;
}

.continued__text {
  font-size: max(1.5rem, 12px);
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3333333333;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .continued__text {
    font-size: max(1.125rem, 12px);
  }
}

.continued__text span {
  display: inline-block;
  animation: textBounce 1s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes textBounce {
  0% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(0.125rem);
  }
  80%, 100% {
    transform: translateY(0px);
  }
}
.continued__text span:nth-child(1) {
  animation-delay: 0s;
}

.continued__text span:nth-child(2) {
  animation-delay: 0.2s;
}

.continued__text span:nth-child(3) {
  animation-delay: 0.4s;
}

.continued__text span:nth-child(4) {
  animation-delay: 0.6s;
}

.continued__text span:nth-child(5) {
  animation-delay: 0.8s;
}

.continued__text span:nth-child(6) {
  animation-delay: 1s;
}

.continued__text span:nth-child(7) {
  animation-delay: 1.2s;
}

.continued__text span:nth-child(8) {
  animation-delay: 1.4s;
}

.continued__text span:nth-child(9) {
  animation-delay: 1.6s;
}

.continued__text span:nth-child(10) {
  animation-delay: 1.8s;
}

.continued__text span:nth-child(11) {
  animation-delay: 2s;
}

.continued__text span:nth-child(12) {
  animation-delay: 2.2s;
}

.continued__text span:nth-child(13) {
  animation-delay: 2.4s;
}

.continued__text span:nth-child(14) {
  animation-delay: 2.6s;
}

.continued__text span:nth-child(15) {
  animation-delay: 2.8s;
}

.continued__text span:nth-child(16) {
  animation-delay: 3s;
}

.continued__text span:nth-child(17) {
  animation-delay: 3.2s;
}

.continued__text span:nth-child(18) {
  animation-delay: 3.4s;
}

.continued__text span:nth-child(19) {
  animation-delay: 3.6s;
}

.continued__text span:nth-child(20) {
  animation-delay: 3.8s;
}

.entry {
  margin-top: 1.125rem;
}

.entry__container {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
  margin-top: 1.25rem;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 767px) {
  .entry__container {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.entry__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.entry__container::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .entry__container::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.entry__form-wrapper {
  padding: 2.1875rem 2.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .entry__form-wrapper {
    padding: 1.5625rem 0.9375rem 1.875rem;
  }
}

.entry__form {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .entry__form {
    margin-top: 1.875rem;
  }
}

.entry__file-note {
  padding-block: 1.25rem;
  border-bottom: 1px solid #555555;
}

.entry__file-note-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .entry__file-note-text {
    font-size: max(0.875rem, 12px);
  }
}

.entry-card {
  position: relative;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .entry-card {
    margin-top: 3.125rem;
  }
}

.entry-card__container {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .entry-card__container {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.entry-card__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.entry-card__container::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .entry-card__container::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.entry-card__container-img {
  position: relative;
  container-type: inline-size;
}

.entry-card__container-img-inner {
  position: relative;
}

.entry-card__container-img-bg {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 632/360;
  border-radius: 0.949cqi 0.949cqi 0 0;
}

.entry-card__container-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.329cqi;
}

.entry-card__section-title {
  position: absolute;
  left: 5.54cqi;
  top: 11.55cqi;
}

.entry-card__copy {
  position: absolute;
  left: 50%;
  top: 33.703cqi;
  transform: translateX(-50%);
  font-size: 5.063cqi;
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0.475cqi 0 #000000;
}

.entry-card__chara {
  position: absolute;
  right: -1.27cqi;
  bottom: -6.8cqi;
  width: 28.48cqi;
}
.entry-card__chara img {
  height: 100%;
  object-fit: contain;
}

.entry-card__btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding-block: 1.5625rem 1.9375rem;
  padding-inline: 0.9375rem;
  opacity: 0;
}

.footer {
  position: relative;
  border-radius: 0.375rem 0.375rem 0 0;
  padding: 0.25rem 0.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0.1875rem 0.1875rem 0;
  }
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0.25rem 0.25rem 0;
  background-color: #000000;
  border-radius: 0.375rem 0.375rem 0 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer::after {
    inset: 0.1875rem 0.1875rem 0;
    border-radius: 0.25rem 0.25rem 0 0;
  }
}

.footer__container {
  position: relative;
  padding-block: 2.125rem 3.125rem;
}

.footer__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/common/illust/illust-key.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.8125rem;
  aspect-ratio: 13/20.5;
}

.footer__logo {
  max-width: 11.375rem;
  width: 100%;
  margin-inline: auto;
}

.footer__logo-link {
  display: block;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .footer__logo-link:hover {
    animation: footer-logo-blink 0.5s step-start infinite;
  }
}
.footer__logo-link img {
  height: 100%;
  object-fit: contain;
}

@keyframes footer-logo-blink {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(196, 244, 255, 0.8)) brightness(1.5);
  }
}
.footer__nav {
  margin-top: 1.75rem;
}

.footer__nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-items {
    flex-direction: column;
  }
}

.footer__nav-link {
  position: relative;
  display: inline-block;
  font-size: max(1rem, 12px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  padding-bottom: 0.0625rem;
  transition: opacity 0.3s;
}

.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.3125rem;
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
}

@media (any-hover: hover) {
  .footer__nav-link:hover {
    animation: footer-nav-blink 0.5s step-start infinite;
  }
}
@keyframes footer-nav-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.footer__copyright {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.5625rem;
  }
}

.footer__copyright-text {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}

.form {
  width: 100%;
}

.form__row {
  display: block;
  padding-left: 0;
  padding-right: 0;
  padding-block: 1.25rem;
  border-bottom: 1px dotted #ffffff;
  min-height: auto;
  gap: 0;
}

.form__row:first-child {
  padding-top: 0;
}

.form__head {
  margin-top: 0;
}

.form__badge,
.form__required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 3.4375rem;
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  padding-block: 0.40625rem;
  padding-inline: 0.84375rem;
  letter-spacing: 0.075em;
  border-radius: 100vmax;
}

.form__badge.form__required {
  background-color: #00a2e9;
  border: none;
  border-radius: 0.25rem;
  min-width: 3.0625rem;
  padding-block: 0.1875rem;
  padding-inline: 0.75rem;
  letter-spacing: 0.1em;
}

.form__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form__label-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .form__label-text {
    font-size: max(0.875rem, 12px);
  }
}

.form__body {
  width: 100%;
  margin-top: 0.625rem;
  max-width: none;
}

.form__row .form__body {
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .form__row .form__body {
    max-width: none;
  }
}

.form__body.form__body--file {
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .form__body.form__body--file {
    max-width: none;
  }
}

.form__input,
.form__textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0.25rem;
  padding-inline: 0.625rem;
  padding-block: 0.5rem;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.form__input {
  height: 2.5rem;
}

.form__textarea {
  min-height: 12.5rem;
}

.form__input:focus,
.form__textarea:focus {
  outline: 2px solid #00a2e9;
  outline-offset: -0.0625rem;
}

.form__input::placeholder,
.form__textarea::placeholder {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .form__input::placeholder,
  .form__textarea::placeholder {
    font-size: max(0.875rem, 12px);
  }
}

::placeholder {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: rgba(30, 30, 30, 0.3);
  letter-spacing: 0.075em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  ::placeholder {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- CF7 エラー | ここから ---------- */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid:not(.form__radio) {
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #be0000;
  letter-spacing: 0.075em;
  line-height: 1.7777777778;
  background-color: rgba(201, 72, 0, 0.2);
  border: 1px solid #be0000;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid:not(.form__radio) {
    font-size: max(1rem, 12px);
  }
}

.wpcf7-not-valid:not(.form__radio)::placeholder {
  color: rgba(190, 0, 0, 0.6);
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #be0000;
  letter-spacing: 0.075em;
  line-height: 1.3;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- CF7 エラー | ここまで ---------- */
/* ---------- ファイルアップロード | ここから ---------- */
.form__row.form__row--file {
  border-bottom: none;
  padding-block: 0.9375rem;
}

.form__row.form__row--file:first-of-type {
  padding-top: 1.25rem;
}

.form__row.form__row--file-last {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #555555;
}

.form__file {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  min-height: 3.25rem;
}

.form__file:focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 0.125rem;
}

.form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form__file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  height: 2.5rem;
  padding-inline: 1.25rem;
  background-color: #00a2e9;
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .form__file-btn {
    min-width: 7.5rem;
    height: 2.25rem;
    font-size: max(0.75rem, 12px);
  }
}

@media (any-hover: hover) {
  .form__file-btn:hover {
    animation: file-btn-blink 0.5s step-start infinite;
  }
}
@keyframes file-btn-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.form__file-name {
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- ファイルアップロード | ここまで ---------- */
/* ---------- 同意事項 | ここから ---------- */
.form__row.form__row--consent {
  border-bottom: none;
  width: max-content;
  margin-inline: auto;
}

.form__consent-link {
  position: relative;
  display: inline-block;
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-top: 0.625rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .form__consent-link {
    font-size: max(0.875rem, 12px);
  }
}

.form__consent-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .form__consent-link:hover {
    animation: consent-link-blink 0.5s step-start infinite;
  }
}
@keyframes consent-link-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.form__consent-agree {
  margin-top: 0.625rem;
}

.form__consent-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.form__consent-input {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid #000000;
  border-radius: 0.125rem;
  background-color: #ffffff;
  flex-shrink: 0;
}

.form__consent-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  width: 0.875rem;
  height: 0.375rem;
  border-left: 2px solid #00a2e9;
  border-bottom: 2px solid #00a2e9;
}

.form__consent-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .form__consent-text {
    font-size: max(0.875rem, 12px);
  }
}

/* ---------- 同意事項 | ここまで ---------- */
.form__btn-wrapper {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__btn-wrapper {
    margin-top: 1.875rem;
  }
}

.game {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 68.75rem;
  width: 100%;
  container-type: inline-size;
  opacity: 0;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
}

.game__panel {
  width: 100%;
}
.game__panel img {
  height: 100%;
  object-fit: contain;
}

.game__frame {
  position: absolute;
  top: 3.75rem;
  top: 6.82%;
  left: 50%;
  transform: translateX(-50%);
  width: 37.4375rem;
  width: 54.5%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.game__frame-img {
  position: relative;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
  z-index: 2;
}

.game__bg {
  position: absolute;
  top: 3.125rem;
  top: 8.35%;
  left: 3.125rem;
  left: 8.35%;
  width: 31.25rem;
  width: 83.47%;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: -1;
}
.game__bg img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 116.25rem;
  width: 372%;
  max-width: none;
  height: 31.25rem;
  height: 83.47%;
  height: 100%;
  object-fit: contain;
}

.game__fighter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  width: 7.27cqi;
  z-index: 0;
}
.game__fighter img {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.game__fighter.is-flashing {
  animation: fighter-flash 0.1s ease;
}

@keyframes fighter-flash {
  0%, 100% {
    filter: brightness(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    filter: brightness(2);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
/* ---------- ノーマルレーザー部分（募集要項） | ここから ---------- */
.game__laser {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9.09cqi;
  height: 0.55cqi;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00ff00 0%, #ffffff 50%, #00ff00 100%);
  box-shadow: 0 0 0.625rem #00ff00, 0 0 1.25rem #00ff00;
  opacity: 0;
  z-index: 1;
}

.game__laser.is-shooting {
  animation: laser-shoot 0.8s linear forwards;
}

@keyframes laser-shoot {
  0% {
    left: 50%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}
/* ---------- 三連装レーザー（イチケンの文化） | ここから ---------- */
.game__laser--triple {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.game__laser--triple.is-shooting {
  animation: none;
}

.game__laser-beam {
  position: absolute;
  width: 9.09cqi;
  height: 0.55cqi;
  left: 50%;
  background: linear-gradient(90deg, #00ffff 0%, #ffffff 50%, #00ffff 100%);
  box-shadow: 0 0 0.625rem #00ffff, 0 0 1.25rem #00ffff;
  opacity: 0;
}

.game__laser-beam--top {
  top: calc(50% - 1.36cqi);
}

.game__laser-beam--middle {
  top: 50%;
  transform: translateY(-50%);
}

.game__laser-beam--bottom {
  top: calc(50% + 1.36cqi);
}

.game__laser--triple.is-shooting .game__laser-beam--top {
  animation: laser-shoot-triple 0.6s linear forwards;
}

.game__laser--triple.is-shooting .game__laser-beam--middle {
  animation: laser-shoot-triple 0.6s linear 0.1s forwards;
}

.game__laser--triple.is-shooting .game__laser-beam--bottom {
  animation: laser-shoot-triple 0.6s linear 0.2s forwards;
}

@keyframes laser-shoot-triple {
  0% {
    left: 50%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}
/* ---------- 三連装レーザー | ここまで ---------- */
/* ---------- かめはめ波（イチケンの人々） | ここから ---------- */
.game__fighter--kamehameha.is-flashing {
  animation: kamehameha-fighter-charge 2s ease-in-out;
}

@keyframes kamehameha-fighter-charge {
  0%, 100% {
    filter: brightness(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    filter: brightness(2);
    transform: translate(-50%, -50%) scale(1.1);
  }
  40% {
    filter: brightness(1.3);
    transform: translate(-50%, -50%) scale(1.05);
  }
  50%, 90% {
    filter: brightness(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
.game__laser--kamehameha {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.game__laser--kamehameha.is-shooting {
  animation: none;
}

.game__laser-charge {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 1.82cqi;
  height: 1.82cqi;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff 0%, #00ffff 50%, transparent 100%);
  box-shadow: 0 0 1.25rem #00ffff, 0 0 2.5rem #00ffff, 0 0 3.75rem #00ffff;
  opacity: 0;
  z-index: 5;
}

.game__laser-wave {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 0;
  height: 0.91cqi;
  border-radius: 50%/50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00ffff 0%, #ffffff 20%, #00aaff 40%, #ffffff 60%, #00ffff 80%, #0088ff 100%);
  box-shadow: 0 0 1.25rem #00ffff, 0 0 2.5rem #00ffff, 0 0 3.75rem #00ffff, inset 0 0 1.25rem rgba(255, 255, 255, 0.8);
  opacity: 0;
  z-index: 1;
}

.game__laser--kamehameha.is-shooting .game__laser-charge {
  animation: kamehameha-charge 2s ease-out forwards;
}

.game__laser--kamehameha.is-shooting .game__laser-wave {
  animation: kamehameha-wave 2s ease-in-out forwards;
}

@keyframes kamehameha-charge {
  0% {
    width: 1.82cqi;
    height: 1.82cqi;
    opacity: 0;
  }
  10% {
    width: 2.73cqi;
    height: 2.73cqi;
    opacity: 0.5;
  }
  20% {
    width: 4.55cqi;
    height: 4.55cqi;
    opacity: 0.7;
  }
  30% {
    width: 6.36cqi;
    height: 6.36cqi;
    opacity: 0.9;
  }
  38% {
    width: 8.18cqi;
    height: 8.18cqi;
    opacity: 1;
  }
  42% {
    width: 9.09cqi;
    height: 9.09cqi;
    opacity: 0;
  }
  43%, 100% {
    opacity: 0;
  }
}
@keyframes kamehameha-wave {
  0%, 40% {
    left: calc(50% + 3.64cqi);
    width: 0;
    height: 0.91cqi;
    opacity: 0;
  }
  45% {
    left: calc(50% + 3.64cqi);
    width: 13.64cqi;
    height: 1.2cqi;
    opacity: 1;
  }
  55%, 85% {
    left: calc(50% + 3.64cqi);
    width: 50%;
    height: 1.5cqi;
    opacity: 1;
  }
  95%, 100% {
    left: calc(50% + 3.64cqi);
    width: 50%;
    height: 1.5cqi;
    opacity: 0;
  }
}
/* ---------- かめはめ波 | ここまで ---------- */
/* ---------- 魔貫光殺砲（トップページ） | ここから ---------- */
.game__fighter--makankosappo.is-flashing {
  animation: kamehameha-fighter-charge 2s ease-in-out;
}

.game__laser--makankosappo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.game__laser--makankosappo.is-shooting {
  animation: none;
}

.game__laser--makankosappo .game__laser-charge {
  background: radial-gradient(circle, #ffffff 0%, #ff8800 50%, transparent 100%);
  box-shadow: 0 0 1.25rem #ff8800, 0 0 2.5rem #ff8800, 0 0 3.75rem #ff8800;
}

.game__laser-core {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 0;
  height: 0.27cqi;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #ffaa00 0%, #ffffff 50%, #ffaa00 100%);
  box-shadow: 0 0 0.3125rem #ff8800, 0 0 0.625rem #ff8800;
  opacity: 0;
  z-index: 3;
}

.game__laser-spiral {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 0;
  height: 1.8cqi;
  border-radius: 0.9cqi;
  transform: translateY(-50%);
  background: repeating-linear-gradient(65deg, transparent 0, transparent 0.3cqi, #ffaa00 0.3cqi, #ff8800 0.5cqi, #ffaa00 0.7cqi, transparent 0.7cqi, transparent 1cqi);
  box-shadow: 0 0 0.625rem #ff8800, 0 0 1.25rem rgba(255, 136, 0, 0.5);
  opacity: 0;
  z-index: 2;
}

.game__laser--makankosappo.is-shooting .game__laser-charge {
  animation: kamehameha-charge 2s ease-out forwards;
}

.game__laser--makankosappo.is-shooting .game__laser-core {
  animation: makankosappo-core 2s linear forwards;
}

.game__laser--makankosappo.is-shooting .game__laser-spiral {
  animation: makankosappo-spiral 2s linear forwards, spiral-scroll 0.15s linear infinite;
}

@keyframes makankosappo-core {
  0%, 40% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 13.64cqi;
    opacity: 1;
  }
  55%, 85% {
    width: 50%;
    opacity: 1;
  }
  95%, 100% {
    width: 50%;
    opacity: 0;
  }
}
@keyframes makankosappo-spiral {
  0%, 40% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 13.64cqi;
    opacity: 0.8;
  }
  55%, 85% {
    width: 50%;
    opacity: 0.8;
  }
  95%, 100% {
    width: 50%;
    opacity: 0;
  }
}
@keyframes spiral-scroll {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 1cqi;
  }
}
/* ---------- 魔貫光殺砲 | ここまで ---------- */
/* ---------- 爆発型レーザー（エントリー） | ここから ---------- */
.game__laser--burst {
  background: linear-gradient(90deg, #ff00ff 0%, #ffff00 50%, #ff00ff 100%);
  box-shadow: 0 0 1.25rem #ff00ff, 0 0 2.5rem #ff00ff;
}

.game__laser--burst.is-shooting {
  animation: laser-shoot-burst 0.55s linear forwards;
}

@keyframes laser-shoot-burst {
  0% {
    left: calc(50% + 3.64cqi);
    width: 9.09cqi;
    height: 0.55cqi;
    border-radius: 0;
    opacity: 0;
    filter: brightness(1) saturate(1);
    box-shadow: 0 0 1.25rem #ff00ff, 0 0 2.5rem #ff00ff;
  }
  8% {
    opacity: 1;
  }
  28% {
    left: 65%;
    width: 9.09cqi;
    height: 0.55cqi;
    border-radius: 0;
    filter: brightness(1.5) saturate(1.5);
    box-shadow: 0 0 1.25rem #ff00ff, 0 0 2.5rem #ff00ff;
  }
  42% {
    left: 67%;
    width: 18cqi;
    height: 5cqi;
    border-radius: 50%;
    filter: brightness(2) saturate(1.5);
    box-shadow: 0 0 1.875rem #ff00ff, 0 0 3.75rem #ffff00, 0 0 5.625rem #ff00ff;
  }
  58% {
    left: 68%;
    width: 22cqi;
    height: 7cqi;
    border-radius: 50%;
    opacity: 1;
    filter: brightness(3) saturate(2);
    box-shadow: 0 0 2.5rem #ff00ff, 0 0 5rem #ffff00, 0 0 7.5rem #ff00ff;
  }
  80% {
    width: 22cqi;
    height: 7cqi;
    border-radius: 50%;
    opacity: 0.5;
    filter: brightness(2) saturate(1.5);
    box-shadow: 0 0 2.5rem #ff00ff, 0 0 5rem #ffff00, 0 0 7.5rem #ff00ff;
  }
  100% {
    left: 70%;
    width: 22cqi;
    height: 7cqi;
    border-radius: 50%;
    opacity: 0;
    filter: brightness(2) saturate(1);
    box-shadow: 0 0 2.5rem #ff00ff, 0 0 5rem #ffff00, 0 0 7.5rem #ff00ff;
  }
}
/* ---------- 爆発型レーザー | ここまで ---------- */
/* ---------- レーザー部分 | ここまで ---------- */
/* ---------- メニュー部分 | ここから ---------- */
.game__menu-item-wrapper {
  position: absolute;
  bottom: 6.36%;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.game__menu-items {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  gap: 1.45cqi;
}

.game__menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game__menu-item-fukidashi {
  position: absolute;
  bottom: calc(100% + 0.3125rem);
  bottom: calc(100% + 0.45cqi);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3125rem 1.4375rem;
  padding: 0.45cqi 2.09cqi;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0.1s;
}
.game__menu-item-fukidashi::before {
  content: "";
  position: absolute;
  inset: -0.1875rem -0.3125rem -0.75rem;
  inset: -0.27cqi -0.45cqi -1.09cqi;
  background: url("../images/common/fukidashi-01.svg") no-repeat center/100% 100%;
  z-index: -1;
}

.game__menu-item.is-active .game__menu-item-fukidashi {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.game__menu-item.is-active .game__menu-btn {
  pointer-events: none;
}

.game__menu-item.is-hover .game__menu-item-fukidashi {
  opacity: 1;
  visibility: visible;
}

.game__menu-item-fukidashi-text {
  font-size: 0.75rem;
  font-size: 1.09cqi;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #00a2e9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game__menu-btn {
  position: relative;
  display: block;
  width: 5rem;
  width: 7.27cqi;
  transition: background-color 0.1s, transform 0.1s;
}

.game__menu-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  width: 35%;
  aspect-ratio: 1/1;
  z-index: 1;
  transition: background-color 0.1s;
}

.game__menu-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00a2e9;
  width: 45%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  filter: blur(0.625rem);
  opacity: 0;
  transition: opacity 0.1s;
}

.game__menu-btn--top::before {
  mask-image: url(../../assets/images/common/game/icon-top.svg);
}

.game__menu-btn--culture::before {
  mask-image: url(../../assets/images/common/game/icon-culture.svg);
}

.game__menu-btn--people::before {
  mask-image: url(../../assets/images/common/game/icon-people.svg);
}

.game__menu-btn--recruit::before {
  mask-image: url(../../assets/images/common/game/icon-recruit.svg);
}

.game__menu-btn--entry::before {
  mask-image: url(../../assets/images/common/game/icon-entry.svg);
}

.game__menu-btn--company::before {
  mask-image: url(../../assets/images/common/game/icon-company.svg);
}

.game__menu-item.is-active .game__menu-btn .game__menu-btn-base {
  filter: brightness(0.8);
  transform: scale(0.98);
}

.game__menu-item.is-active .game__menu-btn::before {
  background-color: #00a2e9;
  transform: translate(-50%, -50%) scale(0.95);
}

.game__menu-item.is-active .game__menu-btn::after {
  opacity: 1;
}

@media (any-hover: hover) {
  .game__menu-btn:hover .game__menu-btn-base {
    filter: brightness(0.8);
    transform: scale(0.98);
  }
  .game__menu-btn:hover::before {
    background-color: #00a2e9;
    transform: translate(-50%, -50%) scale(0.95);
  }
  .game__menu-btn:hover::after {
    opacity: 1;
  }
}
.game__menu-btn-base {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: all 0.1s;
}

.game__menu-item-text {
  font-size: 1.125rem;
  font-size: 1.64cqi;
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #555555;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0.5625rem;
  margin-top: 0.82cqi;
}

/* ---------- メニュー部分 | ここまで ---------- */
.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 3.125rem;
  aspect-ratio: 1/1;
  z-index: 110;
  cursor: pointer;
  transition: all 0.3s;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hamburger {
    height: 100%;
  }
}
@media (any-hover: hover) {
  .hamburger:hover {
    animation: hamburger-blink 0.5s step-start infinite;
  }
}

@keyframes hamburger-blink {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(196, 244, 255, 0.8)) brightness(1.5);
  }
}
.hamburger::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/hamburger.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.hamburger__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 1.375rem;
  height: 0.4375rem;
}

.hamburger__box span {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #000000;
  transition: all 0.3s;
}

.hamburger__box span:nth-child(1) {
  top: 0;
  width: 1.375rem;
}

.hamburger__box span:nth-child(2) {
  top: 100%;
  left: calc(50% + 0.1875rem);
  width: 1rem;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 1.375rem;
}

.hamburger.is-active span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 1.375rem;
}

.hamburger__text {
  font-size: max(0.75rem, 12px);
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
  position: absolute;
  top: -2.5rem;
  right: 0;
  right: -2.5rem;
  width: 100%;
  max-width: 31.25rem;
  height: 100svh;
  overflow: scroll;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 9.375rem 6.25rem;
  border-left: 0.1875rem solid #ffffff;
  border-right: 0.1875rem solid #ffffff;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header-nav {
    top: -1.25rem;
    left: 0;
    max-width: none;
    padding-block: 6.875rem;
  }
}

.header-nav.is-active {
  display: block;
}

/* スクロールバー非表示 | ここから -------------- */
.header-nav {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.header-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
  /* スクロールバー非表示 | ここまで -------------- */
}

.header-nav__inner {
  max-width: 21.875rem;
  width: 100%;
  margin-inline: auto;
  padding: 0 0.9375rem;
}

.header-nav__logo {
  width: 100%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__logo {
    max-width: 15.625rem;
    margin-inline: auto;
  }
}

.header-nav__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .header-nav__logo-link:hover {
    animation: header-nav-logo-blink 0.5s step-start infinite;
  }
}
.header-nav__logo-link img {
  height: 100%;
  object-fit: contain;
}

@keyframes header-nav-logo-blink {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(196, 244, 255, 0.8)) brightness(1.5);
  }
}
.header-nav__items {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.875rem;
}

.header-nav__item-link {
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__item-link {
    font-size: max(1rem, 12px);
  }
}

@media (any-hover: hover) {
  .header-nav__item-link:hover {
    animation: header-nav-link-blink 0.5s step-start infinite;
  }
}
.header-nav__accordion-summary {
  position: relative;
  display: inline-block;
  font-size: max(1.25rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  padding-right: 1.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__accordion-summary {
    font-size: max(1rem, 12px);
  }
}

.header-nav__accordion-summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  transform: translateY(-50%);
  background: linear-gradient(#ffffff, #ffffff) center/100% 2px no-repeat, linear-gradient(#ffffff, #ffffff) center/2px 100% no-repeat;
  transition: background-size 0.3s, filter 0.3s;
}

.header-nav__accordion[open] .header-nav__accordion-summary::after {
  background-size: 100% 2px, 2px 0;
}

.header-nav__accordion-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.625rem;
  margin-top: 0.625rem;
}

.header-nav__accordion-summary-item-link {
  display: inline-block;
  font-size: max(1.125rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  padding-right: 1.875rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-nav__accordion-summary-item-link {
    font-size: max(0.875rem, 12px);
  }
}

@media (any-hover: hover) {
  .header-nav__accordion-summary:hover {
    animation: header-nav-link-blink 0.5s step-start infinite;
  }
  .header-nav__accordion-summary:hover::after {
    animation: header-nav-accordion-after-blink 0.5s step-start infinite;
  }
  .header-nav__accordion-summary-item-link:hover {
    animation: header-nav-link-blink 0.5s step-start infinite;
  }
}
@keyframes header-nav-link-blink {
  0%, 100% {
    color: #ffffff;
  }
  50% {
    color: #555555;
  }
}
@keyframes header-nav-accordion-after-blink {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.33);
  }
}
.header-nav__item-link,
.header-nav__accordion-summary,
.header-nav__accordion-summary-item-link {
  position: relative;
}
.header-nav__item-link::before,
.header-nav__accordion-summary::before,
.header-nav__accordion-summary-item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.125rem;
  width: 0.75rem;
  height: 0.875rem;
  background-color: #555555;
  mask-image: url(../../assets/images/common/icon-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

@keyframes triangle-rotate-x {
  from {
    transform: translateY(-50%) perspective(200px) rotateX(0deg);
  }
  to {
    transform: translateY(-50%) perspective(200px) rotateX(360deg);
  }
}
@media (any-hover: hover) {
  .header-nav__item-link:hover::before,
  .header-nav__accordion-summary:hover::before,
  .header-nav__accordion-summary-item-link:hover::before {
    opacity: 1;
    animation: triangle-rotate-x 0.6s linear infinite;
  }
}
.header {
  z-index: 100;
  position: sticky;
  top: 0;
  padding-top: 2.5rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 1.25rem;
  }
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    justify-content: space-between;
    padding-inline: 1.25rem;
  }
}

.header__logo {
  max-width: 11.375rem;
  width: 100%;
}

.header__logo-link {
  display: inline-block;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .header__logo-link:hover {
    animation: header-logo-blink 0.5s step-start infinite;
  }
}
.header__logo-link img {
  height: 100%;
  object-fit: contain;
}

@keyframes header-logo-blink {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(196, 244, 255, 0.8)) brightness(1.5);
  }
}
.header__hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    position: static;
    transform: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.heading {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.heading__stage {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.heading__text {
  font-size: clamp(1.625rem, 0.875rem + 0.83vw, 1.875rem); /* 26 ~ 30 | 1440 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .heading__text {
    font-size: max(1.25rem, 12px);
  }
}

.fv-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.29cqi;
  mix-blend-mode: color-dodge;
}

.fv-title__en {
  position: relative;
  font-size: 10cqi;
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #c4f4ff;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fv-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/deco-section-title.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #c4f4ff;
  width: 1.71cqi;
  aspect-ratio: 12/48;
  z-index: 1;
}

.fv-title__ja {
  font-size: max(2.29cqi, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #c4f4ff;
  line-height: 1.5;
}

.lower-heading {
  position: relative;
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem dotted #ffffff;
}

.lower-heading__text {
  font-size: max(1.625rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.0769230769;
}
@media screen and (max-width: 767px) {
  .lower-heading__text {
    font-size: max(1.25rem, 12px);
  }
}

.mv {
  position: relative;
  aspect-ratio: 700/280;
  container-type: inline-size;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  width: 100%;
}
@media screen and (max-width: 960px) {
  .mv {
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/top/fv-work-frame.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  will-change: transform, filter, opacity;
}

.mv__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__img {
  width: 100%;
  height: 100%;
}
.mv__img img {
  height: 100%;
  object-fit: contain;
}

.mv__text-copy {
  position: absolute;
  top: 8.571cqi;
  left: 8.571cqi;
  width: 31.4cqi;
}
.mv__text-copy img {
  height: 100%;
  object-fit: contain;
}

.mv__title {
  position: absolute;
  bottom: 0.49cqi;
  right: 1.16cqi;
  width: 46.4cqi;
  mix-blend-mode: color-dodge;
  z-index: 1;
  border-bottom-right-radius: 2.5rem;
  overflow: hidden;
  will-change: transform, filter, opacity;
}
.mv__title img {
  height: 100%;
  object-fit: contain;
}

.mv__lower-title {
  position: absolute;
  top: 6.57cqi;
  left: 10cqi;
  width: 31.4cqi;
}

.people__inner {
  padding-inline: clamp(0.938rem, -3.75rem + 5.21vw, 2.5rem); /* 15 ~ 40 | 1440 ~ 1920 */
}

.people__nav-wrapper {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .people__nav-wrapper {
    width: 100%;
    max-width: 21.875rem;
    margin-inline: auto;
  }
}

.people__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .people__nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.people__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
  transition: all 0.3s;
  text-decoration: none;
  filter: grayscale(1);
}

.people__nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/btn-blue.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

.people__nav-link[aria-current=page] {
  filter: grayscale(0);
  pointer-events: none;
}

.people__nav-link::after {
  content: "";
  position: absolute;
  right: clamp(0.5rem, -1.75rem + 2.5vw, 1.25rem); /* 8 ~ 20 | 1440 ~ 1920 */
  top: 45%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url(../../assets/images/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.1875rem;
  aspect-ratio: 19/12;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .people__nav-link::after {
    width: 0.9375rem;
    right: 1.25rem;
  }
}

@media (any-hover: hover) {
  .people__nav-link:hover {
    filter: grayscale(0);
  }
  .people__nav-link:not([aria-current=page]):hover::before {
    animation: btn-01-blink 0.5s step-start infinite;
  }
  .people__nav-link:not([aria-current=page]):hover::after {
    animation: people-nav-arrow 0.5s steps(1, end) infinite;
  }
}
@keyframes people-nav-arrow {
  0%, 100% {
    top: 45%;
    transform: translateY(-50%) rotate(90deg);
  }
  50% {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
}
.people__nav-text {
  position: relative;
  font-size: max(clamp(0.875rem, 0.125rem + 0.83vw, 1.125rem), 12px); /* 14 ~ 18 | 1440 ~ 1920 */
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  transform: translateY(-0.3125rem);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .people__nav-text {
    font-size: max(0.875rem, 12px);
  }
}

.people__card {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .people__card {
    margin-top: 1.875rem;
  }
}

.people__card-fukidashi {
  position: relative;
  width: 17.5rem;
  height: 5.125rem;
  margin-inline: auto;
  margin-bottom: -1.625rem;
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .people__card-fukidashi {
    width: 15rem;
    height: 4.375rem;
  }
}

.people__card-fukidashi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/fukidashi-02.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.people__card-fukidashi-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #00a2e9;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  transform: translateY(-0.4375rem);
}
@media screen and (max-width: 767px) {
  .people__card-fukidashi-text {
    font-size: max(0.875rem, 12px);
  }
}

.people__card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.625rem;
  padding: 0.25rem;
  min-height: 23.75rem;
}
@media screen and (max-width: 767px) {
  .people__card-body {
    padding: 0.1875rem;
    border-radius: 0.5rem;
    min-height: 21.25rem;
  }
}

.people__card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  border-radius: 0.625rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .people__card-body::before {
    border-radius: 0.5rem;
  }
}

.people__card-body::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .people__card-body::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.people__card-illust {
  max-width: 12.5rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .people__card-illust {
    max-width: 11.25rem;
  }
}
.people__card-illust img {
  height: 100%;
  object-fit: contain;
}

.people__card-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 1.5625rem;
}

.people__card-name {
  font-size: 2.25rem;
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 0.8333333333;
  border-bottom: 0.125rem solid #00a2e9;
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .people__card-name {
    font-size: 1.875rem;
  }
}

.people__card-detail {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.people__card-job {
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
}

.people__card-meta {
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
}

.people__card-parameter {
  width: 11.75rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .people__card-parameter {
    width: 10rem;
  }
}

.people__block-wrapper {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .people__block-wrapper {
    margin-top: 3.125rem;
  }
}

.people__block:nth-child(n+2) {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .people__block:nth-child(n+2) {
    margin-top: 2.1875rem;
  }
}

.people__block-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1875rem;
}

.people__block-heading-marker {
  display: inline-block;
  font-size: max(1.375rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  background-color: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.0625rem;
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .people__block-heading-marker {
    font-size: max(1rem, 12px);
  }
}

.people__block-heading-marker:nth-child(n+2) {
  margin-top: 0.1875rem;
}

.people__block-text {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .people__block-text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.people__block-content {
  display: flex;
  gap: 3.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .people__block-content {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }
}

.people__block-content--img-right {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .people__block-content--img-right {
    flex-direction: column;
  }
}

.people__block-content--img-left {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .people__block-content--img-left {
    flex-direction: column-reverse;
  }
}

.people__block-content .people__block-text {
  flex: 1;
  margin-top: 0;
}

.people__block-img img {
  border-radius: 0.3125rem;
  height: 100%;
  object-fit: cover;
}

.people__block-img--small {
  flex-shrink: 0;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .people__block-img--small {
    width: 100%;
  }
}

.people__block-img--small img {
  aspect-ratio: 200/140;
}

.people__block-img:not(.people__block-img--small) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .people__block-img:not(.people__block-img--small) {
    margin-top: 1rem;
  }
}

.people__block-img:not(.people__block-img--small) img {
  aspect-ratio: 560/390;
}

.recruit {
  margin-top: 1.1875rem;
}

.recruit-tab {
  margin-top: 3.125rem;
}

.recruit-tab__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .recruit-tab__list {
    gap: 0.5rem 0.625rem;
  }
}

.recruit-tab__list-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
  transition: all 0.3s;
  filter: grayscale(1);
}

.recruit-tab__list-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/btn-blue.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

.recruit-tab__list-btn[aria-selected=true] {
  filter: grayscale(0);
  pointer-events: none;
}

.recruit-tab__list-btn::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 45%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url(../../assets/images/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.1875rem;
  aspect-ratio: 19/12;
  z-index: 1;
}

@media (any-hover: hover) {
  .recruit-tab__list-btn:hover {
    filter: grayscale(0);
  }
  .recruit-tab__list-btn:not([aria-selected=true]):hover::before {
    animation: btn-01-blink 0.5s step-start infinite;
  }
  .recruit-tab__list-btn:not([aria-selected=true]):hover::after {
    animation: recruit-tab-arrow 0.5s steps(1, end) infinite;
  }
}
@keyframes recruit-tab-arrow {
  0%, 100% {
    top: 45%;
    transform: translateY(-50%) rotate(90deg);
  }
  50% {
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
}
.recruit-tab__btn-text {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  transform: translateY(-0.3125rem);
}

.recruit-tab__panel-items {
  position: relative;
  margin-top: 1.75rem;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 767px) {
  .recruit-tab__panel-items {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.recruit-tab__panel-items::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.recruit-tab__panel-items::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .recruit-tab__panel-items::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.recruit-card {
  position: relative;
  background-color: #000000;
  padding: 2.1875rem 2.25rem 3.5rem;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .recruit-card {
    padding: 1.5625rem 1.25rem 2.5rem;
    border-radius: 0.1875rem;
  }
}

.recruit-card__heading {
  font-size: 1.625rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.0769230769;
  padding-bottom: 1.25rem;
  border-bottom: 2px dotted #ffffff;
}

.recruit-card__row {
  padding-block: 1.25rem;
  border-bottom: 1px dotted #555555;
}

.recruit-card__row:last-child {
  border-bottom: none;
}

.recruit-card__label {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.recruit-card__value {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 0.625rem;
}

/* ---------- グリッチアニメーション | ここから ---------- */
.recruit-card.is-glitch {
  animation: recruit-glitch 0.8s step-end;
}

.recruit-card.is-glitch::before,
.recruit-card.is-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
}

.recruit-card.is-glitch::before {
  background: rgba(255, 255, 255, 0.55);
  animation: recruit-glitch-red 0.8s step-end;
}

.recruit-card.is-glitch::after {
  background: rgba(200, 200, 200, 0.45);
  animation: recruit-glitch-blue 0.8s step-end;
}

@keyframes recruit-glitch {
  0% {
    opacity: 0;
    transform: translate(0, 0);
    text-shadow: none;
  }
  3% {
    opacity: 1;
    transform: translate(-0.375rem, 0.125rem);
    text-shadow: 0.25rem 0 rgba(255, 255, 255, 0.55), -0.25rem 0 rgba(200, 200, 200, 0.45);
  }
  6% {
    transform: translate(0.5rem, -0.0625rem);
    text-shadow: -0.1875rem 0 rgba(255, 255, 255, 0.55), 0.3125rem 0 rgba(200, 200, 200, 0.45);
  }
  9% {
    transform: translate(-0.25rem, 0);
    text-shadow: 0.125rem 0 rgba(200, 200, 200, 0.45);
  }
  12% {
    transform: translate(0.3125rem, 0.0625rem);
    text-shadow: -0.3125rem 0 rgba(255, 255, 255, 0.55), 0.1875rem 0 rgba(200, 200, 200, 0.45);
  }
  15% {
    opacity: 0;
    transform: translate(-0.1875rem, 0);
    text-shadow: none;
  }
  18% {
    opacity: 1;
    transform: translate(0.4375rem, -0.125rem);
    text-shadow: 0.3125rem 0 rgba(255, 255, 255, 0.55), -0.3125rem 0 rgba(200, 200, 200, 0.45);
  }
  21% {
    transform: translate(-0.5rem, 0.0625rem);
    text-shadow: -0.25rem 0 rgba(255, 255, 255, 0.55);
  }
  24% {
    transform: translate(0.1875rem, 0);
    text-shadow: 0.1875rem 0 rgba(200, 200, 200, 0.45), -0.1875rem 0 rgba(255, 255, 255, 0.55);
  }
  27% {
    opacity: 0;
    transform: translate(-0.3125rem, -0.0625rem);
    text-shadow: none;
  }
  30% {
    opacity: 1;
    transform: translate(0.375rem, 0);
    text-shadow: -0.25rem 0 rgba(200, 200, 200, 0.45);
  }
  33% {
    transform: translate(-0.125rem, 0.125rem);
    text-shadow: 0.1875rem 0 rgba(255, 255, 255, 0.55), -0.125rem 0 rgba(200, 200, 200, 0.45);
  }
  36% {
    transform: translate(0.25rem, -0.0625rem);
    text-shadow: -0.1875rem 0 rgba(255, 255, 255, 0.4);
  }
  39% {
    opacity: 0;
    transform: translate(0, 0);
    text-shadow: none;
  }
  42% {
    opacity: 1;
    transform: translate(-0.1875rem, 0);
    text-shadow: 0.125rem 0 rgba(200, 200, 200, 0.35);
  }
  45% {
    transform: translate(0.125rem, 0);
    text-shadow: -0.125rem 0 rgba(255, 255, 255, 0.3);
  }
  48% {
    transform: translate(0, 0);
    text-shadow: none;
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    text-shadow: none;
    opacity: 1;
  }
}
@keyframes recruit-glitch-red {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  3% {
    clip-path: inset(2% 0 90% 0);
    opacity: 1;
    transform: translateX(-1.125rem);
  }
  6% {
    clip-path: inset(15% 0 78% 0);
    transform: translateX(1.375rem);
  }
  9% {
    clip-path: inset(35% 0 58% 0);
    transform: translateX(-1.5625rem);
  }
  12% {
    clip-path: inset(52% 0 40% 0);
    transform: translateX(0.9375rem);
  }
  15% {
    clip-path: inset(0);
    opacity: 0;
  }
  18% {
    clip-path: inset(8% 0 85% 0);
    opacity: 1;
    transform: translateX(1.25rem);
  }
  21% {
    clip-path: inset(28% 0 65% 0);
    transform: translateX(-1.375rem);
  }
  24% {
    clip-path: inset(45% 0 48% 0);
    transform: translateX(1.125rem);
  }
  27% {
    clip-path: inset(0);
    opacity: 0;
  }
  30% {
    clip-path: inset(62% 0 30% 0);
    opacity: 1;
    transform: translateX(-1.25rem);
  }
  33% {
    clip-path: inset(78% 0 15% 0);
    transform: translateX(1.5625rem);
  }
  36% {
    clip-path: inset(92% 0 2% 0);
    transform: translateX(-0.9375rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(18% 0 75% 0);
    opacity: 0.4;
    transform: translateX(-0.625rem);
  }
  45% {
    clip-path: inset(55% 0 40% 0);
    opacity: 0.3;
    transform: translateX(0.5rem);
  }
  48%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes recruit-glitch-blue {
  0% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
  3% {
    clip-path: inset(88% 0 5% 0);
    opacity: 1;
    transform: translateX(1.25rem);
  }
  6% {
    clip-path: inset(70% 0 22% 0);
    transform: translateX(-1.125rem);
  }
  9% {
    clip-path: inset(50% 0 42% 0);
    transform: translateX(1.375rem);
  }
  12% {
    clip-path: inset(22% 0 70% 0);
    transform: translateX(-1.25rem);
  }
  15% {
    clip-path: inset(0);
    opacity: 0;
  }
  18% {
    clip-path: inset(82% 0 10% 0);
    opacity: 1;
    transform: translateX(-1.375rem);
  }
  21% {
    clip-path: inset(58% 0 35% 0);
    transform: translateX(1.25rem);
  }
  24% {
    clip-path: inset(38% 0 55% 0);
    transform: translateX(-0.9375rem);
  }
  27% {
    clip-path: inset(0);
    opacity: 0;
  }
  30% {
    clip-path: inset(5% 0 88% 0);
    opacity: 1;
    transform: translateX(1.375rem);
  }
  33% {
    clip-path: inset(20% 0 72% 0);
    transform: translateX(-1.125rem);
  }
  36% {
    clip-path: inset(42% 0 50% 0);
    transform: translateX(1.25rem);
  }
  39% {
    clip-path: inset(0);
    opacity: 0;
  }
  42% {
    clip-path: inset(72% 0 20% 0);
    opacity: 0.4;
    transform: translateX(0.625rem);
  }
  45% {
    clip-path: inset(30% 0 62% 0);
    opacity: 0.3;
    transform: translateX(-0.5rem);
  }
  48%, 100% {
    clip-path: inset(0);
    opacity: 0;
    transform: translateX(0);
  }
}
/* ---------- グリッチアニメーション | ここまで ---------- */
.section-img {
  width: 90.6%;
  margin-inline: auto;
}
.section-img img {
  height: 100%;
  object-fit: contain;
}

.section-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.316cqi;
}

.section-title__en {
  position: relative;
  font-size: 11.076cqi;
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/deco-section-title.svg);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  width: 1.899cqi;
  aspect-ratio: 12/50;
  z-index: 1;
}

.section-title__ja {
  font-size: max(2.532cqi, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.section-title__ja[data-anime-group=entry-title] {
  position: relative;
  padding-left: 1.25rem;
}

.section-title__ja[data-anime-group=entry-title]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  width: 0.75rem;
  aspect-ratio: 12/14;
  transition: all 0.3s;
}

.top-about {
  position: relative;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  margin-top: 3.75rem;
}
.top-about__container {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about__container {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.top-about__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.top-about__container::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-about__container::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.top-about__container-img {
  position: relative;
  container-type: inline-size;
}

.top-about__container-img-bg {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 632/360;
  border-radius: 0.949cqi 0.949cqi 0 0;
}

.top-about__chara {
  position: absolute;
  right: 5.696cqi;
  bottom: -9.494cqi;
  width: 28.5cqi;
}
.top-about__chara img {
  height: 100%;
  object-fit: contain;
}

.top-about__section-title {
  position: absolute;
  left: 5.696cqi;
  top: 11.392cqi;
}

.top-about__copy {
  position: absolute;
  left: 50%;
  top: 32.278cqi;
  transform: translateX(-50%);
  font-size: 5.063cqi;
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-align: center;
  text-shadow: 0 0.475cqi 0 #000000;
}

.top-about__info-wrapper {
  padding-inline: clamp(0.938rem, -3rem + 4.38vw, 2.25rem); /* 15 ~ 36 | 1440 ~ 1920 */
  padding-bottom: clamp(0.938rem, -3rem + 4.38vw, 2.25rem); /* 15 ~ 36 | 1440 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .top-about__info-wrapper {
    padding-inline: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.top-about__info {
  border: 0.125rem solid #ffffff;
  padding-block: 2rem 2.375rem;
  padding-inline: clamp(0.938rem, -3.375rem + 4.79vw, 2.375rem); /* 15 ~ 38 | 1440 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .top-about__info {
    padding-block: 2rem 2rem;
    padding-inline: 0.9375rem;
  }
}

.top-about__info-text {
  font-size: max(1rem, 12px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-about__info-text {
    font-size: max(0.9375rem, 12px);
  }
}

.top-about__section-img {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-about__section-img {
    margin-top: 3.125rem;
  }
}

.top-game {
  display: none;
}
@media screen and (max-width: 960px) {
  .top-game {
    display: block;
    position: relative;
    width: 100%;
    container-type: inline-size;
    filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  }
}

.top-game__panel {
  width: 100%;
}
.top-game__panel img {
  height: 100%;
  object-fit: contain;
}

.top-game__frame {
  position: absolute;
  top: 6.82%;
  left: 50%;
  transform: translateX(-50%);
  width: 54.5%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.top-game__frame-img {
  position: relative;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
  z-index: 2;
}

.top-game__bg {
  position: absolute;
  top: 8.35%;
  left: 8.35%;
  width: 83.47%;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: -1;
}
.top-game__bg img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 372%;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

.top-game__bg.is-sliding img {
  animation: top-game-bg-slide 5s ease-in-out forwards;
}

@keyframes top-game-bg-slide {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(calc(-100% + 45.49115cqi));
  }
}
.top-game__fighter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.27cqi;
  z-index: 0;
}
.top-game__fighter img {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.top-game__fighter.is-flashing {
  animation: fighter-flash 0.1s ease;
}

/* ---------- トップページのMVアニメーション内の魔貫光殺砲 | ここから ---------- */
.top-game__fighter--makankosappo.is-flashing {
  animation: kamehameha-fighter-charge 2s ease-in-out;
}

.top-game__laser {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9.09cqi;
  height: 0.55cqi;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00ff00 0%, #ffffff 50%, #00ff00 100%);
  box-shadow: 0 0 0.625rem #00ff00, 0 0 1.25rem #00ff00;
  opacity: 0;
  z-index: 1;
}

.top-game__laser--makankosappo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.top-game__laser--makankosappo.is-shooting {
  animation: none;
}

.top-game__laser-charge {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 1.82cqi;
  height: 1.82cqi;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff 0%, #ff8800 50%, transparent 100%);
  box-shadow: 0 0 1.25rem #ff8800, 0 0 2.5rem #ff8800, 0 0 3.75rem #ff8800;
  opacity: 0;
  z-index: 5;
}

.top-game__laser-core {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 0;
  height: 0.27cqi;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #ffaa00 0%, #ffffff 50%, #ffaa00 100%);
  box-shadow: 0 0 0.3125rem #ff8800, 0 0 0.625rem #ff8800;
  opacity: 0;
  z-index: 3;
}

.top-game__laser-spiral {
  position: absolute;
  top: 50%;
  left: calc(50% + 3.64cqi);
  width: 0;
  height: 1.8cqi;
  border-radius: 0.9cqi;
  transform: translateY(-50%);
  background: repeating-linear-gradient(65deg, transparent 0, transparent 0.3cqi, #ffaa00 0.3cqi, #ff8800 0.5cqi, #ffaa00 0.7cqi, transparent 0.7cqi, transparent 1cqi);
  box-shadow: 0 0 0.625rem #ff8800, 0 0 1.25rem rgba(255, 136, 0, 0.5);
  opacity: 0;
  z-index: 2;
}

.top-game__laser--makankosappo.is-shooting .top-game__laser-charge {
  animation: kamehameha-charge 2s ease-out forwards;
}

.top-game__laser--makankosappo.is-shooting .top-game__laser-core {
  animation: makankosappo-core 2s linear forwards;
}

.top-game__laser--makankosappo.is-shooting .top-game__laser-spiral {
  animation: makankosappo-spiral 2s linear forwards, spiral-scroll 0.15s linear infinite;
}

/* ---------- トップページのMVアニメーション内の魔貫光殺砲 | ここまで ---------- */
.top-culture {
  position: relative;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  margin-top: 3.75rem;
}
.top-culture__container {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-culture__container {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.top-culture__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -2;
}

.top-culture__container::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-culture__container::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.top-culture__container-img {
  position: relative;
  container-type: inline-size;
}

.top-culture__container-img-bg {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 632/360;
  border-radius: 0.949cqi 0.949cqi 0 0;
}

.top-culture__chara {
  position: absolute;
  right: 5.696cqi;
  bottom: -9.494cqi;
  width: 28.5cqi;
}
.top-culture__chara img {
  height: 100%;
  object-fit: contain;
}

.top-culture__section-title {
  position: absolute;
  left: 5.696cqi;
  top: 11.392cqi;
}

.top-culture__copy {
  position: absolute;
  left: 50%;
  top: 32.278cqi;
  transform: translateX(-50%);
  font-size: 5.063cqi;
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-align: center;
  text-shadow: 0 0.475cqi 0 #000000;
}

.top-culture__info-wrapper {
  padding-inline: clamp(0.938rem, -3rem + 4.38vw, 2.25rem); /* 15 ~ 36 | 1440 ~ 1920 */
  padding-bottom: clamp(0.938rem, -3rem + 4.38vw, 2.25rem); /* 15 ~ 36 | 1440 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .top-culture__info-wrapper {
    padding-inline: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.top-culture__info {
  border: 0.125rem solid #ffffff;
  padding-block: 2rem 2.375rem;
  padding-inline: clamp(0.938rem, -3.375rem + 4.79vw, 2.375rem); /* 15 ~ 38 | 1440 ~ 1920 */
}
@media screen and (max-width: 767px) {
  .top-culture__info {
    padding-block: 2rem 2rem;
    padding-inline: 0.9375rem;
  }
}

.top-culture__rule-list {
  margin-top: 1.5625rem;
}

.top-culture__rule-item:nth-child(n+2) {
  margin-top: 0.9375rem;
  padding-top: 1.25rem;
  border-top: 0.125rem dotted #ffffff;
}

.top-culture__rule-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.top-culture__rule-icon {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.top-culture__rule-name {
  font-size: max(0.75rem, 12px);
  font-family: "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.top-culture__rule-text {
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-culture__rule-text {
    font-size: max(0.9375rem, 12px);
  }
}

.top-culture__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.1875rem;
  opacity: 0;
}

.top-culture__section-img {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-culture__section-img {
    margin-top: 3.125rem;
  }
}

.top-people {
  position: relative;
  filter: drop-shadow(0 1.25rem 0.625rem rgba(0, 0, 0, 0.4));
  margin-top: 3.75rem;
}
.top-people__container {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .top-people__container {
    padding: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.top-people__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/bg-metal.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  border-radius: 0.625rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-people__container::before {
    border-radius: 0.5rem;
  }
}

.top-people__container::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background-color: #000000;
  border-radius: 0.375rem;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-people__container::after {
    inset: 0.1875rem;
    border-radius: 0.25rem;
  }
}

.top-people__container-img {
  position: relative;
  container-type: inline-size;
}

.top-people__container-img-bg {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 632/360;
  border-radius: 0.949cqi 0.949cqi 0 0;
}

.top-people__chara {
  position: absolute;
  right: 5.696cqi;
  bottom: -9.494cqi;
  width: 28.5cqi;
}
.top-people__chara img {
  height: 100%;
  object-fit: contain;
}

.top-people__section-title {
  position: absolute;
  left: 5.696cqi;
  top: 11.392cqi;
}

.top-people__copy {
  position: absolute;
  left: 50%;
  top: 32.278cqi;
  transform: translateX(-50%);
  font-size: 5.063cqi;
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-align: center;
  text-shadow: 0 0.475cqi 0 #000000;
}

.top-people__slider-outer {
  margin-top: 3.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-people__slider-outer {
    margin-top: 2.5rem;
  }
}

.js-people-swiper {
  overflow: visible;
}

.js-people-swiper .swiper-slide {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .js-people-swiper .swiper-slide {
    width: 17.5rem;
  }
}

.top-people__slide {
  display: block;
  text-decoration: none;
  color: inherit;
}

.top-people__slide-fukidashi {
  position: relative;
  width: 17.5rem;
  height: 5.125rem;
  margin-inline: auto;
  margin-bottom: -1.625rem;
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-people__slide-fukidashi {
    width: 15rem;
    height: 4.375rem;
  }
}

.top-people__slide-fukidashi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/images/common/fukidashi-02.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.top-people__slide-fukidashi-text {
  transform: translateY(-0.5rem);
  font-size: max(1rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #00a2e9;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-people__slide-fukidashi-text {
    font-size: max(0.875rem, 12px);
  }
}

.top-people__slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 23.75rem;
  border-radius: 0.625rem;
  background-color: #ffffff;
  background-image: url(../../assets/images/top/people-slide-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 2.5rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-people__slide-card {
    height: 21.25rem;
    padding: 1.875rem 0.9375rem 0.9375rem;
  }
}

.top-people__slide-illust {
  max-width: 12.5rem;
  width: 100%;
  margin-inline: auto;
}
.top-people__slide-illust img {
  height: 100%;
  object-fit: contain;
}

@keyframes people-illust-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@media (any-hover: hover) {
  .top-people__slide:hover .top-people__slide-illust img {
    animation: people-illust-bounce 0.5s step-start infinite;
  }
}
.top-people__slide-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 1.5625rem;
}

.top-people__slide-name {
  font-size: 2.25rem;
  font-family: "din-2014-narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 0.8333333333;
}
@media screen and (max-width: 767px) {
  .top-people__slide-name {
    font-size: 1.875rem;
  }
}

.top-people__slide-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.top-people__slide-job {
  font-size: max(0.875rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.1em;
}

.top-people__slide-meta {
  font-size: max(0.75rem, 12px);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
}

.top-people__slide-parameter {
  max-width: 11.75rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 1.5625rem;
}
.top-people__swiper-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-people__swiper-btns {
    margin-top: 1.875rem;
  }
}

.top-people__swiper-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: max(1rem, 12px);
  font-family: "AiKonomiLikeLove", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-people__swiper-btn:hover {
    animation: swiper-btn-blink 0.5s step-start infinite;
  }
}
@keyframes swiper-btn-blink {
  0%, 100% {
    color: #ffffff;
  }
  50% {
    color: #c4f4ff;
  }
}
.top-people__swiper-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  mask-image: url(../../assets/images/common/icon-triangle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  width: 0.75rem;
  aspect-ratio: 12/14;
  transition: all 0.3s;
}

.top-people__swiper-btn--next {
  padding-right: 1.125rem;
}

.top-people__swiper-btn--prev {
  flex-direction: row-reverse;
  padding-left: 1.125rem;
}

.top-people__swiper-btn--prev::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

@media (any-hover: hover) {
  .top-people__swiper-btn:hover::after {
    background-color: #c4f4ff;
  }
  .top-people__swiper-btn--prev:hover::after {
    animation: triangle-rotate-x-reversed 0.6s linear infinite;
  }
  .top-people__swiper-btn--next:hover::after {
    animation: triangle-rotate-x-nav 0.6s linear infinite;
  }
}
@keyframes triangle-rotate-x-nav {
  from {
    transform: translateY(-50%) perspective(200px) rotateX(0deg);
  }
  to {
    transform: translateY(-50%) perspective(200px) rotateX(360deg);
  }
}
@keyframes triangle-rotate-x-reversed {
  from {
    transform: translateY(-50%) rotate(180deg) perspective(200px) rotateX(0deg);
  }
  to {
    transform: translateY(-50%) rotate(180deg) perspective(200px) rotateX(360deg);
  }
}
.top-people__swiper-separator {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 -0.4375rem 0 #ffffff, 0 0.4375rem 0 #ffffff;
}

.top-people__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.375rem;
  opacity: 0;
}

.top-people__section-img {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-people__section-img {
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 960px) {
  .l-top-main {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-top-main {
    margin-top: 6.25rem;
  }
}

.l-mv {
  margin-top: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-mv {
    margin-top: 3.75rem;
  }
}

.l-lower-mv {
  margin-top: 1.875rem;
}
@media screen and (max-width: 960px) {
  .l-lower-mv {
    margin-top: 6.25rem;
  }
}

.l-entry {
  margin-top: 3.75rem;
}

.l-continued {
  margin-top: 3.75rem;
}

.l-footer {
  margin-top: 3.75rem;
}

.l-concept {
  margin-top: 1.125rem;
}

.l-people {
  margin-top: 1.125rem;
}

/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここから ---------- */
.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここまで ---------- */
/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 767px以下で改行 */
.br-767-less {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-767-less {
    display: block;
  }
}

/* 768px以上で改行 */
@media screen and (max-width: 767px) {
  .br-768-more {
    display: none;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 | ここから ---------- */
/* PCのとき非表示 */
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

/* SPのとき非表示 */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

/* ---------- 表示・非表示 | ここまで ---------- */
/* ---------- margin-topの設定 | ここから ---------- */
.mt-pc-1 {
  margin-top: 0.0625rem;
}

.mt-pc-2 {
  margin-top: 0.125rem;
}

.mt-pc-3 {
  margin-top: 0.1875rem;
}

.mt-pc-4 {
  margin-top: 0.25rem;
}

.mt-pc-5 {
  margin-top: 0.3125rem;
}

.mt-pc-6 {
  margin-top: 0.375rem;
}

.mt-pc-7 {
  margin-top: 0.4375rem;
}

.mt-pc-8 {
  margin-top: 0.5rem;
}

.mt-pc-9 {
  margin-top: 0.5625rem;
}

.mt-pc-10 {
  margin-top: 0.625rem;
}

.mt-pc-11 {
  margin-top: 0.6875rem;
}

.mt-pc-12 {
  margin-top: 0.75rem;
}

.mt-pc-13 {
  margin-top: 0.8125rem;
}

.mt-pc-14 {
  margin-top: 0.875rem;
}

.mt-pc-15 {
  margin-top: 0.9375rem;
}

.mt-pc-16 {
  margin-top: 1rem;
}

.mt-pc-17 {
  margin-top: 1.0625rem;
}

.mt-pc-18 {
  margin-top: 1.125rem;
}

.mt-pc-19 {
  margin-top: 1.1875rem;
}

.mt-pc-20 {
  margin-top: 1.25rem;
}

.mt-pc-21 {
  margin-top: 1.3125rem;
}

.mt-pc-22 {
  margin-top: 1.375rem;
}

.mt-pc-23 {
  margin-top: 1.4375rem;
}

.mt-pc-24 {
  margin-top: 1.5rem;
}

.mt-pc-25 {
  margin-top: 1.5625rem;
}

.mt-pc-26 {
  margin-top: 1.625rem;
}

.mt-pc-27 {
  margin-top: 1.6875rem;
}

.mt-pc-28 {
  margin-top: 1.75rem;
}

.mt-pc-29 {
  margin-top: 1.8125rem;
}

.mt-pc-30 {
  margin-top: 1.875rem;
}

.mt-pc-31 {
  margin-top: 1.9375rem;
}

.mt-pc-32 {
  margin-top: 2rem;
}

.mt-pc-33 {
  margin-top: 2.0625rem;
}

.mt-pc-34 {
  margin-top: 2.125rem;
}

.mt-pc-35 {
  margin-top: 2.1875rem;
}

.mt-pc-36 {
  margin-top: 2.25rem;
}

.mt-pc-37 {
  margin-top: 2.3125rem;
}

.mt-pc-38 {
  margin-top: 2.375rem;
}

.mt-pc-39 {
  margin-top: 2.4375rem;
}

.mt-pc-40 {
  margin-top: 2.5rem;
}

.mt-pc-41 {
  margin-top: 2.5625rem;
}

.mt-pc-42 {
  margin-top: 2.625rem;
}

.mt-pc-43 {
  margin-top: 2.6875rem;
}

.mt-pc-44 {
  margin-top: 2.75rem;
}

.mt-pc-45 {
  margin-top: 2.8125rem;
}

.mt-pc-46 {
  margin-top: 2.875rem;
}

.mt-pc-47 {
  margin-top: 2.9375rem;
}

.mt-pc-48 {
  margin-top: 3rem;
}

.mt-pc-49 {
  margin-top: 3.0625rem;
}

.mt-pc-50 {
  margin-top: 3.125rem;
}

.mt-pc-51 {
  margin-top: 3.1875rem;
}

.mt-pc-52 {
  margin-top: 3.25rem;
}

.mt-pc-53 {
  margin-top: 3.3125rem;
}

.mt-pc-54 {
  margin-top: 3.375rem;
}

.mt-pc-55 {
  margin-top: 3.4375rem;
}

.mt-pc-56 {
  margin-top: 3.5rem;
}

.mt-pc-57 {
  margin-top: 3.5625rem;
}

.mt-pc-58 {
  margin-top: 3.625rem;
}

.mt-pc-59 {
  margin-top: 3.6875rem;
}

.mt-pc-60 {
  margin-top: 3.75rem;
}

.mt-pc-61 {
  margin-top: 3.8125rem;
}

.mt-pc-62 {
  margin-top: 3.875rem;
}

.mt-pc-63 {
  margin-top: 3.9375rem;
}

.mt-pc-64 {
  margin-top: 4rem;
}

.mt-pc-65 {
  margin-top: 4.0625rem;
}

.mt-pc-66 {
  margin-top: 4.125rem;
}

.mt-pc-67 {
  margin-top: 4.1875rem;
}

.mt-pc-68 {
  margin-top: 4.25rem;
}

.mt-pc-69 {
  margin-top: 4.3125rem;
}

.mt-pc-70 {
  margin-top: 4.375rem;
}

.mt-pc-71 {
  margin-top: 4.4375rem;
}

.mt-pc-72 {
  margin-top: 4.5rem;
}

.mt-pc-73 {
  margin-top: 4.5625rem;
}

.mt-pc-74 {
  margin-top: 4.625rem;
}

.mt-pc-75 {
  margin-top: 4.6875rem;
}

.mt-pc-76 {
  margin-top: 4.75rem;
}

.mt-pc-77 {
  margin-top: 4.8125rem;
}

.mt-pc-78 {
  margin-top: 4.875rem;
}

.mt-pc-79 {
  margin-top: 4.9375rem;
}

.mt-pc-80 {
  margin-top: 5rem;
}

.mt-pc-81 {
  margin-top: 5.0625rem;
}

.mt-pc-82 {
  margin-top: 5.125rem;
}

.mt-pc-83 {
  margin-top: 5.1875rem;
}

.mt-pc-84 {
  margin-top: 5.25rem;
}

.mt-pc-85 {
  margin-top: 5.3125rem;
}

.mt-pc-86 {
  margin-top: 5.375rem;
}

.mt-pc-87 {
  margin-top: 5.4375rem;
}

.mt-pc-88 {
  margin-top: 5.5rem;
}

.mt-pc-89 {
  margin-top: 5.5625rem;
}

.mt-pc-90 {
  margin-top: 5.625rem;
}

.mt-pc-91 {
  margin-top: 5.6875rem;
}

.mt-pc-92 {
  margin-top: 5.75rem;
}

.mt-pc-93 {
  margin-top: 5.8125rem;
}

.mt-pc-94 {
  margin-top: 5.875rem;
}

.mt-pc-95 {
  margin-top: 5.9375rem;
}

.mt-pc-96 {
  margin-top: 6rem;
}

.mt-pc-97 {
  margin-top: 6.0625rem;
}

.mt-pc-98 {
  margin-top: 6.125rem;
}

.mt-pc-99 {
  margin-top: 6.1875rem;
}

.mt-pc-100 {
  margin-top: 6.25rem;
}

.mt-pc-101 {
  margin-top: 6.3125rem;
}

.mt-pc-102 {
  margin-top: 6.375rem;
}

.mt-pc-103 {
  margin-top: 6.4375rem;
}

.mt-pc-104 {
  margin-top: 6.5rem;
}

.mt-pc-105 {
  margin-top: 6.5625rem;
}

.mt-pc-106 {
  margin-top: 6.625rem;
}

.mt-pc-107 {
  margin-top: 6.6875rem;
}

.mt-pc-108 {
  margin-top: 6.75rem;
}

.mt-pc-109 {
  margin-top: 6.8125rem;
}

.mt-pc-110 {
  margin-top: 6.875rem;
}

.mt-pc-111 {
  margin-top: 6.9375rem;
}

.mt-pc-112 {
  margin-top: 7rem;
}

.mt-pc-113 {
  margin-top: 7.0625rem;
}

.mt-pc-114 {
  margin-top: 7.125rem;
}

.mt-pc-115 {
  margin-top: 7.1875rem;
}

.mt-pc-116 {
  margin-top: 7.25rem;
}

.mt-pc-117 {
  margin-top: 7.3125rem;
}

.mt-pc-118 {
  margin-top: 7.375rem;
}

.mt-pc-119 {
  margin-top: 7.4375rem;
}

.mt-pc-120 {
  margin-top: 7.5rem;
}

.mt-pc-121 {
  margin-top: 7.5625rem;
}

.mt-pc-122 {
  margin-top: 7.625rem;
}

.mt-pc-123 {
  margin-top: 7.6875rem;
}

.mt-pc-124 {
  margin-top: 7.75rem;
}

.mt-pc-125 {
  margin-top: 7.8125rem;
}

.mt-pc-126 {
  margin-top: 7.875rem;
}

.mt-pc-127 {
  margin-top: 7.9375rem;
}

.mt-pc-128 {
  margin-top: 8rem;
}

.mt-pc-129 {
  margin-top: 8.0625rem;
}

.mt-pc-130 {
  margin-top: 8.125rem;
}

.mt-pc-131 {
  margin-top: 8.1875rem;
}

.mt-pc-132 {
  margin-top: 8.25rem;
}

.mt-pc-133 {
  margin-top: 8.3125rem;
}

.mt-pc-134 {
  margin-top: 8.375rem;
}

.mt-pc-135 {
  margin-top: 8.4375rem;
}

.mt-pc-136 {
  margin-top: 8.5rem;
}

.mt-pc-137 {
  margin-top: 8.5625rem;
}

.mt-pc-138 {
  margin-top: 8.625rem;
}

.mt-pc-139 {
  margin-top: 8.6875rem;
}

.mt-pc-140 {
  margin-top: 8.75rem;
}

.mt-pc-141 {
  margin-top: 8.8125rem;
}

.mt-pc-142 {
  margin-top: 8.875rem;
}

.mt-pc-143 {
  margin-top: 8.9375rem;
}

.mt-pc-144 {
  margin-top: 9rem;
}

.mt-pc-145 {
  margin-top: 9.0625rem;
}

.mt-pc-146 {
  margin-top: 9.125rem;
}

.mt-pc-147 {
  margin-top: 9.1875rem;
}

.mt-pc-148 {
  margin-top: 9.25rem;
}

.mt-pc-149 {
  margin-top: 9.3125rem;
}

.mt-pc-150 {
  margin-top: 9.375rem;
}

.mt-pc-151 {
  margin-top: 9.4375rem;
}

.mt-pc-152 {
  margin-top: 9.5rem;
}

.mt-pc-153 {
  margin-top: 9.5625rem;
}

.mt-pc-154 {
  margin-top: 9.625rem;
}

.mt-pc-155 {
  margin-top: 9.6875rem;
}

.mt-pc-156 {
  margin-top: 9.75rem;
}

.mt-pc-157 {
  margin-top: 9.8125rem;
}

.mt-pc-158 {
  margin-top: 9.875rem;
}

.mt-pc-159 {
  margin-top: 9.9375rem;
}

.mt-pc-160 {
  margin-top: 10rem;
}

.mt-pc-161 {
  margin-top: 10.0625rem;
}

.mt-pc-162 {
  margin-top: 10.125rem;
}

.mt-pc-163 {
  margin-top: 10.1875rem;
}

.mt-pc-164 {
  margin-top: 10.25rem;
}

.mt-pc-165 {
  margin-top: 10.3125rem;
}

.mt-pc-166 {
  margin-top: 10.375rem;
}

.mt-pc-167 {
  margin-top: 10.4375rem;
}

.mt-pc-168 {
  margin-top: 10.5rem;
}

.mt-pc-169 {
  margin-top: 10.5625rem;
}

.mt-pc-170 {
  margin-top: 10.625rem;
}

.mt-pc-171 {
  margin-top: 10.6875rem;
}

.mt-pc-172 {
  margin-top: 10.75rem;
}

.mt-pc-173 {
  margin-top: 10.8125rem;
}

.mt-pc-174 {
  margin-top: 10.875rem;
}

.mt-pc-175 {
  margin-top: 10.9375rem;
}

.mt-pc-176 {
  margin-top: 11rem;
}

.mt-pc-177 {
  margin-top: 11.0625rem;
}

.mt-pc-178 {
  margin-top: 11.125rem;
}

.mt-pc-179 {
  margin-top: 11.1875rem;
}

.mt-pc-180 {
  margin-top: 11.25rem;
}

.mt-pc-181 {
  margin-top: 11.3125rem;
}

.mt-pc-182 {
  margin-top: 11.375rem;
}

.mt-pc-183 {
  margin-top: 11.4375rem;
}

.mt-pc-184 {
  margin-top: 11.5rem;
}

.mt-pc-185 {
  margin-top: 11.5625rem;
}

.mt-pc-186 {
  margin-top: 11.625rem;
}

.mt-pc-187 {
  margin-top: 11.6875rem;
}

.mt-pc-188 {
  margin-top: 11.75rem;
}

.mt-pc-189 {
  margin-top: 11.8125rem;
}

.mt-pc-190 {
  margin-top: 11.875rem;
}

.mt-pc-191 {
  margin-top: 11.9375rem;
}

.mt-pc-192 {
  margin-top: 12rem;
}

.mt-pc-193 {
  margin-top: 12.0625rem;
}

.mt-pc-194 {
  margin-top: 12.125rem;
}

.mt-pc-195 {
  margin-top: 12.1875rem;
}

.mt-pc-196 {
  margin-top: 12.25rem;
}

.mt-pc-197 {
  margin-top: 12.3125rem;
}

.mt-pc-198 {
  margin-top: 12.375rem;
}

.mt-pc-199 {
  margin-top: 12.4375rem;
}

.mt-pc-200 {
  margin-top: 12.5rem;
}

@media screen and (max-width: 768px) {
  .mt-sp-1 {
    margin-top: 0.0625rem;
  }
  .mt-sp-2 {
    margin-top: 0.125rem;
  }
  .mt-sp-3 {
    margin-top: 0.1875rem;
  }
  .mt-sp-4 {
    margin-top: 0.25rem;
  }
  .mt-sp-5 {
    margin-top: 0.3125rem;
  }
  .mt-sp-6 {
    margin-top: 0.375rem;
  }
  .mt-sp-7 {
    margin-top: 0.4375rem;
  }
  .mt-sp-8 {
    margin-top: 0.5rem;
  }
  .mt-sp-9 {
    margin-top: 0.5625rem;
  }
  .mt-sp-10 {
    margin-top: 0.625rem;
  }
  .mt-sp-11 {
    margin-top: 0.6875rem;
  }
  .mt-sp-12 {
    margin-top: 0.75rem;
  }
  .mt-sp-13 {
    margin-top: 0.8125rem;
  }
  .mt-sp-14 {
    margin-top: 0.875rem;
  }
  .mt-sp-15 {
    margin-top: 0.9375rem;
  }
  .mt-sp-16 {
    margin-top: 1rem;
  }
  .mt-sp-17 {
    margin-top: 1.0625rem;
  }
  .mt-sp-18 {
    margin-top: 1.125rem;
  }
  .mt-sp-19 {
    margin-top: 1.1875rem;
  }
  .mt-sp-20 {
    margin-top: 1.25rem;
  }
  .mt-sp-21 {
    margin-top: 1.3125rem;
  }
  .mt-sp-22 {
    margin-top: 1.375rem;
  }
  .mt-sp-23 {
    margin-top: 1.4375rem;
  }
  .mt-sp-24 {
    margin-top: 1.5rem;
  }
  .mt-sp-25 {
    margin-top: 1.5625rem;
  }
  .mt-sp-26 {
    margin-top: 1.625rem;
  }
  .mt-sp-27 {
    margin-top: 1.6875rem;
  }
  .mt-sp-28 {
    margin-top: 1.75rem;
  }
  .mt-sp-29 {
    margin-top: 1.8125rem;
  }
  .mt-sp-30 {
    margin-top: 1.875rem;
  }
  .mt-sp-31 {
    margin-top: 1.9375rem;
  }
  .mt-sp-32 {
    margin-top: 2rem;
  }
  .mt-sp-33 {
    margin-top: 2.0625rem;
  }
  .mt-sp-34 {
    margin-top: 2.125rem;
  }
  .mt-sp-35 {
    margin-top: 2.1875rem;
  }
  .mt-sp-36 {
    margin-top: 2.25rem;
  }
  .mt-sp-37 {
    margin-top: 2.3125rem;
  }
  .mt-sp-38 {
    margin-top: 2.375rem;
  }
  .mt-sp-39 {
    margin-top: 2.4375rem;
  }
  .mt-sp-40 {
    margin-top: 2.5rem;
  }
  .mt-sp-41 {
    margin-top: 2.5625rem;
  }
  .mt-sp-42 {
    margin-top: 2.625rem;
  }
  .mt-sp-43 {
    margin-top: 2.6875rem;
  }
  .mt-sp-44 {
    margin-top: 2.75rem;
  }
  .mt-sp-45 {
    margin-top: 2.8125rem;
  }
  .mt-sp-46 {
    margin-top: 2.875rem;
  }
  .mt-sp-47 {
    margin-top: 2.9375rem;
  }
  .mt-sp-48 {
    margin-top: 3rem;
  }
  .mt-sp-49 {
    margin-top: 3.0625rem;
  }
  .mt-sp-50 {
    margin-top: 3.125rem;
  }
  .mt-sp-51 {
    margin-top: 3.1875rem;
  }
  .mt-sp-52 {
    margin-top: 3.25rem;
  }
  .mt-sp-53 {
    margin-top: 3.3125rem;
  }
  .mt-sp-54 {
    margin-top: 3.375rem;
  }
  .mt-sp-55 {
    margin-top: 3.4375rem;
  }
  .mt-sp-56 {
    margin-top: 3.5rem;
  }
  .mt-sp-57 {
    margin-top: 3.5625rem;
  }
  .mt-sp-58 {
    margin-top: 3.625rem;
  }
  .mt-sp-59 {
    margin-top: 3.6875rem;
  }
  .mt-sp-60 {
    margin-top: 3.75rem;
  }
  .mt-sp-61 {
    margin-top: 3.8125rem;
  }
  .mt-sp-62 {
    margin-top: 3.875rem;
  }
  .mt-sp-63 {
    margin-top: 3.9375rem;
  }
  .mt-sp-64 {
    margin-top: 4rem;
  }
  .mt-sp-65 {
    margin-top: 4.0625rem;
  }
  .mt-sp-66 {
    margin-top: 4.125rem;
  }
  .mt-sp-67 {
    margin-top: 4.1875rem;
  }
  .mt-sp-68 {
    margin-top: 4.25rem;
  }
  .mt-sp-69 {
    margin-top: 4.3125rem;
  }
  .mt-sp-70 {
    margin-top: 4.375rem;
  }
  .mt-sp-71 {
    margin-top: 4.4375rem;
  }
  .mt-sp-72 {
    margin-top: 4.5rem;
  }
  .mt-sp-73 {
    margin-top: 4.5625rem;
  }
  .mt-sp-74 {
    margin-top: 4.625rem;
  }
  .mt-sp-75 {
    margin-top: 4.6875rem;
  }
  .mt-sp-76 {
    margin-top: 4.75rem;
  }
  .mt-sp-77 {
    margin-top: 4.8125rem;
  }
  .mt-sp-78 {
    margin-top: 4.875rem;
  }
  .mt-sp-79 {
    margin-top: 4.9375rem;
  }
  .mt-sp-80 {
    margin-top: 5rem;
  }
  .mt-sp-81 {
    margin-top: 5.0625rem;
  }
  .mt-sp-82 {
    margin-top: 5.125rem;
  }
  .mt-sp-83 {
    margin-top: 5.1875rem;
  }
  .mt-sp-84 {
    margin-top: 5.25rem;
  }
  .mt-sp-85 {
    margin-top: 5.3125rem;
  }
  .mt-sp-86 {
    margin-top: 5.375rem;
  }
  .mt-sp-87 {
    margin-top: 5.4375rem;
  }
  .mt-sp-88 {
    margin-top: 5.5rem;
  }
  .mt-sp-89 {
    margin-top: 5.5625rem;
  }
  .mt-sp-90 {
    margin-top: 5.625rem;
  }
  .mt-sp-91 {
    margin-top: 5.6875rem;
  }
  .mt-sp-92 {
    margin-top: 5.75rem;
  }
  .mt-sp-93 {
    margin-top: 5.8125rem;
  }
  .mt-sp-94 {
    margin-top: 5.875rem;
  }
  .mt-sp-95 {
    margin-top: 5.9375rem;
  }
  .mt-sp-96 {
    margin-top: 6rem;
  }
  .mt-sp-97 {
    margin-top: 6.0625rem;
  }
  .mt-sp-98 {
    margin-top: 6.125rem;
  }
  .mt-sp-99 {
    margin-top: 6.1875rem;
  }
  .mt-sp-100 {
    margin-top: 6.25rem;
  }
  .mt-sp-101 {
    margin-top: 6.3125rem;
  }
  .mt-sp-102 {
    margin-top: 6.375rem;
  }
  .mt-sp-103 {
    margin-top: 6.4375rem;
  }
  .mt-sp-104 {
    margin-top: 6.5rem;
  }
  .mt-sp-105 {
    margin-top: 6.5625rem;
  }
  .mt-sp-106 {
    margin-top: 6.625rem;
  }
  .mt-sp-107 {
    margin-top: 6.6875rem;
  }
  .mt-sp-108 {
    margin-top: 6.75rem;
  }
  .mt-sp-109 {
    margin-top: 6.8125rem;
  }
  .mt-sp-110 {
    margin-top: 6.875rem;
  }
  .mt-sp-111 {
    margin-top: 6.9375rem;
  }
  .mt-sp-112 {
    margin-top: 7rem;
  }
  .mt-sp-113 {
    margin-top: 7.0625rem;
  }
  .mt-sp-114 {
    margin-top: 7.125rem;
  }
  .mt-sp-115 {
    margin-top: 7.1875rem;
  }
  .mt-sp-116 {
    margin-top: 7.25rem;
  }
  .mt-sp-117 {
    margin-top: 7.3125rem;
  }
  .mt-sp-118 {
    margin-top: 7.375rem;
  }
  .mt-sp-119 {
    margin-top: 7.4375rem;
  }
  .mt-sp-120 {
    margin-top: 7.5rem;
  }
  .mt-sp-121 {
    margin-top: 7.5625rem;
  }
  .mt-sp-122 {
    margin-top: 7.625rem;
  }
  .mt-sp-123 {
    margin-top: 7.6875rem;
  }
  .mt-sp-124 {
    margin-top: 7.75rem;
  }
  .mt-sp-125 {
    margin-top: 7.8125rem;
  }
  .mt-sp-126 {
    margin-top: 7.875rem;
  }
  .mt-sp-127 {
    margin-top: 7.9375rem;
  }
  .mt-sp-128 {
    margin-top: 8rem;
  }
  .mt-sp-129 {
    margin-top: 8.0625rem;
  }
  .mt-sp-130 {
    margin-top: 8.125rem;
  }
  .mt-sp-131 {
    margin-top: 8.1875rem;
  }
  .mt-sp-132 {
    margin-top: 8.25rem;
  }
  .mt-sp-133 {
    margin-top: 8.3125rem;
  }
  .mt-sp-134 {
    margin-top: 8.375rem;
  }
  .mt-sp-135 {
    margin-top: 8.4375rem;
  }
  .mt-sp-136 {
    margin-top: 8.5rem;
  }
  .mt-sp-137 {
    margin-top: 8.5625rem;
  }
  .mt-sp-138 {
    margin-top: 8.625rem;
  }
  .mt-sp-139 {
    margin-top: 8.6875rem;
  }
  .mt-sp-140 {
    margin-top: 8.75rem;
  }
  .mt-sp-141 {
    margin-top: 8.8125rem;
  }
  .mt-sp-142 {
    margin-top: 8.875rem;
  }
  .mt-sp-143 {
    margin-top: 8.9375rem;
  }
  .mt-sp-144 {
    margin-top: 9rem;
  }
  .mt-sp-145 {
    margin-top: 9.0625rem;
  }
  .mt-sp-146 {
    margin-top: 9.125rem;
  }
  .mt-sp-147 {
    margin-top: 9.1875rem;
  }
  .mt-sp-148 {
    margin-top: 9.25rem;
  }
  .mt-sp-149 {
    margin-top: 9.3125rem;
  }
  .mt-sp-150 {
    margin-top: 9.375rem;
  }
  .mt-sp-151 {
    margin-top: 9.4375rem;
  }
  .mt-sp-152 {
    margin-top: 9.5rem;
  }
  .mt-sp-153 {
    margin-top: 9.5625rem;
  }
  .mt-sp-154 {
    margin-top: 9.625rem;
  }
  .mt-sp-155 {
    margin-top: 9.6875rem;
  }
  .mt-sp-156 {
    margin-top: 9.75rem;
  }
  .mt-sp-157 {
    margin-top: 9.8125rem;
  }
  .mt-sp-158 {
    margin-top: 9.875rem;
  }
  .mt-sp-159 {
    margin-top: 9.9375rem;
  }
  .mt-sp-160 {
    margin-top: 10rem;
  }
  .mt-sp-161 {
    margin-top: 10.0625rem;
  }
  .mt-sp-162 {
    margin-top: 10.125rem;
  }
  .mt-sp-163 {
    margin-top: 10.1875rem;
  }
  .mt-sp-164 {
    margin-top: 10.25rem;
  }
  .mt-sp-165 {
    margin-top: 10.3125rem;
  }
  .mt-sp-166 {
    margin-top: 10.375rem;
  }
  .mt-sp-167 {
    margin-top: 10.4375rem;
  }
  .mt-sp-168 {
    margin-top: 10.5rem;
  }
  .mt-sp-169 {
    margin-top: 10.5625rem;
  }
  .mt-sp-170 {
    margin-top: 10.625rem;
  }
  .mt-sp-171 {
    margin-top: 10.6875rem;
  }
  .mt-sp-172 {
    margin-top: 10.75rem;
  }
  .mt-sp-173 {
    margin-top: 10.8125rem;
  }
  .mt-sp-174 {
    margin-top: 10.875rem;
  }
  .mt-sp-175 {
    margin-top: 10.9375rem;
  }
  .mt-sp-176 {
    margin-top: 11rem;
  }
  .mt-sp-177 {
    margin-top: 11.0625rem;
  }
  .mt-sp-178 {
    margin-top: 11.125rem;
  }
  .mt-sp-179 {
    margin-top: 11.1875rem;
  }
  .mt-sp-180 {
    margin-top: 11.25rem;
  }
  .mt-sp-181 {
    margin-top: 11.3125rem;
  }
  .mt-sp-182 {
    margin-top: 11.375rem;
  }
  .mt-sp-183 {
    margin-top: 11.4375rem;
  }
  .mt-sp-184 {
    margin-top: 11.5rem;
  }
  .mt-sp-185 {
    margin-top: 11.5625rem;
  }
  .mt-sp-186 {
    margin-top: 11.625rem;
  }
  .mt-sp-187 {
    margin-top: 11.6875rem;
  }
  .mt-sp-188 {
    margin-top: 11.75rem;
  }
  .mt-sp-189 {
    margin-top: 11.8125rem;
  }
  .mt-sp-190 {
    margin-top: 11.875rem;
  }
  .mt-sp-191 {
    margin-top: 11.9375rem;
  }
  .mt-sp-192 {
    margin-top: 12rem;
  }
  .mt-sp-193 {
    margin-top: 12.0625rem;
  }
  .mt-sp-194 {
    margin-top: 12.125rem;
  }
  .mt-sp-195 {
    margin-top: 12.1875rem;
  }
  .mt-sp-196 {
    margin-top: 12.25rem;
  }
  .mt-sp-197 {
    margin-top: 12.3125rem;
  }
  .mt-sp-198 {
    margin-top: 12.375rem;
  }
  .mt-sp-199 {
    margin-top: 12.4375rem;
  }
  .mt-sp-200 {
    margin-top: 12.5rem;
  }
}
/* PC・SP共通用 */
.mt-1 {
  margin-top: 0.0625rem;
}

.mt-2 {
  margin-top: 0.125rem;
}

.mt-3 {
  margin-top: 0.1875rem;
}

.mt-4 {
  margin-top: 0.25rem;
}

.mt-5 {
  margin-top: 0.3125rem;
}

.mt-6 {
  margin-top: 0.375rem;
}

.mt-7 {
  margin-top: 0.4375rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-9 {
  margin-top: 0.5625rem;
}

.mt-10 {
  margin-top: 0.625rem;
}

.mt-11 {
  margin-top: 0.6875rem;
}

.mt-12 {
  margin-top: 0.75rem;
}

.mt-13 {
  margin-top: 0.8125rem;
}

.mt-14 {
  margin-top: 0.875rem;
}

.mt-15 {
  margin-top: 0.9375rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-17 {
  margin-top: 1.0625rem;
}

.mt-18 {
  margin-top: 1.125rem;
}

.mt-19 {
  margin-top: 1.1875rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mt-21 {
  margin-top: 1.3125rem;
}

.mt-22 {
  margin-top: 1.375rem;
}

.mt-23 {
  margin-top: 1.4375rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-25 {
  margin-top: 1.5625rem;
}

.mt-26 {
  margin-top: 1.625rem;
}

.mt-27 {
  margin-top: 1.6875rem;
}

.mt-28 {
  margin-top: 1.75rem;
}

.mt-29 {
  margin-top: 1.8125rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mt-31 {
  margin-top: 1.9375rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mt-33 {
  margin-top: 2.0625rem;
}

.mt-34 {
  margin-top: 2.125rem;
}

.mt-35 {
  margin-top: 2.1875rem;
}

.mt-36 {
  margin-top: 2.25rem;
}

.mt-37 {
  margin-top: 2.3125rem;
}

.mt-38 {
  margin-top: 2.375rem;
}

.mt-39 {
  margin-top: 2.4375rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-41 {
  margin-top: 2.5625rem;
}

.mt-42 {
  margin-top: 2.625rem;
}

.mt-43 {
  margin-top: 2.6875rem;
}

.mt-44 {
  margin-top: 2.75rem;
}

.mt-45 {
  margin-top: 2.8125rem;
}

.mt-46 {
  margin-top: 2.875rem;
}

.mt-47 {
  margin-top: 2.9375rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-49 {
  margin-top: 3.0625rem;
}

.mt-50 {
  margin-top: 3.125rem;
}

.mt-51 {
  margin-top: 3.1875rem;
}

.mt-52 {
  margin-top: 3.25rem;
}

.mt-53 {
  margin-top: 3.3125rem;
}

.mt-54 {
  margin-top: 3.375rem;
}

.mt-55 {
  margin-top: 3.4375rem;
}

.mt-56 {
  margin-top: 3.5rem;
}

.mt-57 {
  margin-top: 3.5625rem;
}

.mt-58 {
  margin-top: 3.625rem;
}

.mt-59 {
  margin-top: 3.6875rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.mt-61 {
  margin-top: 3.8125rem;
}

.mt-62 {
  margin-top: 3.875rem;
}

.mt-63 {
  margin-top: 3.9375rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mt-65 {
  margin-top: 4.0625rem;
}

.mt-66 {
  margin-top: 4.125rem;
}

.mt-67 {
  margin-top: 4.1875rem;
}

.mt-68 {
  margin-top: 4.25rem;
}

.mt-69 {
  margin-top: 4.3125rem;
}

.mt-70 {
  margin-top: 4.375rem;
}

.mt-71 {
  margin-top: 4.4375rem;
}

.mt-72 {
  margin-top: 4.5rem;
}

.mt-73 {
  margin-top: 4.5625rem;
}

.mt-74 {
  margin-top: 4.625rem;
}

.mt-75 {
  margin-top: 4.6875rem;
}

.mt-76 {
  margin-top: 4.75rem;
}

.mt-77 {
  margin-top: 4.8125rem;
}

.mt-78 {
  margin-top: 4.875rem;
}

.mt-79 {
  margin-top: 4.9375rem;
}

.mt-80 {
  margin-top: 5rem;
}

.mt-81 {
  margin-top: 5.0625rem;
}

.mt-82 {
  margin-top: 5.125rem;
}

.mt-83 {
  margin-top: 5.1875rem;
}

.mt-84 {
  margin-top: 5.25rem;
}

.mt-85 {
  margin-top: 5.3125rem;
}

.mt-86 {
  margin-top: 5.375rem;
}

.mt-87 {
  margin-top: 5.4375rem;
}

.mt-88 {
  margin-top: 5.5rem;
}

.mt-89 {
  margin-top: 5.5625rem;
}

.mt-90 {
  margin-top: 5.625rem;
}

.mt-91 {
  margin-top: 5.6875rem;
}

.mt-92 {
  margin-top: 5.75rem;
}

.mt-93 {
  margin-top: 5.8125rem;
}

.mt-94 {
  margin-top: 5.875rem;
}

.mt-95 {
  margin-top: 5.9375rem;
}

.mt-96 {
  margin-top: 6rem;
}

.mt-97 {
  margin-top: 6.0625rem;
}

.mt-98 {
  margin-top: 6.125rem;
}

.mt-99 {
  margin-top: 6.1875rem;
}

.mt-100 {
  margin-top: 6.25rem;
}

.mt-101 {
  margin-top: 6.3125rem;
}

.mt-102 {
  margin-top: 6.375rem;
}

.mt-103 {
  margin-top: 6.4375rem;
}

.mt-104 {
  margin-top: 6.5rem;
}

.mt-105 {
  margin-top: 6.5625rem;
}

.mt-106 {
  margin-top: 6.625rem;
}

.mt-107 {
  margin-top: 6.6875rem;
}

.mt-108 {
  margin-top: 6.75rem;
}

.mt-109 {
  margin-top: 6.8125rem;
}

.mt-110 {
  margin-top: 6.875rem;
}

.mt-111 {
  margin-top: 6.9375rem;
}

.mt-112 {
  margin-top: 7rem;
}

.mt-113 {
  margin-top: 7.0625rem;
}

.mt-114 {
  margin-top: 7.125rem;
}

.mt-115 {
  margin-top: 7.1875rem;
}

.mt-116 {
  margin-top: 7.25rem;
}

.mt-117 {
  margin-top: 7.3125rem;
}

.mt-118 {
  margin-top: 7.375rem;
}

.mt-119 {
  margin-top: 7.4375rem;
}

.mt-120 {
  margin-top: 7.5rem;
}

.mt-121 {
  margin-top: 7.5625rem;
}

.mt-122 {
  margin-top: 7.625rem;
}

.mt-123 {
  margin-top: 7.6875rem;
}

.mt-124 {
  margin-top: 7.75rem;
}

.mt-125 {
  margin-top: 7.8125rem;
}

.mt-126 {
  margin-top: 7.875rem;
}

.mt-127 {
  margin-top: 7.9375rem;
}

.mt-128 {
  margin-top: 8rem;
}

.mt-129 {
  margin-top: 8.0625rem;
}

.mt-130 {
  margin-top: 8.125rem;
}

.mt-131 {
  margin-top: 8.1875rem;
}

.mt-132 {
  margin-top: 8.25rem;
}

.mt-133 {
  margin-top: 8.3125rem;
}

.mt-134 {
  margin-top: 8.375rem;
}

.mt-135 {
  margin-top: 8.4375rem;
}

.mt-136 {
  margin-top: 8.5rem;
}

.mt-137 {
  margin-top: 8.5625rem;
}

.mt-138 {
  margin-top: 8.625rem;
}

.mt-139 {
  margin-top: 8.6875rem;
}

.mt-140 {
  margin-top: 8.75rem;
}

.mt-141 {
  margin-top: 8.8125rem;
}

.mt-142 {
  margin-top: 8.875rem;
}

.mt-143 {
  margin-top: 8.9375rem;
}

.mt-144 {
  margin-top: 9rem;
}

.mt-145 {
  margin-top: 9.0625rem;
}

.mt-146 {
  margin-top: 9.125rem;
}

.mt-147 {
  margin-top: 9.1875rem;
}

.mt-148 {
  margin-top: 9.25rem;
}

.mt-149 {
  margin-top: 9.3125rem;
}

.mt-150 {
  margin-top: 9.375rem;
}

.mt-151 {
  margin-top: 9.4375rem;
}

.mt-152 {
  margin-top: 9.5rem;
}

.mt-153 {
  margin-top: 9.5625rem;
}

.mt-154 {
  margin-top: 9.625rem;
}

.mt-155 {
  margin-top: 9.6875rem;
}

.mt-156 {
  margin-top: 9.75rem;
}

.mt-157 {
  margin-top: 9.8125rem;
}

.mt-158 {
  margin-top: 9.875rem;
}

.mt-159 {
  margin-top: 9.9375rem;
}

.mt-160 {
  margin-top: 10rem;
}

.mt-161 {
  margin-top: 10.0625rem;
}

.mt-162 {
  margin-top: 10.125rem;
}

.mt-163 {
  margin-top: 10.1875rem;
}

.mt-164 {
  margin-top: 10.25rem;
}

.mt-165 {
  margin-top: 10.3125rem;
}

.mt-166 {
  margin-top: 10.375rem;
}

.mt-167 {
  margin-top: 10.4375rem;
}

.mt-168 {
  margin-top: 10.5rem;
}

.mt-169 {
  margin-top: 10.5625rem;
}

.mt-170 {
  margin-top: 10.625rem;
}

.mt-171 {
  margin-top: 10.6875rem;
}

.mt-172 {
  margin-top: 10.75rem;
}

.mt-173 {
  margin-top: 10.8125rem;
}

.mt-174 {
  margin-top: 10.875rem;
}

.mt-175 {
  margin-top: 10.9375rem;
}

.mt-176 {
  margin-top: 11rem;
}

.mt-177 {
  margin-top: 11.0625rem;
}

.mt-178 {
  margin-top: 11.125rem;
}

.mt-179 {
  margin-top: 11.1875rem;
}

.mt-180 {
  margin-top: 11.25rem;
}

.mt-181 {
  margin-top: 11.3125rem;
}

.mt-182 {
  margin-top: 11.375rem;
}

.mt-183 {
  margin-top: 11.4375rem;
}

.mt-184 {
  margin-top: 11.5rem;
}

.mt-185 {
  margin-top: 11.5625rem;
}

.mt-186 {
  margin-top: 11.625rem;
}

.mt-187 {
  margin-top: 11.6875rem;
}

.mt-188 {
  margin-top: 11.75rem;
}

.mt-189 {
  margin-top: 11.8125rem;
}

.mt-190 {
  margin-top: 11.875rem;
}

.mt-191 {
  margin-top: 11.9375rem;
}

.mt-192 {
  margin-top: 12rem;
}

.mt-193 {
  margin-top: 12.0625rem;
}

.mt-194 {
  margin-top: 12.125rem;
}

.mt-195 {
  margin-top: 12.1875rem;
}

.mt-196 {
  margin-top: 12.25rem;
}

.mt-197 {
  margin-top: 12.3125rem;
}

.mt-198 {
  margin-top: 12.375rem;
}

.mt-199 {
  margin-top: 12.4375rem;
}

.mt-200 {
  margin-top: 12.5rem;
}

/* ---------- margin-topの設定 | ここまで ---------- */
/* ---------- スクリーンリーダー専用テキスト（視覚的に非表示） | ここから ---------- */
.sr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- スクリーンリーダーオンリー用の記述 | ここまで ---------- *//*# sourceMappingURL=style.css.map */