.relative {
  position: relative;
}

.table {
  display: table;
}

@font-face {
  font-family: 'icon';
  src: url("../font/icon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --color-white: #ffffff;
  --color-blue: #07026f;
  --color-light: #ddfd9a;
  --color-blue-rgb: 7, 2, 111;
  --color-light-rgb: 221, 253, 154;
  --color-glitch1-rgb: 241, 111, 111;
  --color-glitch2-rgb: 83, 252, 221;
  --box-padding: 8vw;
  --box-border-radius: 8px;
  --box-border-width: 1px;
}

html:has(body > .scrollbar_track) {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html:has(body > .scrollbar_track)::-webkit-scrollbar {
  display: none;
}

.scrollable {
  position: relative;
  height: 100%;
  overflow: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollable::-webkit-scrollbar {
  display: none;
}

.scrollbar_track {
  position: absolute;
  box-sizing: border-box;
  display: none;
  top: 0;
  right: 0;
  padding: 3px;
  height: 100%;
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity 200ms;
}

.scrollbar_track[data-active='true'] {
  display: block;
}

.scrollbar_track[data-visible='true'] {
  opacity: 1;
}

body > .scrollbar_track {
  position: fixed;
  z-index: 9999;
}

.scrollbar_thumb {
  position: relative;
  width: 6px;
  opacity: 0.5;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: opacity 200ms;
}

.scrollbar_thumb[data-dragging='true'] {
  opacity: 0.7;
}

.lightblur {
  --color: rgba(var(--color-light-rgb), 0.8);
  box-shadow: 0 0 1.06667vw 0.32vw var(--color), 0 0 1.06667vw 0.32vw var(--color) inset;
}

.vline {
  background: linear-gradient(180deg, #eb3898 0%, #f83600 50%, #facc22 100%);
}

.hline {
  background: linear-gradient(90deg, #eb3898 0%, #f83600 50%, #facc22 100%);
}

.glitch {
  position: relative;
}

.glitch img {
  position: relative;
  width: 100%;
  height: auto;
  transition: -webkit-filter 100ms;
  transition: filter 100ms;
  transition: filter 100ms, -webkit-filter 100ms;
  -webkit-filter: drop-shadow(var(--dx1) var(--dy1) 0 rgba(var(--color-glitch1-rgb), var(--a1))) drop-shadow(var(--dx2) var(--dy2) 0 rgba(var(--color-glitch2-rgb), var(--a2)));
  filter: drop-shadow(var(--dx1) var(--dy1) 0 rgba(var(--color-glitch1-rgb), var(--a1))) drop-shadow(var(--dx2) var(--dy2) 0 rgba(var(--color-glitch2-rgb), var(--a2)));
}

.glitch img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.beattext {
  position: relative;
}

.beattext .char {
  position: relative;
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(2, 2);
  transform: scale(2, 2);
}

.beattext + .clone {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.skewed {
  font-weight: 700;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  color: #fff;
  -webkit-transform: scale(0.8, 1) skew(0deg, -7.2deg);
  transform: scale(0.8, 1) skew(0deg, -7.2deg);
}

[lang='ja'] .skewed {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .skewed {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .skewed {
  font-family: 'Noto Sans SC', sans-serif;
}

.text-medium {
  font-size: 13.5px;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

[lang='ja'] .text-medium {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .text-medium {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .text-medium {
  font-family: 'Noto Sans SC', sans-serif;
}

.text-small {
  font-size: 10.5px;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

[lang='ja'] .text-small {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .text-small {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .text-small {
  font-family: 'Noto Sans SC', sans-serif;
}

.modal {
  display: none;
  position: relative;
  z-index: 100000;
}

html:has(body > .modal) {
  overflow: hidden;
}

body > .modal {
  display: block;
}

.modal_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #c4c4c4 url("../img/common/mesh.svg") center/6px auto repeat;
}

.modal_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 5px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal_wrapper::-webkit-scrollbar {
  display: none;
}

.modal_content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  opacity: 0;
}

.modal_frame {
  position: relative;
  box-sizing: border-box;
  border: solid 2px var(--color-light);
  border-radius: 7px;
  background: #000;
  overflow: hidden;
}

.modal_frame .youtube {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.modal_close {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: solid 2px var(--color-light);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}

.modal_close::after {
  font-family: 'icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e900';
  color: var(--color-light);
  font-size: 12px;
  text-shadow: 0 0 4px var(--color-light);
}

.global_footer {
  position: relative;
  padding: 0 30px;
  background: var(--color-blue);
  overflow: hidden;
}

.global_footer .dots {
  position: absolute;
  inset: 0;
}

.global_footer .dots canvas {
  width: 100%;
  height: 100%;
}

.global_footer .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 0 60px;
  max-width: 480px;
  margin: 0 auto;
}

.global_footer .sns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.global_footer .sns a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.global_footer .sns a::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--color-blue);
  border-radius: 50%;
  overflow: hidden;
}

.global_footer .sns img {
  position: relative;
  width: 100%;
  transition: opacity 200ms;
}

.global_footer .languages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 15px;
}

.global_footer .languages a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 40px;
  border: solid 2px var(--color-light);
  background: transparent;
  transition: color 400ms, background 400ms;
  color: var(--color-light);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
}

.global_footer .languages .ja {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='ja'] .global_footer .languages .ja {
  pointer-events: none;
  color: var(--color-blue);
  background: var(--color-light);
}

.global_footer .languages .tc {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-TW'] .global_footer .languages .tc {
  pointer-events: none;
  color: var(--color-blue);
  background: var(--color-light);
}

.global_footer .languages .sc {
  font-family: 'Noto Sans SC', sans-serif;
}

[lang='zh-CN'] .global_footer .languages .sc {
  pointer-events: none;
  color: var(--color-blue);
  background: var(--color-light);
}

.global_footer .links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.global_footer .links a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 100%;
  height: 40px;
  border: solid 2px var(--color-light);
  transition: color 400ms, background 400ms, opacity 200ms;
  color: var(--color-light);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.05em;
}

[lang='ja'] .global_footer .links a {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .global_footer .links a {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .global_footer .links a {
  font-family: 'Noto Sans SC', sans-serif;
}

.global_footer .links a::after {
  font-family: 'icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e901';
  font-size: 8px;
  position: absolute;
  right: 15px;
  margin-top: 1px;
}

.global_footer .bar {
  width: 100%;
  height: 2px;
}

.global_footer .logo {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 15px;
  grid-template-columns: 151fr 287fr 128fr;
}

.global_footer .logo a {
  display: flex;
  align-items: center;
}

.global_footer .logo img {
  width: 100%;
  height: auto;
}

.global_footer .copyright {
  font-size: 10px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
  word-break: keep-all;
  margin: -5px 0;
}

[lang='ja'] .global_footer .copyright {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .global_footer .copyright {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .global_footer .copyright {
  font-family: 'Noto Sans SC', sans-serif;
}

.global_footer .develop {
  font-size: 10px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
  word-break: keep-all;
  margin: -5px 0;
}

[lang='ja'] .global_footer .develop {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang='zh-TW'] .global_footer .develop {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang='zh-CN'] .global_footer .develop {
  font-family: 'Noto Sans SC', sans-serif;
}

.global_footer .sns,
.global_footer .languages,
.global_footer .links,
.global_footer .bar,
.global_footer .logo,
.global_footer .copyright,
.global_footer .develop {
  opacity: 0;
  -webkit-transform: translate3d(0, 80px, 0);
  transform: translate3d(0, 80px, 0);
}

.global_footer .bar {
  width: 0%;
}

.global_footer[data-visible='true'] .sns {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
}

.global_footer[data-visible='true'] .languages {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 50ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 50ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 50ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 50ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 50ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 50ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 50ms;
}

.global_footer[data-visible='true'] .links {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 100ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 100ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 100ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.global_footer[data-visible='true'] .bar {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  width: 100%;
  transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1) 150ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
  transition: transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms, width 500ms cubic-bezier(0.77, 0, 0.175, 1) 150ms;
  transition: transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms, width 500ms cubic-bezier(0.77, 0, 0.175, 1) 150ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms;
}

.global_footer[data-visible='true'] .logo {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 200ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 200ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 200ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms;
}

.global_footer[data-visible='true'] .copyright {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 250ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 250ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 250ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms;
}

.global_footer[data-visible='true'] .develop {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 300ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 300ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
  transition: opacity 750ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 300ms, transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms, -webkit-transform 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
}

.pagetop {
  position: fixed;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border: solid 2px var(--color-light);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 100;
  transition: background 200ms, -webkit-transform 200ms;
  transition: background 200ms, transform 200ms;
  transition: background 200ms, transform 200ms, -webkit-transform 200ms;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.pagetop[data-visible='true'] {
  -webkit-transform: none;
  transform: none;
}

.pagetop::after {
  font-family: 'icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e902';
  color: var(--color-light);
  font-size: 6px;
  text-shadow: 0 0 8px var(--color-light);
  transition: color 200ms;
}

@media screen and (min-width: 540px) {
  :root {
    --box-padding: 40px;
    --box-border-radius: 10px;
  }

  .text-medium {
    font-size: 15px;
  }

  .text-small {
    font-size: 11.5px;
  }

  .modal_wrapper {
    padding: 64px 32px;
  }
}

@media screen and (min-width: 768px) {
  .text-medium {
    font-size: 16px;
  }

  .text-small {
    font-size: 12px;
  }

  .modal_wrapper {
    padding: 64px 64px;
  }

  .modal_frame {
    border-width: 3px;
    border-radius: 10px;
  }

  .modal_close {
    top: -48px;
    right: -48px;
    width: 48px;
    height: 48px;
    border-width: 3px;
  }

  .modal_close::after {
    font-size: 18px;
  }

  .global_footer .inner {
    gap: 60px;
    padding: 120px 0 96px;
    max-width: 1366px;
  }

  .global_footer .sns {
    gap: 30px;
  }

  .global_footer .sns a {
    width: 60px;
    height: 60px;
  }

  .global_footer .languages {
    grid-template-columns: repeat(3, 200px);
    gap: 30px;
  }

  .global_footer .languages a {
    height: 50px;
    font-size: 18px;
  }

  .global_footer .links {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .global_footer .links a::after {
    font-size: 15px;
    position: static;
    margin-top: 3px;
    margin-left: 10px;
  }

  .global_footer .links a {
    width: auto;
    height: auto;
    border: none;
    box-shadow: none;
    font-size: 15px;
    line-height: 35px;
    margin: -10px 0;
  }

  .global_footer .logo {
    display: flex;
    gap: 60px;
  }

  .global_footer .logo .logo1 {
    order: 2;
    width: 142px;
  }

  .global_footer .logo .logo2 {
    order: 1;
    width: 246px;
  }

  .global_footer .logo .logo3 {
    order: 3;
    width: 103px;
  }

  .global_footer .copyright {
    font-size: 13px;
    margin: -0.5em 0;
  }

  .global_footer .copyright .sp {
    display: none;
  }

  .global_footer .develop {
    font-size: 13px;
    margin: -0.5em 0;
  }

  .pagetop {
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-width: 4px;
  }

  .pagetop::after {
    font-size: 12px;
  }
}

@media screen and (hover: hover) and (min-width: 768px) {
  .global_footer .links a:hover {
    opacity: 0.7;
    color: var(--color-light) !important;
    background: none !important;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .global_footer .links a:hover {
    opacity: 0.7;
    color: var(--color-light) !important;
    background: none !important;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --box-padding: 50px;
    --box-border-radius: 12px;
    --box-border-width: 2px;
  }

  .lightblur {
    box-shadow: 0 0 8px 2.4px var(--color), 0 0 8px 2.4px var(--color) inset;
  }

  .text-medium {
    font-size: 17px;
  }

  .text-small {
    font-size: 12.5px;
  }

  .modal_background {
    background-size: 13px auto;
  }

  .modal_wrapper {
    padding: 72px 80px;
  }

  .modal_frame {
    border-width: 4px;
    border-radius: 15px;
  }

  .modal_close {
    top: -64px;
    right: -64px;
    width: 64px;
    height: 64px;
    border-width: 4px;
  }

  .modal_close::after {
    font-size: 24px;
  }
}

@media screen and (min-width: 1280px) {
  :root {
    --box-padding: 60px;
    --box-border-radius: 14px;
  }

  .text-medium {
    font-size: 18px;
  }

  .text-small {
    font-size: 13px;
  }
}

@media screen and (max-width: 374.8px) {
  .scrollbar_track {
    padding: 4px;
  }

  .scrollbar_thumb {
    width: 5px;
  }
}

@media (hover: hover) {
  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .global_footer .sns a:hover img {
    opacity: 0.5;
  }

  .global_footer .languages a:hover {
    color: var(--color-blue);
    background: var(--color-light);
  }

  .global_footer .languages:has(a:hover) a:not(:hover) {
    color: var(--color-light) !important;
    background: transparent !important;
  }

  .global_footer .links a:hover {
    color: var(--color-blue);
    background: var(--color-light);
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .global_footer .sns a:hover img {
    opacity: 0.5;
  }

  .global_footer .languages a:hover {
    color: var(--color-blue);
    background: var(--color-light);
  }

  .global_footer .links a:hover {
    color: var(--color-blue);
    background: var(--color-light);
  }
}