@charset "UTF-8";

.global_footer {
  position: relative;
  margin-top: calc(80px * var(--scale));
}

.global_footer .wrapper {
  width: 78.6666666667%;
  max-width: 700px;
  margin: 0 auto;
}

.global_footer .visual {
  width: 81.3559322034%;
  max-width: 360px;
  margin: 0 auto 40px;
}

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

.global_footer .sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.global_footer .sns a {
  display: block;
  justify-content: center;
  width: 39px;
}

.global_footer .languages {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}

.global_footer .languages .button {
  --height: 35px;
  width: 100%;
}

.global_footer .languages .button .button_body {
  padding: 0;
}

.global_footer .languages .button .button_text {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
}

.global_footer .outerlinks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}

.global_footer .outerlinks li {
  width: 100%;
}

.global_footer .outerlinks a {
  position: relative;
  height: 40px;
  padding-right: 15px;
  border-bottom: solid 2px var(--color-white);
}

.global_footer .outerlinks a .text {
  font-size: 12px;
  font-weight: 700;
}

.global_footer .outerlinks a .icon {
  position: absolute;
  right: 0;
  width: 15px;
  aspect-ratio: 1;
}

.global_footer .outerlinks a .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-shadow);
  border-radius: 50%;
  transform: translate3d(0, calc(6px * var(--scale)), 0);
}

.global_footer .outerlinks a .icon .icon_body {
  position: absolute;
  inset: 0;
  background: var(--color-purple);
  border-radius: 50%;
  transition: transform 200ms;
}

.global_footer .outerlinks a .icon .icon_body::before {
  content: var(--icon-outerlink);
  color: var(--color-white);
  font-size: 5.5px;
}

.global_footer .outerlinks a:active .icon_body {
  transform: translate3d(0, calc(4px * var(--scale) + 2px), 0) !important;
}

.global_footer .copyright {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 30px 0 60px;
}

.global_footer .copyright .trim {
  display: flex;
  flex-direction: column;
}

.global_footer .pagetop {
  position: absolute;
  right: calc(20px * var(--scale));
  bottom: calc(20px * var(--scale));
  width: calc(72px * var(--scale));
  height: calc(72px * var(--scale));
}

.global_footer .pagetop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-shadow);
  border-radius: 50%;
  transform: translate3d(0, calc(6px * var(--scale)), 0);
}

.global_footer .pagetop .mew {
  position: absolute;
  top: 6.9444444444%;
  left: -55.5555555556%;
  width: 88.8888888889%;
  height: auto;
  transform: translate3d(70%, 10%, 0);
  transform-origin: 50% 80%;
  opacity: 0;
  transition: transform 200ms, opacity 0ms 200ms;
}

.global_footer .pagetop .icon {
  position: absolute;
  inset: 0;
  background: var(--color-purple);
  border-radius: 50%;
  transition: transform 200ms;
}

.global_footer .pagetop .icon::after {
  content: var(--icon-up);
  color: var(--color-white);
  font-size: calc(30px * var(--scale));
  margin-top: -0.2em;
}

.global_footer .pagetop:active .icon {
  transform: translate3d(0, calc(6px * var(--scale) + 2px), 0) !important;
}

.global_footer .pagetop:active .mew {
  transform: rotate(-8deg) !important;
}

html:has(body > .scrollbar_track) {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.scrollable {
  overflow: auto;
  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: 5px;
  opacity: 0.5;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: opacity 200ms;
}

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

.button {
  position: relative;
  display: block;
  --height: 35px;
  --iconsize: 15px;
  --shadow-offset: 3px;
}

.button::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: var(--color-shadow);
  border-radius: 100px;
  transform: translate3d(0, var(--shadow-offset), 0);
  transition: opacity 200ms;
}

.button .button_body {
  position: relative;
  height: var(--height);
  background: var(--color-purple);
  border-radius: 100px;
  transition: transform 200ms;
  --padding: calc((var(--height) - var(--iconsize)) * 0.5);
  padding-left: calc(var(--padding) * 2);
  padding-right: calc(var(--padding) * 2 + var(--iconsize));
}

.button .button_text {
  color: var(--color-white);
  font-size: 12px;
}

.button .icon {
  position: absolute;
  top: 0;
  left: auto;
  right: calc((var(--height) - var(--iconsize)) * 0.5);
  bottom: 0;
  width: var(--iconsize);
  height: var(--iconsize);
  background: var(--color-white);
  border-radius: 50%;
  margin: auto;
}

.button .icon::after {
  font-size: 4px;
  color: var(--color-purple);
  line-height: 1;
  letter-spacing: 0;
}

.button .icon[data-icon=up]::after {
  content: var(--icon-up);
}

.button .icon[data-icon=down]::after {
  content: var(--icon-down);
  font-size: 8px;
}

.button .icon[data-icon=left]::after {
  content: var(--icon-left);
}

.button .icon[data-icon=right]::after {
  content: var(--icon-right);
}

.button .icon[data-icon=outerlink]::after {
  content: var(--icon-outerlink);
  font-size: 7px;
}

.button:active::before {
  opacity: 0;
}

.button:active .button_body {
  transform: translate3d(0, calc(var(--shadow-offset) + 2px), 0) !important;
}

.button[data-current=true] {
  pointer-events: none;
}

.button[data-current=true]::before {
  display: none;
}

.button[data-current=true] .button_body {
  background: var(--color-white);
}

.button[data-current=true] .button_text {
  color: var(--color-text);
}

.pager ol {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.pager ol li button,
.pager ol li a {
  display: block;
  color: var(--color-gray);
  pointer-events: auto;
  transition: color 100ms;
}

.pager ol li button[data-current=true],
.pager ol li a[data-current=true] {
  color: var(--color-purple) !important;
}

.pager ol li button::before,
.pager ol li a::before {
  content: var(--icon-pager);
  display: block;
  font-size: 20px;
}

.pager[data-color=white] li button,
.pager[data-color=white] li a {
  color: var(--color-white);
}

.modal {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
  overflow: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.modal .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  cursor: default;
}

.modal .modal-content {
  --border-width: 3px;
  --border-radius: 10px;
  --side-padding: 24px;
  position: relative;
  width: calc(100vw - var(--side-padding) * 2);
  max-width: 1120px;
  border: solid var(--border-width) var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: auto;
}

.modal .modal-content[data-animated=true]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/movie_thumbnail.webp") center/cover no-repeat;
}

.modal .modal-content .ytplayer {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.modal .modal-content .ytplayer iframe {
  width: 100%;
  height: 100%;
}

.modal .modal-close {
  position: fixed;
  top: calc(20px * var(--scale));
  right: calc(20px * var(--scale));
  width: calc(72px * var(--scale));
  height: calc(72px * var(--scale));
}

.modal .modal-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-shadow);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate3d(0, calc(6px * var(--scale)), 0);
  transition: opacity 200ms;
}

.modal .modal-close .icon {
  position: absolute;
  inset: 0;
  color: var(--color-white);
  background: var(--color-purple);
  border-radius: 50%;
  transition: transform 200ms;
}

.modal .modal-close .icon::before {
  content: var(--icon-close);
  font-size: calc(24px * var(--scale));
}

.modal .modal-close:active::before {
  opacity: 0;
}

.modal .modal-close:active .icon {
  transform: translate3d(0, calc(6px * var(--scale) + 2px), 0) !important;
}

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

html:has(body > .modal) body > .scrollbar_track {
  display: none !important;
}

body > .modal {
  display: flex !important;
}

#firstview {
  position: relative;
  width: 100%;
  height: calc(var(--unit) * 3);
  margin-bottom: calc(var(--unit) * -2);
}

#firstview .background {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #c1c5c3, #72797a);
  overflow: hidden;
}

#firstview .background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c7ced8, #9faab7);
  mix-blend-mode: soft-light;
}

#firstview .background .gradation {
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(0deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  mix-blend-mode: overlay;
}

#firstview .background .gizagiza {
  --offset: min(20vw, 100px);
  --step: min(10vw, 50px);
  --size: min(10vw, 48px);
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

#firstview .background .gizagiza div {
  position: absolute;
  left: 0;
  width: 100vmax;
  height: var(--size);
  background-size: auto 100%;
  background-position: 50% 100%;
  background-repeat: repeat-x;
  transform: rotate(45deg) translateX(-10vmax);
  transform-origin: 0 100%;
}

#firstview .background .gizagiza .giza1 {
  background-image: url("../img/top/giza1.svg");
  bottom: calc(var(--offset) + var(--step) * 2);
}

#firstview .background .gizagiza .giza2 {
  background-image: url("../img/top/giza2.svg");
  bottom: calc(var(--offset) + var(--step) * 1);
}

#firstview .background .gizagiza .giza3 {
  background-image: url("../img/top/giza3.svg");
  bottom: calc(var(--offset) + var(--step) * 0);
}

#firstview .background .gizagiza::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border: solid calc(var(--offset) * 0.5) #fff;
  border-top-color: transparent;
  border-right-color: transparent;
}

#firstview .content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 5.3333333333vw;
}

#firstview .content .grid {
  display: grid;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

#firstview .content .upper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#firstview .content .upper h1 {
  width: 64%;
  margin-left: 5px;
  margin-bottom: 20px;
}

#firstview .content .upper h1 img {
  width: 100%;
  height: auto;
}

#firstview .content .upper .button_text {
  font-weight: 700;
}

#firstview .content .visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1125/814;
  margin: 0 auto;
}

#firstview .content .visual .on,
#firstview .content .visual .off {
  width: 100%;
  height: auto;
}

#firstview .content .visual .on {
  filter: drop-shadow(calc(10px * var(--scale)) calc(20px * var(--scale)) calc(30px * var(--scale)) rgba(0, 0, 0, 0.45));
}

#firstview .content .visual .off {
  position: absolute;
  top: 0;
  left: 0;
}

#firstview .content .visual .note1,
#firstview .content .visual .note2,
#firstview .content .visual .note3 {
  position: absolute;
  aspect-ratio: 4/6;
  opacity: 0;
  filter: drop-shadow(0 0 calc(30px * var(--scale)) rgba(0, 0, 0, 0.45));
}

#firstview .content .visual .note1 img,
#firstview .content .visual .note2 img,
#firstview .content .visual .note3 img {
  width: 100%;
}

#firstview .content .visual .note1 {
  top: 1.4705882353%;
  left: 8.6666666667%;
  width: 4.1333333333%;
  transform: translate3d(50%, 50%, 0);
}

#firstview .content .visual .note2 {
  top: 95.2205882353%;
  left: 31.4666666667%;
  width: 3.4666666667%;
  transform: translate3d(50%, -100%, 0);
}

#firstview .content .visual .note3 {
  top: 63.0514705882%;
  left: 93.4666666667%;
  width: 5.4666666667%;
  transform: rotate(15deg);
  transform: translate3d(-100%, -10%, 0);
}

#firstview .content .visual[data-on=true] .off {
  opacity: 0;
  transition: opacity 500ms;
}

#firstview .content .visual[data-on=true] .note1,
#firstview .content .visual[data-on=true] .note2,
#firstview .content .visual[data-on=true] .note3 {
  opacity: 1;
  transition: opacity 500ms ease 100ms, transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

#firstview .content .visual[data-on=true] .note1 {
  transform: rotate(-15deg);
}

#firstview .content .visual[data-on=true] .note2 {
  transform: rotate(0);
}

#firstview .content .visual[data-on=true] .note3 {
  transform: rotate(15deg);
}

#firstview .bottom {
  position: fixed;
  width: 100%;
  bottom: 0;
  pointer-events: none;
}

#firstview .bottom .grid {
  display: grid;
  justify-content: center;
}

#firstview .bottom .scroll {
  position: relative;
  width: calc(32px * var(--scale));
  margin-bottom: 30px;
  transition: transform 500ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5px * var(--scale));
}

#firstview .bottom .scroll::before {
  content: "";
  width: calc(22px * var(--scale));
  aspect-ratio: 22/26;
  background: url("../img/common/srcoll_cartridge.webp") 0 0/100% 100% no-repeat;
  animation: scroll 2s ease infinite;
}

#firstview .bottom .scroll::after {
  content: "";
  position: relative;
  width: calc(32px * var(--scale));
  aspect-ratio: 32/49;
  background: url("../img/common/scroll_console.webp") 0 0/100% 100% no-repeat;
}

#firstview .bottom .scroll span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

#firstview .bottom .scroll span img {
  width: calc(13px * var(--scale));
  height: auto;
}

#firstview .bottom .scroll span::after {
  content: var(--icon-down);
  color: var(--color-blue);
  font-size: calc(13px * var(--scale));
  animation: swing 1s ease infinite;
}

#firstview .bottom .scroll {
  --delta: 51px;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  10% {
    opacity: 1;
  }

  33% {
    transform: translate3d(0, 0, 0);
  }

  66% {
    transform: translate3d(0, var(--delta), 0);
  }

  100% {
    transform: translate3d(0, var(--delta), 0);
  }
}

@keyframes swing {
  0% {
    transform: translate3d(0, 0, 0);
  }

  33% {
    transform: translate3d(0, 0, 0);
  }

  66% {
    transform: translate3d(0, 0.1em, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

#firstview .bottom[data-visible=false] .scroll {
  transition: transform 500ms ease-out;
  transform: translate3d(0, calc(100% + 30px), 0);
}

#about {
  position: relative;
  padding-top: calc(var(--unit) * 2);
  padding-bottom: calc(var(--unit) * 1);
  margin-bottom: calc(var(--unit) * -2);
  z-index: 1;
  pointer-events: none;
}

#about .background {
  --scale: 0;
  --opacity: 0;
  --slide: 0;
  position: absolute;
  inset: 0;
  opacity: calc(1 - var(--slide));
}

#about .background .sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#about .background .sticky > div {
  overflow: hidden;
}

#about .background .sticky > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: calc(0.8 * var(--opacity));
}

#about .background .sticky .left {
  transform: translate3d(calc(-100% * var(--slide)), 0, 0);
}

#about .background .sticky .right {
  transform: translate3d(calc(100% * var(--slide)), 0, 0);
}

#about .background .sticky img {
  width: calc(max(50vw, 100vh) + 4%);
  height: calc(max(50vw, 100vh) + 4%);
  will-change: transform;
  transform: scale(calc(0.2 + 0.8 * var(--scale)));
}

#about .content {
  --slow: 0;
  --opacity: 0;
  position: relative;
  box-sizing: content-box;
  height: calc(var(--unit) * 1.75);
  padding-bottom: 50vh;
  pointer-events: auto;
}

#about .content .sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  min-height: 100vh;
  padding: 100px 0;
  opacity: var(--opacity);
  transform: translate3d(0, calc(10vh * var(--slow)), 0);
}

#about .content h2 {
  color: #fff;
  font-size: min(45px, 8vw);
  font-style: italic;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

#about .content p {
  color: #fff;
  font-size: min(20px, 4vw);
  font-style: italic;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

#about .content p .larger {
  font-size: 140%;
}

[lang=ja] #about .content p .larger {
  margin: 0 0.15em;
}

[lang=zh-cmn-Hans] #about .content p .larger {
  margin: 0 0.15em;
}

[lang=zh-cmn-Hant] #about .content p .larger {
  margin: 0 0.15em;
}

#about .content p .large {
  font-size: 160%;
  font-weight: 800;
}

#movie {
  position: relative;
  padding-top: calc(var(--unit) * 0.5);
  padding-bottom: calc(var(--unit) * 1);
  margin-bottom: calc(var(--unit) * -1);
}

#movie .background {
  position: absolute;
  inset: 0;
}

#movie .background .sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--unit);
}

#movie .content {
  position: relative;
  box-sizing: border-box;
  min-height: var(--unit);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(var(--unit) * 0.6);
  padding-bottom: calc(var(--unit) * 0.5);
}

#movie .content .title_with_ball {
  color: #fff;
  margin-bottom: 32px;
}

#movie .content .title_with_ball .text {
  font-size: 48px;
}

#movie .content .frame {
  position: relative;
  width: 83.2%;
  max-width: 546px;
  aspect-ratio: 1114/1774;
}

#movie .content .frame .thumbnail {
  position: absolute;
  box-sizing: border-box;
  top: 13.190529876%;
  left: 22.9802513465%;
  width: 54.039497307%;
  height: 30.3833145434%;
  border-radius: calc(15px * var(--scale));
  border: solid calc(5px * var(--scale)) transparent;
  background: url("../img/top/movie_thumbnail.webp") center/cover no-repeat;
  overflow: hidden;
}

#movie .content .frame .thumbnail img {
  opacity: 0.8;
}

#movie .content .frame .thumbnail[data-visible=false] {
  opacity: 0;
}

#movie .content .frame .thumbnail .icon {
  width: 45px;
  aspect-ratio: 1;
  color: var(--color-purple);
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 calc(8px * var(--scale)) calc(50px * var(--scale)) rgba(0, 0, 0, 0.8);
  transition: transform 200ms, color 200ms, background-color 200ms;
}

#movie .content .frame .thumbnail .icon::after {
  content: var(--icon-right);
  font-size: 22px;
}

#movie .content .frame .thumbnail:active .icon {
  transform: translate3d(0, 3px, 0);
}

#movie .content .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/movie_frame.svg") 0 0/cover no-repeat;
  pointer-events: none;
}

#scenes {
  position: relative;
  height: calc(var(--unit) * 8.5);
  z-index: 10;
}

#scenes .wrapper {
  --slow: 0;
  position: relative;
  height: 100%;
  transform: translate3d(0, calc(10vh * var(--slow)), 0);
}

#scenes .scene {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--unit);
}

#scenes .scene .wrapper {
  position: absolute;
  inset: 0;
}

#scenes .pager {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#scenes .pager .sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
}

#scenes .pager ol {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: auto;
}

#scenes #scene2,
#scenes #scene3,
#scenes #scene4 {
  --seek: 0;
  margin-top: calc(var(--unit) * -0.5);
}

#scenes #scene2,
#scenes #scene3 {
  --slide: 0;
  --tri_w: 20px;
  --tri_h: 23px;
  --width: 90vw;
  --mask_x: calc(100vw - var(--slide) * (100vw + var(--width)));
}

#scenes #scene2 .wrapper,
#scenes #scene3 .wrapper {
  --left: calc((1 - var(--seek)) * 100%);
  clip-path: polygon(var(--left) 100%, var(--left) 0%, 100% 0%, 100% 100%);
}

#scenes #scene2 .mask,
#scenes #scene3 .mask {
  position: absolute;
  inset: 0;
  background: url("../img/common/pokemon_pattern.png") repeat;
  mask: url("../img/common/triangle_mask_l.svg") repeat-y, linear-gradient(#000 0 0) no-repeat, url("../img/common/triangle_mask_r.svg") repeat-y;
  mask-size: var(--tri_w) var(--tri_h), calc(var(--width) - var(--tri_w) * 2) 100%, var(--tri_w) var(--tri_h);
  mask-position: calc(var(--mask_x) + 0.5px) center, calc(var(--mask_x) + var(--tri_w)) 0, calc(var(--mask_x) + var(--width) - var(--tri_w) - 0.5px) center;
}

#scenes #scene4 {
  background: #fff;
  opacity: var(--seek);
}

#scenes #scene4 .flex {
  height: var(--unit);
}

#scenes #scene4 .text {
  font-size: calc(48px * var(--scale));
  font-weight: 700;
  line-height: 1.25;
  transform: translate3d(-50px, 0, 0);
}

#scenes #scene4 .text[data-visible=true] {
  transform: none;
  transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#scenes #scene4 .text .char {
  position: relative;
  overflow: hidden;
}

#scenes #scene4 .text .char::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
}

#scenes #scene4 .text .char[data-visible=true]::after {
  transform: translate3d(100%, 0, 0);
  transition: transform 400ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#scenes #scene4 .foregroud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--unit);
  max-width: 1440px;
  margin: auto;
  pointer-events: none;
}

#scenes #scene4 .foregroud .img1,
#scenes #scene4 .foregroud .img2 {
  position: absolute;
  border-radius: min(30px, 4vw);
  overflow: hidden;
}

#scenes #scene4 .foregroud .img1 {
  top: 33.3583208396%;
  right: 1.3333333333%;
  width: 48%;
  max-width: 360px;
  transform: translate3d(0, calc(-0.5px * var(--delta)), 0);
}

#scenes #scene4 .foregroud .img2 {
  top: 66.7166416792%;
  left: 1.3333333333%;
  width: 69.3333333333%;
  max-width: 520px;
  transform: translate3d(0, calc(-0.8px * var(--delta)), 0);
}

#scenes #scene4 .foregroud img {
  width: 100%;
  height: auto;
}

#features {
  position: relative;
}

#features .background {
  position: absolute;
  inset: 1px 0;
  clip-path: inset(0);
}

#features .background::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e4e0df url("../img/common/pokemon_pattern.png") repeat;
}

#features::before,
#features::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(40px * var(--scale));
  background: 0 0/auto 100% repeat-x;
  z-index: 1;
}

#features::before {
  top: 0;
  background-image: url("../img/common/triangle_down.svg");
  background-position: top center;
}

#features::after {
  bottom: 0;
  background-image: url("../img/common/triangle_up.svg");
  background-position: bottom center;
}

#features .line::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(13px * var(--scale));
  background-image: linear-gradient(to var(--to), var(--color-white) 0 calc(13px * var(--scale)), transparent calc(13px * var(--scale)) calc(16px * var(--scale)));
  background-size: calc(16px * var(--scale)) calc(13px * var(--scale));
  background-repeat: repeat-x;
  background-position: var(--from) bottom;
  -webkit-mask-image: linear-gradient(to var(--to), #000 0 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(to var(--to), #000 0 80%, transparent 100%);
  mask-repeat: no-repeat;
}

#features .content {
  position: relative;
}

#features .content img {
  width: 100%;
  height: auto;
}

#features .content .block1 {
  position: relative;
  width: 94.6666666667%;
  max-width: 740px;
  padding-top: 168px;
  margin: 0 auto;
}

#features .content .block1 .item1 {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 25.0666666667vw;
  margin-top: -21.4666666667%;
  transform: translate3d(0, calc(var(--delta) * -0.3px), 0);
}

#features .content .block1 .text1 {
  position: relative;
  text-align: center;
  opacity: var(--opacity);
}

#features .content .block1 .text1 img {
  width: 70.1333333333vw;
}

#features .content .block1 .text1 p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(6.4vw, 38px);
  font-style: italic;
  line-height: 1.25;
  white-space: pre;
  text-align: center;
}

#features .content .block2 {
  --seek1: 0;
  --seek2: 0;
  --seek3: 0;
  --opacity: 1;
  --delta: 0;
  position: relative;
  width: 94.6666666667%;
  max-width: 740px;
  margin: 0 auto;
  z-index: 1;
}

#features .content .block2 .item2 {
  position: absolute;
  top: 75vh;
  left: 2.6666666667vw;
  width: 25.0666666667vw;
  transform: translate3d(0, calc(var(--delta) * -0.5px), 0);
}

#features .content .block2 .grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 1.4084507042% 48.5915492958% 50.4225352113% 0;
  transform: translate3d(0, calc(30vh * (1 - var(--seek1))), 0px);
}

#features .content .block2 .left {
  grid-column: 2/3;
  height: var(--unit);
  height: calc(var(--unit) * 1.5);
}

#features .content .block2 .right {
  grid-column: 3/4;
  height: calc(var(--unit) * 3.5);
}

#features .content .block2 .sticky {
  position: sticky;
  top: 0;
  min-height: var(--unit);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
}

#features .content .block2 .text2 {
  opacity: calc(var(--seek1) - var(--seek2));
}

#features .content .block2 .text2 img {
  width: 90.7246376812%;
}

#features .content .block2 .text2 p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(5.0666666667vw, 38px);
  font-style: italic;
  line-height: 1.2631578947;
  white-space: pre;
  text-align: center;
}

#features .content .block2 .text2 .line {
  --from: left;
  --to: right;
  margin-top: 15px;
}

#features .content .block2 .console {
  position: relative;
  width: 100%;
  aspect-ratio: 363/599;
  transform: translate3d(calc(var(--seek2) * var(--delta) * -1px), 0, 0);
}

#features .content .block2 .console img {
  transform: scale(calc(1 - 0.6 * var(--seek3)));
  opacity: var(--opacity);
}

#features .content .block3 {
  --seek1: 0;
  position: relative;
  height: calc(var(--unit) * 1.75);
  min-height: calc(var(--unit) + 108px);
  margin-top: calc(var(--unit) * -1);
}

#features .content .block3 .sticky {
  position: sticky;
  top: 0;
  min-height: var(--unit);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
}

#features .content .block3 .item3 {
  position: absolute;
  top: 0;
  right: 21.4084507042%;
  width: 18.8732394366%;
  margin-top: -59.4366197183%;
  transform: translate3d(0, calc(var(--delta) * 0.5px), 0);
}

#features .content .block3 .item4 {
  position: absolute;
  top: 0;
  right: 0.1408450704%;
  width: 20%;
  margin-top: -49.4366197183%;
  transform: translate3d(0, calc(var(--delta) * 0.6px), 0);
}

#features .content .block3 .box {
  position: relative;
  width: 94.6666666667%;
  max-width: 740px;
  aspect-ratio: 740/465;
  margin: 0 auto;
  transform: translate3d(0, calc(var(--seek1) * 20%), 0);
}

#features .content .block3 .box::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("../img/top/feature_outline.svg") center/100% 100% no-repeat;
  filter: brightness(0) invert(1);
}

#features .content .block3 .box .inset {
  position: absolute;
  inset: 1.2903225806% 0;
  overflow: hidden;
}

#features .content .block3 .box .palm_sized {
  position: absolute;
  left: 11.4864864865%;
  bottom: 0;
  width: 80.4225352113%;
}

#features .content .block4 {
  width: 94.6666666667%;
  max-width: 740px;
  padding: 60px 0;
  margin: 0 auto;
}

#features .content .block4 .grid {
  display: grid;
  align-items: center;
  grid-template-columns: 5.7746478873% 44.0845070423% 0 50.1408450704%;
}

#features .content .block4 .grid[data-visible=true] .console {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#features .content .block4 .grid[data-visible=true] .console .size_arrow_h,
#features .content .block4 .grid[data-visible=true] .console .size_arrow_w,
#features .content .block4 .grid[data-visible=true] .console .size_arrow_d {
  opacity: 1;
  transform: none;
  transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 800ms, transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms;
}

#features .content .block4 .grid[data-visible=true] .console .size_text_h,
#features .content .block4 .grid[data-visible=true] .console .size_text_w,
#features .content .block4 .grid[data-visible=true] .console .size_text_d {
  opacity: 1;
  transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms;
}

#features .content .block4 .grid[data-visible=true] .text3 {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#features .content .block4 .console {
  position: relative;
  grid-column: 2/3;
  z-index: 1;
  opacity: 0;
  transform: translate3d(50px, 0, 0);
}

#features .content .block4 .console .size_arrow_h,
#features .content .block4 .console .size_arrow_w,
#features .content .block4 .console .size_arrow_d {
  position: absolute;
  opacity: 0;
  transform: scale(0);
}

#features .content .block4 .console .size_arrow_h {
  top: -3.7162162162%;
  left: -13.4185303514%;
  width: 59.7444089457%;
  height: 71.9594594595%;
}

#features .content .block4 .console .size_arrow_w {
  top: -8.7837837838%;
  left: 55.5910543131%;
  width: 47.2843450479%;
  height: 29.0540540541%;
}

#features .content .block4 .console .size_arrow_d {
  top: 90.2027027027%;
  left: 61.9808306709%;
  width: 8.3067092652%;
  height: 9.4594594595%;
}

#features .content .block4 .console .size_text_h,
#features .content .block4 .console .size_text_w,
#features .content .block4 .console .size_text_d {
  position: absolute;
  width: 6em;
  color: var(--color-violet);
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.25;
  opacity: 0;
}

#features .content .block4 .console .size_text_h {
  top: -6.4189189189%;
  left: -12.7795527157%;
}

#features .content .block4 .console .size_text_w {
  top: -10.472972973%;
  left: 78.9137380192%;
}

#features .content .block4 .console .size_text_d {
  top: 90.2027027027%;
  left: 73.482428115%;
}

[lang=zh-cmn-Hans] #features .content .block4 .console .size_text_d {
  top: 105%;
  left: 40%;
}

#features .content .block4 .text3 {
  position: relative;
  grid-column: 4/5;
  text-align: center;
  opacity: 0;
  transform: translate3d(-50px, 0, 0);
}

#features .content .block4 .text3 img {
  float: right;
  width: 102.808988764%;
}

#features .content .block4 .text3 p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(5.0666666667vw, 38px);
  font-style: italic;
  line-height: 1.2631578947;
  white-space: pre;
  text-align: center;
}

#features .content .block4 .text3 .line {
  --from: right;
  --to: left;
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 134.8314606742%;
}

#features .content .block5 {
  width: 86.9333333333%;
  max-width: 780px;
  padding-bottom: calc(136px * var(--scale));
  margin: 0 auto;
}

#features .content .block5 .grid {
  width: 100%;
  display: grid;
  gap: 30px 0;
  grid-template-columns: repeat(2, 44.6319018405%);
  justify-content: space-between;
}

#features .content .block5 .col1,
#features .content .block5 .col2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#features .content .block5 .col1[data-visible=true] .text4,
#features .content .block5 .col1[data-visible=true] .text5,
#features .content .block5 .col2[data-visible=true] .text4,
#features .content .block5 .col2[data-visible=true] .text5 {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#features .content .block5 .col1[data-visible=true] .cartridge,
#features .content .block5 .col2[data-visible=true] .cartridge {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 200ms, transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms;
}

#features .content .block5 .text4 {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

#features .content .block5 .text4 picture {
  display: flex;
  justify-content: center;
}

#features .content .block5 .text4 img {
  width: 129.2096219931%;
}

#features .content .block5 .text4 p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(3.7333333333vw, 28px);
  font-style: italic;
  line-height: 1.25;
  white-space: pre;
  text-align: center;
}

#features .content .block5 .text5 {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

#features .content .block5 .text5 picture {
  display: flex;
  justify-content: center;
}

#features .content .block5 .text5 img {
  width: 104.1237113402%;
}

#features .content .block5 .text5 p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(3.7333333333vw, 28px);
  font-style: italic;
  line-height: 1.25;
  white-space: pre;
  text-align: center;
}

#features .content .block5 .col2 {
  margin-top: 46.3917525773%;
}

#features .content .block5 .cartridge {
  position: relative;
  width: 100%;
  aspect-ratio: 291/350;
  background: url("../img/top/cartridge.svg") 0/100% no-repeat;
  margin-top: 10.3092783505%;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

#features .content .block5 .cartridge img {
  position: absolute;
}

#features .content .block5 .img5 {
  top: 19.4285714286%;
  left: 10.6529209622%;
  width: 79.7250859107%;
}

#features .content .block5 .img6 {
  top: 0%;
  left: -9.2783505155%;
  width: 69.0721649485%;
}

#features .content .block5 .img7 {
  top: 51.7142857143%;
  left: 36.0824742268%;
  width: 70.1030927835%;
}

#features .content .block5 .note {
  grid-column: 1/-1;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

#features .content .block5 .note p {
  color: var(--color-violet);
  font-weight: 700;
  font-size: min(3.2vw, 15px);
  font-style: italic;
  line-height: 1.25;
  white-space: pre;
  text-align: center;
}

#features .content .block5 .note p {
  white-space: normal;
}

#features .content .block5 .note[data-visible=true] {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#slide {
  padding: 25px 0;
  background: var(--color-white);
}

#slide .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#slide .splide {
  position: relative;
  overflow: hidden;
}

#slide .splide__track {
  position: relative;
  width: 78.6666666667vw;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

#slide .splide__list {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

#slide .splide__slide {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
}

#slide .splide__slide img {
  width: 100%;
  height: auto;
}

#slide .splide__sr {
  display: none !important;
}

#slide .prev,
#slide .next {
  position: relative;
  width: calc(72px * var(--scale));
  aspect-ratio: 1;
}

#slide .prev::before,
#slide .next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-gray);
  transform: translate3d(0, calc(6px * var(--scale)), 0);
}

#slide .prev .icon,
#slide .next .icon {
  position: absolute;
  inset: 0;
  background: var(--color-purple);
  border-radius: 50%;
  transition: transform 200ms;
}

#slide .prev .icon::after,
#slide .next .icon::after {
  display: block;
  color: var(--color-white);
  font-size: calc(32px * var(--scale));
}

#slide .prev:active .icon,
#slide .next:active .icon {
  transform: translate3d(0, calc(8px * var(--scale)), 0) !important;
}

#slide .prev div::after {
  content: var(--icon-left);
}

#slide .next div::after {
  content: var(--icon-right);
}

#slide .splide__track .prev,
#slide .splide__track .next {
  display: none;
}

#slide .splide__track .prev {
  left: -200px;
}

#slide .splide__track .next {
  right: -200px;
}

#slide .pager {
  gap: 65px;
}

.bottom_gradation {
  position: relative;
}

.bottom_gradation .background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c1c5c3, #72797a);
}

.bottom_gradation .background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c7ced8, #9faab7);
  mix-blend-mode: soft-light;
}

.bottom_gradation .background::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 670px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  mix-blend-mode: overlay;
}

#information {
  position: relative;
}

#information::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(40px * var(--scale));
  background: url("../img/common/triangle_down.svg") 0 0/auto 100% repeat-x;
}

#information .frame {
  width: 89.3333333333%;
  max-width: 1040px;
  background: #f0f2f2;
  margin: 0 auto;
  padding-top: calc(120px * var(--scale));
  padding-inline: 5.9701492537%;
  padding-bottom: calc(100px * var(--scale));
  border-radius: 0 0 30px 30px;
}

#information .title_with_ball {
  color: var(--color-violet);
  margin-bottom: 50px;
}

#information .title_with_ball .text {
  font-size: 19px;
  font-weight: 800;
}

#information .table {
  --pading-t: 15px;
  --pading-b: 15px;
  --dot-size: 2.5px;
  --gap-size: 4px;
  width: 100%;
  margin-top: calc(var(--pading-t) * -1);
  margin-bottom: 50px;
}

#information .table th,
#information .table td {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5333333333;
  padding: var(--pading-t) 0 var(--pading-b);
}

#information .table th::after,
#information .table td::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--dot-size);
  background-image: linear-gradient(to right, var(--color-shadow) 0 var(--dot-size), transparent var(--dot-size) var(--gap-size));
  background-size: var(--gap-size) var(--dot-size);
  background-repeat: repeat-x;
  background-position: left bottom;
}

#information .table th {
  width: 85px;
  text-align: left;
  vertical-align: top;
}

#information .table th::after {
  -webkit-mask-image: linear-gradient(to right, #000 0 60%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(to right, #000 0 60%, transparent 100%);
  mask-repeat: no-repeat;
}

#information .table .notes li {
  text-indent: -1em;
  padding-left: 1em;
}

#information .table .notes li::before {
  content: "※";
}

#information .table .spec1 dl:not(:last-child) {
  margin-bottom: 1em;
}

#information .table .spec1 dt::after {
  content: "：";
}

#information .table .spec2 dl {
  display: flex;
}

#information .table .spec2 dt::after {
  content: "：";
}

#information .shops-ja {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#information .shops-ja .shop {
  display: grid;
  align-items: flex-start;
  gap: 24px;
}

#information .shops-ja .shop_logo {
  position: relative;
  width: 77.9661016949%;
  margin: 0 auto;
}

#information .shops-ja .shop_logo a {
  position: relative;
  display: block;
  aspect-ratio: 460/260;
}

#information .shops-ja .shop_logo a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-shadow);
  border-radius: calc(10px * var(--scale));
  transform: translate3d(0, calc(6px * var(--scale)), 0);
  transition: opacity 200ms;
}

#information .shops-ja .shop_logo a .box {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: calc(10px * var(--scale));
  transition: transform 200ms;
}

#information .shops-ja .shop_logo a img {
  width: 88px;
}

#information .shops-ja .shop_logo a:active .box {
  transform: translate3d(0, calc(6px * var(--scale) + 2px), 0) !important;
}

#information .shops-ja .shop_logo a .icon {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  aspect-ratio: 1;
  background: var(--color-purple);
  border-radius: 50%;
}

#information .shops-ja .shop_logo a .icon::after {
  content: var(--icon-outerlink);
  color: var(--color-white);
  font-size: 7px;
}

#information .shops-ja .shop_data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

#information .shops-ja .entry_date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
  padding-left: 1em;
  border-left: solid 6px var(--color-purple);
}

#information .shops-ja .notes {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
}

#information .shops-ja .notes li {
  text-indent: -1em;
  padding-left: 1em;
}

#information .shops-ja .notes li > * {
  text-indent: 0;
}

#information .shops-ja .notes li.red {
  color: red;
}

#information .shops-ja .notes li::before {
  content: "※";
}

#information .shops-ja .notes a {
  display: inline-flex;
  align-items: center;
  border-bottom: solid 2px var(--color-purple);
  color: var(--color-purple);
}

#information .shops-ja .notes a .icon {
  width: 11px;
  height: 11px;
  background: var(--color-purple);
  border-radius: 50%;
}

#information .shops-ja .notes a .icon::after {
  content: var(--icon-outerlink);
  color: var(--color-white);
  font-size: 5px;
}

#information .shops-ja .button {
  width: 230px;
  align-self: center;
}

#information .shop-sc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#information .shop-sc img {
  width: 100%;
  max-width: 420px;
}

#information .shop-sc .note {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.075em;
  margin-top: 15px;
}

#information .shop-sc .note p {
  text-indent: -1em;
  padding-left: 1em;
}

#information .shop-sc .note a {
  border-bottom: solid 2px var(--color-purple);
  color: var(--color-purple);
  text-indent: 0;
  margin: 0 0.1em;
}

#information .shop-sc .note a .icon {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  background: var(--color-purple);
  border-radius: 50%;
  margin-bottom: 2px;
}

#information .shop-sc .note a .icon::after {
  content: var(--icon-outerlink);
  color: var(--color-white);
  font-size: 5px;
}

#information .shop-tc {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -50px;
}

#information .shop-tc img {
  width: 175px;
  margin: 0 auto;
}

#information .shop-tc .button {
  width: 230px;
  margin: 0 auto;
}

#information .shop-tc .note {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.075em;
  margin-top: 15px;
  text-indent: -1em;
  padding-left: 1em;
}

#information .shop-kr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#information .shop-kr img {
  width: 100%;
  max-width: 345px;
}

#information .shop-kr .button {
  width: 230px;
  margin-top: 15px;
}

:root {
  --unit: 100vh;
  --scale: 0.5;
}

.icon {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shadow {
  filter: drop-shadow(0 calc(8px * var(--scale)) calc(50px * var(--scale)) rgba(0, 0, 0, 0.45));
}

.title_with_ball {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--scale));
  letter-spacing: 0.05em;
  line-height: 1;
}

.title_with_ball .text {
  transform: skew(-12deg, 0deg);
}

.title_with_ball .icon::before {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--icon-pokeball);
  font-size: calc(20px * var(--scale));
}

.bracket-l {
  margin-left: -0.5em;
}

.bracket-r {
  margin-right: -0.5em;
}

@media screen and (min-width: 768px) {
  .global_footer .visual {
    margin-bottom: 50px;
  }

  .global_footer .sns {
    gap: 26px;
    margin-bottom: 52px;
  }

  .global_footer .sns a {
    width: 50px;
  }

  .global_footer .languages {
    grid-template-columns: repeat(4, 1fr);
  }

  .global_footer .languages .button {
    --height: 40px;
  }

  .global_footer .languages .button .button_text {
    font-size: 14px;
  }

  .global_footer .outerlinks li {
    width: calc(50% - 10px);
  }

  [lang=ja] .global_footer .outerlinks li {
    width: auto;
  }

  .global_footer .outerlinks {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
  }

  .global_footer .outerlinks a {
    height: 50px;
    padding-right: 30px;
    border-bottom-width: 3px;
  }

  .global_footer .outerlinks a .text {
    font-size: 14px;
  }

  .global_footer .outerlinks a .icon {
    width: 24px;
  }

  .global_footer .outerlinks a .icon .icon_body::before {
    font-size: 8px;
  }

  .global_footer .copyright {
    padding: 40px 0 80px;
  }

  .global_footer .copyright br {
    display: none;
  }

  .scrollbar_thumb {
    width: 6px;
  }

  .button {
    --height: 50px;
    --iconsize: 20px;
    --shadow-offset: 5px;
  }

  .button .button_body {
    padding-left: calc(var(--padding) * 1.5);
    padding-right: calc(var(--padding) * 1.5 + var(--iconsize));
  }

  .button .button_text {
    font-size: 15px;
  }

  .button .icon::after {
    font-size: 6px;
  }

  .button .icon[data-icon=down]::after {
    font-size: 10px;
  }

  .button .icon[data-icon=outerlink]::after {
    font-size: 10px;
  }

  .modal .modal-content {
    --border-width: 4px;
    --border-radius: 20px;
    --side-padding: 48px;
  }

  #firstview .background .gizagiza {
    --offset: 150px;
    --step: 72px;
    --size: 75px;
  }

  #firstview .content .upper h1 {
    margin-bottom: 30px;
  }

  #firstview .bottom .scroll {
    --delta: 73px;
  }

  #about .background .sticky img {
    transform: scale(calc(0.285 + 0.715 * var(--scale)));
  }

  #about .content h2 {
    font-size: 45px;
  }

  #about .content p {
    font-size: 15px;
    line-height: 45px;
  }

  #about .content p .larger {
    font-size: 24px;
  }

  #about .content p .large {
    font-size: 36px;
  }

  #about .content .sp_only {
    display: none;
  }

  #movie .content .frame .thumbnail .icon {
    width: 64px;
  }

  #movie .content .frame .thumbnail .icon::after {
    font-size: 28px;
  }

  #scenes #scene2,
  #scenes #scene3 {
    --tri_w: 40px;
    --tri_h: 47px;
    --width: 80vw;
  }

  #features .content .block1 {
    padding-top: 214px;
  }

  #features .content .block1 .item1 {
    left: 0px;
    right: auto;
    width: 188px;
    margin-top: -17.8666666667%;
  }

  #features .content .block1 .text1 img {
    width: 497px;
  }

  #features .content .block2 .item2 {
    top: 10vh;
    left: 20px;
    width: 186px;
  }

  #features .content .block2 .text2 .line {
    margin-top: 30px;
  }

  #features .content .block3 .item3 {
    width: 134px;
  }

  #features .content .block3 .item4 {
    width: 142px;
  }

  #features .content .block4 .console .size_text_h,
  #features .content .block4 .console .size_text_w,
  #features .content .block4 .console .size_text_d {
    font-size: 20px;
  }

  #features .content .block4 .console .size_text_h br,
  #features .content .block4 .console .size_text_w br,
  #features .content .block4 .console .size_text_d br {
    display: none;
  }

  #features .content .block4 .console .size_text_h {
    top: 20.6081081081%;
    left: -23.0031948882%;
  }

  #features .content .block4 .console .size_text_w {
    top: -4.7297297297%;
    left: 82.7476038339%;
  }

  #features .content .block4 .console .size_text_d {
    top: 91.2162162162%;
    left: 71.5654952077%;
  }

  [lang=zh-cmn-Hans] #features .content .block4 .console .size_text_d {
    top: 104%;
    left: 50%;
  }

  #slide {
    padding: 40px 0;
  }

  #slide .content {
    gap: 25px;
  }

  #information .frame {
    padding-inline: 60px;
    border-radius: 0 0 50px 50px;
  }

  #information .title_with_ball {
    margin-bottom: 64px;
  }

  #information .title_with_ball .text {
    font-size: 24px;
  }

  #information .table {
    --pading-t: 20px;
    --pading-b: 20px;
    --dot-size: 5px;
    --gap-size: 8px;
    margin-bottom: 75px;
  }

  #information .table th,
  #information .table td {
    font-size: 13px;
  }

  #information .table th {
    width: 25%;
  }

  #information .shops-ja {
    gap: 50px;
  }

  #information .shops-ja .shop {
    grid-template-columns: 210px 1fr;
    gap: 30px;
  }

  #information .shops-ja .shop_logo {
    width: 100%;
  }

  #information .shops-ja .shop_logo a img {
    width: 80px;
  }

  #information .shops-ja .shop_logo a .icon {
    width: 17px;
    height: 17px;
  }

  #information .shops-ja .shop_logo a .icon::after {
    font-size: 7px;
  }

  #information .shops-ja .shop_data {
    gap: 23px;
  }

  #information .shops-ja .entry_date {
    font-size: 17px;
  }

  #information .shops-ja .notes {
    font-size: 14px;
  }

  #information .shops-ja .notes a .icon {
    width: 17px;
    height: 17px;
  }

  #information .shops-ja .notes a .icon::after {
    font-size: 7px;
  }

  #information .shops-ja .button {
    width: 280px;
    align-self: flex-start;
  }

  #information .shop-sc .note {
    font-size: 15px;
    line-height: 1.5333333333;
    margin-top: 30px;
  }

  #information .shop-sc .note a .icon {
    width: 17px;
    height: 17px;
    margin-bottom: 4px;
  }

  #information .shop-sc .note a .icon::after {
    font-size: 7px;
  }

  #information .shop-tc {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  #information .shop-tc {
    margin-top: -64px;
  }

  #information .shop-tc img {
    width: 250px;
    margin: 0 -20px 0 auto;
  }

  #information .shop-tc .button {
    width: 290px;
    margin: 0;
  }

  #information .shop-tc .note {
    font-size: 15px;
    line-height: 1.5333333333;
    max-width: 22em;
    margin-top: 30px;
  }

  #information .shop-kr .button {
    width: 280px;
    margin-top: 30px;
  }

  :root {
    --scale: 0.75;
  }
}

@media screen and (min-width: 1024px) {
  .global_footer .visual {
    margin-bottom: 60px;
  }

  .global_footer .sns {
    gap: 32px;
    margin-bottom: 56px;
  }

  .global_footer .sns a {
    width: 58px;
  }

  .global_footer .languages .button .button_text {
    font-size: 15px;
  }

  [lang=ja] .global_footer .outerlinks li {
    width: calc(50% - 10px);
  }

  .global_footer .outerlinks {
    margin-bottom: 40px;
  }

  .global_footer .outerlinks a {
    height: 60px;
    padding-right: 30px;
    border-bottom-width: 4px;
  }

  .global_footer .outerlinks a .text {
    font-size: 15px;
  }

  .global_footer .outerlinks a .icon {
    width: 30px;
  }

  .global_footer .outerlinks a .icon .icon_body::before {
    font-size: 11px;
  }

  .global_footer .copyright {
    font-size: 15px;
    padding: 40px 0 80px;
  }

  .button {
    --height: 60px;
    --iconsize: 20px;
    --shadow-offset: 6px;
  }

  .pager ol {
    gap: 10px;
  }

  .modal .modal-content {
    --border-width: 6px;
    --border-radius: 30px;
    --side-padding: 60px;
  }

  #firstview .bottom .scroll {
    --delta: 97px;
  }

  #about .content h2 {
    font-size: 60px;
  }

  #about .content p {
    font-size: 20px;
    line-height: 60px;
  }

  #about .content p .larger {
    font-size: 32px;
  }

  #about .content p .large {
    font-size: 48px;
  }

  #movie .content .frame .thumbnail .icon {
    width: 90px;
  }

  #movie .content .frame .thumbnail .icon::after {
    font-size: 40px;
  }

  #scenes .pager ol {
    left: auto;
    right: 60px;
    bottom: 60px;
  }

  #features .sp_only {
    display: none;
  }

  #features .content .block1 .item1 {
    left: -175px;
    width: 188px;
    margin-top: -24px;
  }

  #features .content .block1 .text1 img {
    width: 497px;
  }

  #features .content .block1 .text1 p {
    font-size: 38px;
    line-height: 60px;
  }

  #features .content .block2 {
    width: 79.5138888889%;
    max-width: 1145px;
  }

  #features .content .block2 .item2 {
    top: 40vh;
    left: auto;
    right: 16px;
    width: 186px;
  }

  #features .content .block2 .grid {
    grid-template-columns: 0 391px 363px auto;
  }

  #features .content .block2 .text2 img {
    width: 89.2583120205%;
  }

  #features .content .block2 .text2 p {
    font-size: 38px;
    line-height: 48px;
  }

  #features .content .block2 .console img {
    transform: scale(calc(1 - 0.6 * var(--seek3)));
  }

  #features .content .block3 .item3 {
    margin-top: -178px;
    right: -133px;
    width: 134px;
  }

  #features .content .block3 .item4 {
    margin-top: -107px;
    right: -285px;
    width: 142px;
  }

  #features .content .block4 {
    width: 740px;
    padding: 76px 0;
  }

  #features .content .block4 .grid {
    grid-template-columns: 0 313px 62px auto;
  }

  [lang=zh-cmn-Hans] #features .content .block4 .console .size_text_d {
    top: 91.2162162162%;
    left: 71.5654952077%;
  }

  #features .content .block4 .text3 img {
    float: none;
    width: 355px;
  }

  #features .content .block4 .text3 p {
    font-size: 38px;
    line-height: 48px;
  }

  #features .content .block4 .text3 .line {
    width: 509px;
    bottom: -43px;
  }

  #features .content .block5 {
    width: 780px;
  }

  #features .content .block5 .grid {
    gap: 60px 0;
    grid-template-columns: repeat(2, 291px);
  }

  #features .content .block5 .text4 img {
    width: 146.3917525773%;
  }

  #features .content .block5 .text4 p {
    font-size: 28px;
    line-height: 35px;
  }

  #features .content .block5 .text5 img {
    width: 129.2096219931%;
  }

  #features .content .block5 .text5 p {
    font-size: 28px;
    line-height: 35px;
  }

  #features .content .block5 .col2 {
    margin-top: 0;
  }

  #features .content .block5 .img6 {
    top: 13.1428571429%;
    left: -24.3986254296%;
  }

  #features .content .block5 .img7 {
    top: 35.7142857143%;
    left: 52.2336769759%;
  }

  #features .content .block5 .note p {
    font-size: 15px;
    line-height: 24px;
  }

  #slide .splide__track .prev,
  #slide .splide__track .next {
    display: flex;
    position: absolute;
    top: calc(50% - 36px);
  }

  #slide .pager .prev,
  #slide .pager .next {
    display: none;
  }

  #information .frame {
    padding-inline: 80px;
    border-radius: 0 0 70px 70px;
  }

  #information .title_with_ball {
    margin-bottom: 80px;
  }

  #information .title_with_ball .text {
    font-size: 32px;
  }

  #information .table {
    --pading-t: 20px;
    --pading-b: 20px;
    --dot-size: 5px;
    --gap-size: 8px;
    margin-bottom: 80px;
  }

  #information .table th,
  #information .table td {
    font-size: 15px;
  }

  #information .table th {
    width: 36.3636363636%;
  }

  #information .table th::after {
    -webkit-mask-image: linear-gradient(to right, #000 0 80%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0 80%, transparent 100%);
  }

  #information .shops-ja {
    gap: 60px;
  }

  #information .shops-ja .shop {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  #information .shops-ja .shop_logo a img {
    width: 106px;
  }

  #information .shops-ja .shop_data {
    gap: 32px;
  }

  #information .shops-ja .entry_date {
    font-size: 20px;
  }

  #information .shops-ja .notes {
    font-size: 15px;
  }

  #information .shop-tc {
    margin-top: -80px;
  }

  #information .shop-tc img {
    width: 350px;
  }

  :root {
    --scale: 1;
  }
}

@media screen and (min-width: 1280px) {
  #scenes #scene4 .foregroud .img1 {
    top: 24.6913580247%;
    right: 160px;
  }

  #scenes #scene4 .foregroud .img2 {
    top: 69.7530864198%;
    left: 116px;
  }
}

@media screen and (min-width: 1440px) {
  #features .content .block2 .grid {
    grid-template-columns: 0 391px 363px 391px;
  }

  #features .content .block2 .right {
    height: calc(var(--unit) * 2.5);
  }
}

@media (hover: hover) {
  .global_footer .outerlinks a:hover .icon_body {
    transform: translate3d(0, calc(4px * var(--scale)), 0);
  }

  .global_footer .pagetop:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  .global_footer .pagetop:hover .mew {
    opacity: 1;
    transform: none;
    transition: transform 200ms, opacity 0ms;
  }

  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .button:hover::before {
    opacity: 0;
  }

  .button:hover .button_body {
    transform: translate3d(0, var(--shadow-offset), 0);
  }

  .modal .modal-close:hover::before {
    opacity: 0;
  }

  .modal .modal-close:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  #movie .content .frame .thumbnail .icon:hover {
    color: var(--color-white);
    background: var(--color-purple);
  }

  #slide .prev:hover .icon,
  #slide .next:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  #information .shops-ja .shop_logo a:hover::before {
    opacity: 0;
  }

  #information .shops-ja .shop_logo a:hover .box {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .global_footer .outerlinks a:hover .icon_body {
    transform: translate3d(0, calc(4px * var(--scale)), 0);
  }

  .global_footer .pagetop:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  .global_footer .pagetop:hover .mew {
    opacity: 1;
    transform: none;
    transition: transform 200ms, opacity 0ms;
  }

  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .button:hover::before {
    opacity: 0;
  }

  .button:hover .button_body {
    transform: translate3d(0, var(--shadow-offset), 0);
  }

  .modal .modal-close:hover::before {
    opacity: 0;
  }

  .modal .modal-close:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  #movie .content .frame .thumbnail .icon:hover {
    color: var(--color-white);
    background: var(--color-purple);
  }

  #slide .prev:hover .icon,
  #slide .next:hover .icon {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }

  #information .shops-ja .shop_logo a:hover::before {
    opacity: 0;
  }

  #information .shops-ja .shop_logo a:hover .box {
    transform: translate3d(0, calc(6px * var(--scale)), 0);
  }
}

@media screen and (orientation: landscape) {
  #firstview .content {
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 140px;
  }

  #firstview .content .grid {
    gap: 0;
    grid-template-columns: 7.3611111111% 33.3333333333% 3.6111111111% 52.0833333333% 3.6111111111%;
    max-width: min(185.2941176471vh, 1600px);
    margin: 0 auto;
  }

  #firstview .content .upper {
    grid-column: 2/3;
    margin-top: 10px;
  }

  #firstview .content .upper h1 {
    width: 100%;
    margin-left: 0;
  }

  #firstview .content .visual {
    grid-column: 4/5;
    width: 100%;
    max-width: initial;
  }

  #firstview .bottom .grid {
    grid-template-columns: 7.3611111111% 33.3333333333% 3.6111111111% 52.0833333333% 3.6111111111%;
    max-width: min(185.2941176471vh, 1600px);
    margin: 0 auto;
  }

  #firstview .bottom .grid .cell {
    grid-column: 2/3;
    display: flex;
    justify-content: center;
  }

  #firstview .bottom .scroll {
    margin-bottom: -10px;
  }
}