@charset "UTF-8";

main {
  position: relative;
}

main > .background {
  --zoom: 0;
  --opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: calc(var(--opacity) - 0.4 * var(--zoom));
}

main > .background .fixed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(calc(1 + var(--zoom) * 0.2));
}

main > .background .fixed img {
  position: absolute;
  top: 38.2308845577%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 325.5813953488vw;
  max-width: 1831.3953488372px;
}

main > .background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0%, #000 20%, rgba(0, 0, 0, 0) 100%);
}

.page {
  --viewport: 375;
  --width: 355;
  --max-width: 540px;
  --side-margin: min((var(--width) - var(--viewport)) / var(--width) * 50%, calc((var(--max-width) - 100vw) * 0.5));
  display: grid;
  grid-template-columns: auto;
  width: calc(var(--width) / var(--viewport) * 100%);
  max-width: var(--max-width);
  margin: 0 auto;
}

.page > * {
  position: relative;
  grid-column: 1/-1;
}

.page > *.full {
  margin: 0 var(--side-margin);
}

.page .page-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 416px;
  color: var(--color-white);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.page .page-title .trim {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4lh;
}

.page .page-stripetext {
  margin-bottom: 40px;
}

.page .page-lead .page-lead-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 37px;
  width: 94.0729483283%;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.page .page-lead .exclamation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  aspect-ratio: 1;
}

.page .page-lead .exclamation::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-lightblue));
  transform: rotate(45deg);
}

.page .page-lead .exclamation::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: "\e905";
  position: relative;
  color: #fff;
  font-size: 53.5px;
}

.page .page-lead .text br {
  display: none;
}

.page .page-lead .text br.always {
  display: block;
}

.page .page-lead .attention {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
}

.page .page-lead .pc_only {
  display: none;
}

.animation-block {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0ms 300ms;
}

[data-visible=true] > .animation-block {
  opacity: 1;
  transform: none;
  transition: opacity 720ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 720ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.global_header {
  position: relative;
  z-index: 999;
}

.global_header .logos {
  position: absolute;
  top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.global_header .logos .logo-za {
  width: 22.8vw;
  max-width: 128.25px;
}

.global_header .logos .logo-mega {
  width: 23.3333333333vw;
  max-width: 131.25px;
}

.global_header #menu_opened {
  display: none;
}

.global_header .menu-open,
.global_header .menu-close {
  top: 9px;
  right: 9px;
}

.global_header .menu-open {
  position: fixed;
}

.global_header .menu-open .icon {
  font-size: 12px;
}

.global_header .menu-close {
  position: absolute;
}

.global_header .menu-close .icon {
  font-size: 11px;
}

.global_header .menu-panel {
  display: none;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 9999;
}

.global_header .menu-panel[data-visible=true] {
  display: block;
}

.global_header .menu-panel .scroll-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  overscroll-behavior: none;
  background: rgba(66, 60, 60, 0.85) url("../img/common/pattern_dot.svg") repeat;
  background-size: 8px;
}

.global_header .menu-panel nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 92%;
  min-height: 100%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 60px;
}

.global_header .menu-panel .logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.5px;
  margin-bottom: 67px;
}

.global_header .menu-panel .logo .logo-za {
  width: 23.6vw;
  max-width: 132.75px;
  margin-top: 5px;
}

.global_header .menu-panel .logo .logo-mega {
  width: 40.1333333333vw;
  max-width: 225.75px;
}

.global_header .menu-panel .links {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 15px;
  width: 85.5072463768%;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.global_header .menu-panel .language {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 15px;
}

.global_header .menu-panel .language a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  height: 35px;
  box-shadow: 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.global_header .menu-panel .language a::before {
  background: linear-gradient(90deg, var(--color-lightblue) 0%, var(--color-lightblue) 50%, #8e8ed8 68%, #c97bdf 90%, var(--color-purple) 100%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  transition: transform 400ms ease;
}

.global_header .menu-panel .language 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;
  position: relative;
  color: var(--color-white);
  font-size: 12px;
  transition: all 200ms;
}

.global_header .menu-panel .language a[hreflang=ja]::after {
  content: "\e900";
}

.global_header .menu-panel .language a[hreflang=zh-cmn-Hans]::after {
  content: "\e901";
}

.global_header .menu-panel .language a[hreflang=zh-cmn-Hant]::after {
  content: "\e902";
}

.global_header .menu-panel .language a[data-current=true] {
  pointer-events: none;
  box-shadow: none;
}

.global_header .menu-panel .language a[data-current=true]::before {
  background: var(--color-white);
}

.global_header .menu-panel .language a[data-current=true]::after {
  color: var(--color-text);
}

html:has(.menu-panel[data-visible=true]) {
  overflow: hidden;
}

html:has(.menu-panel[data-visible=true]) body > .scrollbar_track {
  display: none !important;
}

.global_footer {
  position: relative;
  background: #8b8b8b;
}

.global_footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0;
}

.global_footer .banner {
  width: 100%;
  max-width: 540px;
  background: url("../img/common/pattern_triangles.png") center/300px repeat;
  overflow: hidden;
  border: solid 2px var(--color-white);
  border-radius: 6px;
  margin-bottom: 40px;
  box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.3);
}

.global_footer .banner .box {
  transition: opacity 500ms;
}

.global_footer .banner .texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5718475073% 0;
  max-width: 409.2px;
  margin: 0 auto;
}

[lang=ja] .global_footer .banner .texts .text1 {
  width: 81.0850439883%;
  margin-bottom: 3.2258064516%;
}

[lang=zh-cmn-Hans] .global_footer .banner .texts .text1 {
  width: 69.5014662757%;
  margin-bottom: 3.2258064516%;
}

[lang=zh-cmn-Hant] .global_footer .banner .texts .text1 {
  width: 73.7536656891%;
  margin-bottom: 4.3988269795%;
}

[lang=ja] .global_footer .banner .texts .logo {
  width: 63.7829912023%;
  margin-bottom: 2.3460410557%;
}

[lang=zh-cmn-Hans] .global_footer .banner .texts .logo {
  width: 63.7829912023%;
  margin-bottom: 2.3460410557%;
}

[lang=zh-cmn-Hant] .global_footer .banner .texts .logo {
  width: 63.7829912023%;
  margin-bottom: 6.5982404692%;
}

[lang=ja] .global_footer .banner .texts .text2 {
  width: 40.7624633431%;
}

[lang=zh-cmn-Hans] .global_footer .banner .texts .text2 {
  width: 41.495601173%;
}

[lang=zh-cmn-Hant] .global_footer .banner .texts .text2 {
  width: 41.935483871%;
}

.global_footer .language {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 15px;
  margin-bottom: 40px;
}

.global_footer .language a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  height: 35px;
  box-shadow: 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.global_footer .language a::before {
  background: linear-gradient(90deg, var(--color-lightblue) 0%, var(--color-lightblue) 50%, #8e8ed8 68%, #c97bdf 90%, var(--color-purple) 100%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  transition: transform 400ms ease;
}

.global_footer .language 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;
  position: relative;
  color: var(--color-white);
  font-size: 12px;
  transition: all 200ms;
}

.global_footer .language a[hreflang=ja]::after {
  content: "\e900";
}

.global_footer .language a[hreflang=zh-cmn-Hans]::after {
  content: "\e901";
}

.global_footer .language a[hreflang=zh-cmn-Hant]::after {
  content: "\e902";
}

.global_footer .language a[data-current=true] {
  pointer-events: none;
  box-shadow: none;
}

.global_footer .language a[data-current=true]::before {
  background: var(--color-white);
}

.global_footer .language a[data-current=true]::after {
  color: var(--color-text);
}

.global_footer .official {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--color-white);
  margin-bottom: 40px;
  transition: opacity 0.3s;
}

.global_footer .official div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}

.global_footer .official .text {
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.global_footer .official .outerlink-icon {
  width: 15px;
  height: 10px;
  margin-left: 0;
}

.global_footer .official .outerlink-icon::before,
.global_footer .official .outerlink-icon::after {
  width: 11.5px;
  height: 6.5px;
}

.global_footer .copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  margin-block: calc((1em - 1lh) / 2);
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.global_footer .bottom {
  display: grid;
  grid-template-columns: 122px 1fr;
  background: #616161;
}

.global_footer .bottom .nintendo {
  display: block;
}

.global_footer .bottom .company {
  display: grid;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 20px;
}

.global_footer .bottom .company a {
  width: 209px;
  margin: auto;
}

[lang=zh-cmn-Hant] .global_footer .bottom a {
  pointer-events: none;
}

[lang=zh-cmn-Hans] .global_footer .bottom a {
  pointer-events: none;
}

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;
}

.diamond {
  --size: 36px;
  position: relative;
  width: var(--size);
  aspect-ratio: 1;
}

.diamond .back {
  position: absolute;
  inset: 0;
  margin: auto;
  border: solid 2px var(--color-white);
  border-radius: calc(var(--size) * 0.2);
  overflow: hidden;
  transform: rotate(45deg);
  box-shadow: 4px 4px rgba(0, 0, 0, 0.3);
}

.diamond .back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-lightblue) 50%, var(--color-lightblue) 100%);
  transform: translate3d(0%, 0%, 0);
  transition: transform 300ms;
}

.diamond .icon {
  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;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.arrow-button {
  --border-width: 2px;
  --border-radius: 8px;
  position: relative;
  display: flex;
  height: 59px;
  overflow: hidden;
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.3));
}

.arrow-button .arrow-button-back {
  position: absolute;
  inset: 1px;
  border-radius: var(--border-radius);
}

.arrow-button .arrow-button-back::before {
  content: "";
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  transition: transform 400ms ease;
}

.arrow-button .arrow-button-frame {
  position: absolute;
  top: 0;
  height: 100%;
  border-top: solid var(--border-width) var(--color-white);
  border-bottom: solid var(--border-width) var(--color-white);
}

.arrow-button .arrow-button-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.arrow-button .arrow-button-text::before,
.arrow-button .arrow-button-text::after {
  font-size: 12px;
  transition: transform 300ms;
}

.arrow-button[data-direction=right] .arrow-button-back {
  clip-path: polygon(0% 3px, 3px 0%, calc(100% - 31px) 0%, 100% calc(50% - 1px), 100% calc(50% + 1px), calc(100% - 31px) 100%, 3px 100%, 0% calc(100% - 3px));
}

.arrow-button[data-direction=right] .arrow-button-back::before {
  background: linear-gradient(90deg, var(--color-lightblue) 0%, var(--color-lightblue) 50%, #8e8ed8 68%, #c97bdf 90%, var(--color-purple) 100%);
  transform: translate3d(-50%, 0, 0);
}

.arrow-button[data-direction=right] .arrow-button-frame {
  left: 0;
  right: 35px;
  border-left: solid var(--border-width) var(--color-white);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.arrow-button[data-direction=right] .arrow-button-text::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;
  display: block;
  content: "\e904";
}

.arrow-button[data-direction=right]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  background: url("../img/common/button_frame_r@sp.png") top right/auto 100% no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.arrow-button[data-direction=left] .arrow-button-back {
  clip-path: polygon(100% 3px, calc(100% - 3px) 0%, 31px 0%, 0% calc(50% - 1px), 0% calc(50% + 1px), 31px 100%, calc(100% - 3px) 100%, 100% calc(100% - 3px));
}

.arrow-button[data-direction=left] .arrow-button-back::before {
  background: linear-gradient(90deg, var(--color-lightblue) 0%, var(--color-lightblue) 50%, #8e8ed8 68%, #c97bdf 90%, var(--color-purple) 100%);
  transform: translate3d(-50%, 0, 0);
}

.arrow-button[data-direction=left] .arrow-button-frame {
  right: 0;
  left: 35px;
  border-right: solid var(--border-width) var(--color-white);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.arrow-button[data-direction=left] .arrow-button-text::before {
  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;
  display: block;
  content: "\e904";
  transform: scale(-1, 1);
}

.arrow-button[data-direction=left]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 100%;
  background: url("../img/common/button_frame_l@sp.png") top right/auto 100% no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.button_eshop {
  --border-width: 2px;
  --border-radius: 8px;
  position: relative;
  border: solid var(--border-width) var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.3));
}

.button_eshop::before {
  content: "";
  background: linear-gradient(90deg, var(--color-lightblue) 0%, var(--color-lightblue) 50%, #8e8ed8 68%, #c97bdf 90%, var(--color-purple) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  transition: transform 400ms ease;
  transform: translate3d(-50%, 0, 0);
}

.button_eshop .text {
  position: relative;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.pagetop {
  --size: 36px;
  position: absolute;
  display: flex;
  height: 100%;
  top: 0;
  right: 10px;
  pointer-events: none;
  z-index: 100;
}

.pagetop a {
  display: block;
  position: sticky;
  bottom: 15px;
  margin-top: auto;
  margin-bottom: -17px;
  z-index: 100;
  pointer-events: auto;
  transform: translate3d(0, 100px, 0);
  transition: transform 400ms;
}

.pagetop a[data-visible=true] {
  transform: translate3d(0, 0px, 0);
}

.pagetop a .icon {
  font-size: 12px;
  margin-top: -0.2em;
  transition: transform 300ms;
}

.cardbox {
  position: relative;
}

.cardbox .cardbox-background {
  --padding: 30px;
  --rounded: 6px;
  position: absolute;
  inset: 0;
  margin: calc(-1 * var(--padding));
  border: solid var(--padding) transparent;
  border-radius: calc(var(--padding) + var(--rounded));
  mask: linear-gradient(#000 0 0) border-box, linear-gradient(#000 0 0) padding-box;
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-composite: subtract;
}

.cardbox .cardbox-background .cardbox-frame {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(2deg);
}

.cardbox .cardbox-background .cardbox-frame::before,
.cardbox .cardbox-background .cardbox-frame::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--rounded);
}

.cardbox .cardbox-background .cardbox-frame::before {
  inset: -4px;
  background: linear-gradient(90deg, #c0ff00 0%, #00ff47 33%, #2e83dc 66%, #ca41dd 100%);
  filter: blur(4px);
}

.cardbox .cardbox-background .cardbox-frame::after {
  inset: 0;
  background: #fff;
  opacity: 0.85;
}

.cardbox .cardbox-content {
  position: relative;
  overflow: hidden;
  background-color: rgba(66, 60, 60, 0.85);
  border-radius: 6px;
}

.cardbox .cardbox-content::before,
.cardbox .cardbox-content::after {
  content: "";
  position: absolute;
  width: 60px;
  aspect-ratio: 1;
}

.cardbox .cardbox-content::before {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(25, 95, 50) 0%, rgb(25, 95, 50) 15%, rgba(25, 95, 50, 0) 50%);
}

.cardbox .cardbox-content::after {
  right: 0;
  bottom: 0;
  background: linear-gradient(315deg, rgb(25, 95, 50) 0%, rgb(0, 68, 81) 15%, rgba(0, 68, 81, 0) 50%);
}

.cardbox .cardbox-inner {
  position: relative;
}

.cardbox[data-color=white] .cardbox-frame::after {
  background-color: rgba(66, 60, 60, 0.85);
}

.cardbox[data-color=white] .cardbox-content {
  background: #fff;
}

.cardbox[data-color=white] .cardbox-content::before,
.cardbox[data-color=white] .cardbox-content::after {
  display: none;
}

.colorbox {
  position: relative;
}

.colorbox:has(.colorbox-frame-l) {
  padding: 0 13px;
}

.colorbox .colorbox-wrapper {
  position: relative;
}

.colorbox .colorbox-frame-l,
.colorbox .colorbox-frame-r {
  --corner-w: 10px;
  --corner-h: 6px;
  --border-w: 5.4px;
  --border-pos: center;
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
}

.colorbox .colorbox-frame-l .blur,
.colorbox .colorbox-frame-l .color,
.colorbox .colorbox-frame-l .white,
.colorbox .colorbox-frame-r .blur,
.colorbox .colorbox-frame-r .color,
.colorbox .colorbox-frame-r .white {
  position: absolute;
  inset: 0;
}

.colorbox .colorbox-frame-l .white,
.colorbox .colorbox-frame-r .white {
  image-rendering: -webkit-optimize-contrast;
  background-repeat: no-repeat;
  background-position: top, var(--border-pos), bottom;
  background-image: var(--coner-top-image), linear-gradient(#fff 0 0), var(--coner-bottom-image);
  background-size: var(--corner-w) var(--corner-h), var(--border-w) calc(100% - 2 * var(--corner-h)), var(--corner-w) var(--corner-h);
}

.colorbox .colorbox-frame-l .color,
.colorbox .colorbox-frame-r .color {
  filter: blur(5px);
}

.colorbox .colorbox-frame-l .color::after,
.colorbox .colorbox-frame-r .color::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #c24bdd 0%, #2e83dc 33%, #00ff47 66%, #baff0e 100%);
  mask-repeat: no-repeat;
  mask-position: top, var(--border-pos), bottom;
  mask-image: var(--coner-top-image), linear-gradient(#fff 0 0), var(--coner-bottom-image);
  mask-size: var(--corner-w) var(--corner-h), var(--border-w) calc(100% - 2 * var(--corner-h)), var(--corner-w) var(--corner-h);
}

.colorbox .colorbox-frame-l .blur,
.colorbox .colorbox-frame-r .blur {
  inset: -5px 0px;
  opacity: 0.6;
  filter: blur(10px);
}

.colorbox .colorbox-frame-l .blur::after,
.colorbox .colorbox-frame-r .blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #c24bdd 0%, #2e83dc 33%, #00ff47 66%, #baff0e 100%);
}

.colorbox .colorbox-frame-l {
  --border-pos: center left;
  --coner-top-image: url("../img/common/corner_tl.svg");
  --coner-bottom-image: url("../img/common/corner_bl.svg");
  left: 0;
}

.colorbox .colorbox-frame-l .blur {
  margin-left: -7px;
}

.colorbox .colorbox-frame-l .blur::after {
  border-radius: 100px 0 0 100px;
}

.colorbox .colorbox-frame-r {
  --border-pos: center right;
  --coner-top-image: url("../img/common/corner_tr.svg");
  --coner-bottom-image: url("../img/common/corner_br.svg");
  right: 0;
}

.colorbox .colorbox-frame-r .blur {
  margin-right: -7px;
}

.colorbox .colorbox-frame-r .blur::after {
  border-radius: 0 100px 100px 0;
}

.colorbox .colorbox-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: rgba(66, 60, 60, 0.85);
  border-radius: 6px;
}

.colorbox .colorbox-background::before,
.colorbox .colorbox-background::after {
  content: "";
  position: absolute;
  width: 60px;
  aspect-ratio: 1;
}

.colorbox .colorbox-background::before {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(25, 95, 50) 0%, rgb(25, 95, 50) 15%, rgba(25, 95, 50, 0) 50%);
}

.colorbox .colorbox-background::after {
  right: 0;
  bottom: 0;
  background: linear-gradient(315deg, rgb(25, 95, 50) 0%, rgb(0, 68, 81) 15%, rgba(0, 68, 81, 0) 50%);
}

.colorbox .colorbox-content {
  position: relative;
}

.colorbox .colorbox-content::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: -7.5px 0;
  background: url("../img/common/pattern_dot.svg") center repeat;
  background-size: 8px;
}

.colorbox:has(.colorbox-frame-l) .colorbox-content::before {
  margin: -7.5px;
}

.colorbox .colorbox-inner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.icon-new {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 50%;
  width: 73px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: url("../img/common/new@sp.png") center/contain no-repeat;
}

.icon-new span {
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-left: 0.5em;
  margin-bottom: 0.2em;
}

.spacer {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-rows: 2px;
  grid-template-columns: 1fr auto 1fr;
  gap: 5px;
  width: 100%;
  margin: 80px auto;
}

.spacer .line {
  position: relative;
  width: 100%;
  height: 100%;
}

.spacer .line::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  border-radius: 100px;
}

.spacer .line:first-child::before {
  right: 0;
  background: linear-gradient(90deg, var(--color-lightblue), #927dc5);
}

.spacer .line:last-child::before {
  left: 0;
  background: linear-gradient(90deg, #9d7bc6, var(--color-purple));
}

.spacer .icon {
  width: 16px;
  aspect-ratio: 1;
  background: linear-gradient(0deg, var(--color-lightblue), var(--color-purple));
  mask-image: url("../img/common/pokeball.svg");
  mask-size: 100% 100%;
  transform: rotate(360deg);
}

.spacer[data-visible=true] .icon {
  transform: none;
  transition: transform 400ms cubic-bezier(0.77, 0, 0.175, 1);
}

.spacer[data-visible=true] .line::before {
  width: 100%;
  transition: width 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

.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 {
  width: calc(100vw - 48px);
  max-width: 1120px;
  margin: auto;
}

.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: 9px;
  right: 9px;
}

.modal .modal-close .icon {
  font-size: 17px;
}

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

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

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

.page-list {
  display: grid;
}

.page-list.cols-2-2-3 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}

.page-list.cols-2-2-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}

.page-list.cols-2-3-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}

.page-list .colorbox,
.page-list .colorbox-wrapper,
.page-list .colorbox-background,
.page-list .colorbox-content,
.page-list .colorbox-inner {
  height: 100%;
}

.page-list .colorbox .colorbox-background {
  transition: background-color 0.3s;
}

.page-list .colorbox .colorbox-background::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-lightblue) 0%, #8e8ed8 35%, #c97bdf 80%, var(--color-purple) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.page-list .colorbox .colorbox-background::after {
  display: none;
}

.page-list a,
.page-list button {
  display: block;
  height: 100%;
}

.stripetext {
  position: relative;
  margin-block: calc(0.5em - 0.5lh);
}

.stripetext .line-bg {
  position: absolute;
  margin-top: 1px;
}

.stripetext .line-bg::before {
  content: "";
  position: absolute;
  inset: 0px -13px;
  border-radius: 100px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 4px, rgba(255, 255, 255, 0.3) 4px, transparent 4px, transparent 7px) repeat-y;
  background-size: 100% 7px;
  background-position: top center;
}

.stripetext .text {
  position: relative;
  text-align: left;
  color: var(--color-white);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.6666;
  letter-spacing: 0.05em;
  padding: 0 13px;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.lineup {
  width: 93.9209726444%;
  margin: 0 auto;
}

.lineup .delivery {
  list-style-type: disc;
  padding-left: 1.5em;
}

.table {
  position: relative;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  display: grid;
  gap: 1em 0;
  grid-template-columns: auto auto;
}

.table dl {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  gap: 20px;
}

.table dt {
  text-align: right;
  margin-block: calc((1em - 1lh) / 2);
}

.table dd {
  text-align: left;
  margin-block: calc((1em - 1lh) / 2);
}

.table .note li {
  text-indent: -1em;
  padding-left: 1em;
}

.table::after {
  content: "";
  position: absolute;
  top: 0;
  grid-column: 2;
  width: 2px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-purple), var(--color-lightblue));
}

.table > .attentions {
  display: none;
}

.table + .attentions {
  margin-top: 30px;
}

.table + .attentions li {
  text-indent: -1em;
  padding-left: 1em;
}

.slidein > .slidein-content {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0ms 300ms;
}

.slidein[data-visible=true] > .slidein-content {
  opacity: 1;
  transform: none !important;
  transition: opacity 720ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 720ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slidein[data-dir=lr] > .slidein-content {
  transform: translate3d(-120px, 0, 0);
}

.slidein[data-dir=rl] > .slidein-content {
  transform: translate3d(120px, 0, 0);
}

.back2top {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.back2top .arrow-button {
  width: 297px;
}

.back2top .arrow-button .arrow-button-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  gap: 6px;
}

.back2top .arrow-button .arrow-button-text::before {
  font-size: 12px;
}

.outerlink-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 15px;
  margin-left: 7px;
}

.outerlink-icon::before,
.outerlink-icon::after {
  content: "";
  position: absolute;
  aspect-ratio: 16/9;
  width: 16px;
  border-radius: 1px;
  background: var(--color-white);
}

.outerlink-icon::before {
  top: 0;
  right: 0;
  opacity: 0.6;
}

.outerlink-icon::after {
  left: 0;
  bottom: 0;
}

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

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

.text-center {
  text-align: center;
}

.trim {
  margin-block: calc((1em - 1lh) / 2);
}

.text-s {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.text-m {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.text-l {
  color: var(--color-white);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.md_only {
  display: none;
}

.lg_only {
  display: none;
}

.common-colorbox-inner {
  width: 93.9209726444%;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.common-grid {
  --row-gap: 40px;
  --col-gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--row-gap) var(--col-gap);
}

.common-grid .cardbox {
  width: 100%;
}

.common-grid .cardbox .cardbox-background .cardbox-frame::after {
  background: rgba(66, 60, 60, 0.85);
}

.common-image {
  position: relative;
  display: block;
  aspect-ratio: 572/322;
}

.common-image img,
.common-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.notes > li {
  text-indent: -1em;
  padding-left: 1em;
}

.notes > li::before {
  content: "※";
}

@media screen and (min-width: 768px) {
  .page {
    --viewport: 768;
    --width: 640;
    --max-width: 999px;
  }

  .page .page-stripetext {
    margin-bottom: 60px;
  }

  .global_header .menu-open,
  .global_header .menu-close {
    top: 18px;
    right: 18px;
    --size: 48px;
  }

  .global_header .menu-open .icon {
    font-size: 17px;
  }

  .global_header .menu-close .icon {
    font-size: 16px;
  }

  .global_header .menu-panel .scroll-wrapper {
    background-size: 16px;
  }

  .global_header .menu-panel nav {
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 144px;
  }

  .global_header .menu-panel .links {
    grid-template-columns: repeat(2, minmax(0, 322px));
    width: auto;
    max-width: initial;
    gap: 40px 20px;
    margin-bottom: 100px;
  }

  .global_header .menu-panel .language {
    gap: 30px;
  }

  .global_header .menu-panel .language a {
    height: 42px;
    box-shadow: 4px 7px 0px rgba(0, 0, 0, 0.3);
  }

  .global_footer .inner {
    padding: 60px 0 40px;
  }

  .global_footer .banner {
    max-width: 570px;
    border-width: 3px;
    border-radius: 9px;
    background-size: 320px;
    box-shadow: 4px 7px 0px rgba(0, 0, 0, 0.3);
  }

  .global_footer .language {
    gap: 30px;
    margin-bottom: 48px;
  }

  .global_footer .language a {
    height: 42px;
    box-shadow: 4px 7px 0px rgba(0, 0, 0, 0.3);
  }

  .global_footer .official {
    margin-bottom: 20px;
  }

  .global_footer .official div {
    gap: 5px;
    padding-bottom: 9px;
  }

  .global_footer .official .outerlink-icon {
    width: 13px;
    height: 9px;
  }

  .global_footer .official .outerlink-icon::before,
  .global_footer .official .outerlink-icon::after {
    width: 10px;
    height: 6px;
  }

  .global_footer .copyright {
    text-align: center;
  }

  .global_footer .bottom {
    grid-template-columns: 133px 1fr 133px;
  }

  .global_footer .bottom .company a {
    width: 204px;
  }

  .scrollbar_thumb {
    width: 6px;
  }

  .arrow-button .arrow-button-text {
    gap: 10px;
  }

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

  .cardbox .cardbox-background {
    --rounded: 9px;
  }

  .cardbox .cardbox-content {
    border-radius: 9px;
  }

  .cardbox .cardbox-content::before,
  .cardbox .cardbox-content::after {
    width: 90px;
  }

  .colorbox:has(.colorbox-frame-l) {
    padding: 0 19.5px;
  }

  .colorbox .colorbox-frame-l,
  .colorbox .colorbox-frame-r {
    --corner-w: 15px;
    --corner-h: 9px;
    --border-w: 8px;
    width: 15px;
  }

  .colorbox .colorbox-frame-l .blur,
  .colorbox .colorbox-frame-r .blur {
    inset: -7px 0px;
    filter: blur(12px);
  }

  .colorbox .colorbox-background {
    border-radius: 9px;
  }

  .colorbox .colorbox-background::before,
  .colorbox .colorbox-background::after {
    width: 90px;
  }

  .colorbox .colorbox-content::before {
    margin: -11.25px 0;
    background-size: 12px;
  }

  .colorbox:has(.colorbox-frame-l) .colorbox-content::before {
    margin: -11.25px;
  }

  .colorbox .colorbox-inner {
    border-radius: 9px;
  }

  .icon-new {
    width: 87px;
    height: 27px;
    background: url("../img/common/new@1x.png") center/contain no-repeat;
  }

  .icon-new span {
    font-size: 14px;
  }

  .spacer {
    gap: 10px;
    grid-template-rows: 3px;
    margin: 100px auto;
  }

  .spacer .icon {
    width: 24px;
  }

  .modal .modal-content {
    width: calc(100vw - 96px);
  }

  .modal .modal-close {
    top: 18px;
    right: 18px;
    --size: 48px;
  }

  .page-list.cols-2-2-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .page-list.cols-2-2-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .page-list.cols-2-3-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
  }

  .stripetext .line-bg {
    margin-top: 2px;
  }

  .stripetext .line-bg::before {
    inset: 0px -20px;
  }

  .stripetext .text {
    font-size: 32px;
  }

  .table {
    gap: 24px 0;
  }

  .table > .attentions {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: subgrid;
    gap: 20px;
  }

  .table > .attentions ul {
    grid-column: 2;
  }

  .table > .attentions li {
    text-indent: -1em;
    padding-left: 1em;
  }

  .outerlink-icon {
    margin-left: 14px;
  }

  .outerlink-icon::before,
  .outerlink-icon::after {
    border-radius: 2px;
  }

  .text-l {
    font-size: 32px;
  }

  .md-mb-80 {
    margin-bottom: 80px;
  }

  .sp_only {
    display: none;
  }

  .md_only {
    display: block;
  }

  .common-grid .cardbox {
    width: calc(50% - var(--col-gap) * 0.5);
  }
}

@media screen and (min-width: 1024px) {
  .page {
    --viewport: 1024;
    --width: 864;
    --max-width: 1080px;
  }

  .page .page-title {
    height: 330px;
    font-size: 48px;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
  }

  .page .page-title .trim {
    min-height: 2lh;
  }

  .page .page-stripetext {
    margin-bottom: 80px;
  }

  .page .page-lead .page-lead-content {
    gap: 40px;
    padding: 28px 0 60px;
  }

  .page .page-lead .exclamation::after {
    font-size: 54px;
  }

  .page .page-lead .text {
    text-align: center;
  }

  .page .page-lead .text br {
    display: block;
  }

  .page .page-lead .attention {
    padding-left: 0;
    text-indent: 0;
    text-align: center;
  }

  .page .page-lead .pc_only {
    display: block;
  }

  .global_header .logos {
    width: auto;
    top: 10px;
    left: 20px;
    gap: 10px;
  }

  .global_header .logos .logo-za {
    width: 171px;
    max-width: initial;
  }

  .global_header .logos .logo-mega {
    width: 175px;
    max-width: initial;
  }

  .global_header .menu-open,
  .global_header .menu-close {
    top: 18px;
    right: 18px;
    --size: 64px;
  }

  .global_header .menu-open .icon {
    font-size: 22px;
  }

  .global_header .menu-close .icon {
    font-size: 22px;
  }

  .global_header .menu-panel .logo {
    gap: 14px;
    margin-bottom: 101px;
  }

  .global_header .menu-panel .logo .logo-za {
    width: 176px;
    max-width: initial;
    margin-top: 10px;
  }

  .global_header .menu-panel .logo .logo-mega {
    width: 300px;
    max-width: initial;
  }

  .global_header .menu-panel .links {
    grid-template-columns: repeat(3, minmax(0, 322px));
    gap: 60px 30px;
    margin-bottom: 140px;
  }

  .global_header .menu-panel .language a::after {
    font-size: 12px;
  }

  .global_footer .banner {
    max-width: 1024px;
    border-width: 4px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.3);
    background-size: 360px;
  }

  .global_footer .banner .box {
    display: grid;
    grid-template-columns: 59.4488188976% 40.5511811024%;
  }

  .global_footer .banner .image {
    width: 100%;
    height: 100%;
  }

  .global_footer .banner .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .global_footer .banner .texts {
    padding: 3.8834951456% 0;
    width: 100%;
    max-width: initial;
  }

  [lang=ja] .global_footer .banner .texts .text1 {
    width: 67.2330097087%;
    margin-bottom: 1.4563106796%;
  }

  [lang=zh-cmn-Hans] .global_footer .banner .texts .text1 {
    width: 57.5242718447%;
    margin-bottom: 1.4563106796%;
  }

  [lang=zh-cmn-Hant] .global_footer .banner .texts .text1 {
    width: 62.1359223301%;
    margin-bottom: 3.640776699%;
  }

  [lang=ja] .global_footer .banner .texts .logo {
    width: 52.1844660194%;
    margin-bottom: 2.1844660194%;
  }

  [lang=zh-cmn-Hans] .global_footer .banner .texts .logo {
    width: 52.1844660194%;
    margin-bottom: 2.1844660194%;
  }

  [lang=zh-cmn-Hant] .global_footer .banner .texts .logo {
    width: 52.1844660194%;
    margin-bottom: 4.3689320388%;
  }

  [lang=ja] .global_footer .banner .texts .text2 {
    width: 35.6796116505%;
  }

  [lang=zh-cmn-Hans] .global_footer .banner .texts .text2 {
    width: 36.1650485437%;
  }

  [lang=zh-cmn-Hant] .global_footer .banner .texts .text2 {
    width: 36.6504854369%;
  }

  .global_footer .language a::after {
    font-size: 12px;
  }

  .diamond {
    --size: 50px;
  }

  .diamond .back {
    border-width: 3px;
    box-shadow: 4px 4px rgba(0, 0, 0, 0.3);
  }

  .arrow-button {
    --border-width: 4px;
    --border-radius: 12px;
    height: 63px;
    filter: drop-shadow(5px 8px 0px rgba(0, 0, 0, 0.3));
  }

  .arrow-button .arrow-button-back {
    inset: 2px;
  }

  .arrow-button .arrow-button-text::before,
  .arrow-button .arrow-button-text::after {
    font-size: 16px;
  }

  .arrow-button[data-direction=right] .arrow-button-frame {
    right: 38px;
  }

  .arrow-button[data-direction=right]::after {
    width: 38px;
    background-image: url("../img/common/button_frame_r@1x.png");
  }

  .arrow-button[data-direction=left] .arrow-button-frame {
    left: 38px;
  }

  .arrow-button[data-direction=left]::after {
    width: 38px;
    background-image: url("../img/common/button_frame_l@1x.png");
  }

  .button_eshop {
    --border-width: 4px;
    --border-radius: 12px;
    filter: drop-shadow(5px 8px 0px rgba(0, 0, 0, 0.3));
  }

  .button_eshop .text br {
    display: none;
  }

  .pagetop {
    --size: 50px;
    position: static;
    height: auto;
  }

  .pagetop a {
    position: fixed;
    right: 15px;
    bottom: 15px;
    margin: auto;
  }

  .pagetop a .icon {
    font-size: 15px;
  }

  .cardbox .cardbox-background {
    --rounded: 12px;
  }

  .cardbox .cardbox-content {
    border-radius: 12px;
  }

  .cardbox .cardbox-content::before,
  .cardbox .cardbox-content::after {
    width: 120px;
  }

  .colorbox:has(.colorbox-frame-l) {
    padding: 0 26px;
  }

  .colorbox .colorbox-frame-l,
  .colorbox .colorbox-frame-r {
    --corner-w: 20px;
    --corner-h: 12px;
    --border-w: 11px;
    width: 20px;
  }

  .colorbox .colorbox-frame-l .blur,
  .colorbox .colorbox-frame-r .blur {
    inset: -10px 0px;
    filter: blur(15px);
  }

  .colorbox .colorbox-background {
    border-radius: 12px;
  }

  .colorbox .colorbox-background::before,
  .colorbox .colorbox-background::after {
    width: 120px;
  }

  .colorbox .colorbox-content::before {
    margin: -15px 0;
    background-size: 16px;
  }

  .colorbox:has(.colorbox-frame-l) .colorbox-content::before {
    margin: -15px;
  }

  .colorbox .colorbox-inner {
    border-radius: 12px;
  }

  .modal .modal-content {
    width: calc(100vw - 120px);
  }

  .modal .modal-close {
    top: 18px;
    right: 18px;
    --size: 64px;
  }

  .modal .modal-close .icon {
    font-size: 20px;
  }

  .page-list.cols-2-2-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 32px;
  }

  .page-list.cols-2-2-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 32px;
  }

  .page-list.cols-2-3-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 32px;
  }

  .stripetext .line-bg::before {
    inset: 0px -30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0.3) 6px, transparent 6px, transparent 10.5px) repeat-y;
    background-size: 100% 10.5px;
    background-position: top center;
  }

  .stripetext .text {
    font-size: 40px;
    padding: 0 20px;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  }

  .lineup {
    width: 87.6543209877%;
  }

  .table {
    gap: 32px 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .table dl {
    gap: 80px;
  }

  .table dt {
    text-align: left;
  }

  .table::after {
    width: 4px;
  }

  .table > .attentions {
    gap: 80px;
  }

  .back2top .arrow-button {
    width: 322px;
  }

  .back2top .arrow-button .arrow-button-text {
    gap: 9px;
  }

  .back2top .arrow-button .arrow-button-text::before {
    font-size: 15px;
  }

  .lg-mb-60 {
    margin-bottom: 60px;
  }

  .lg-mb-80 {
    margin-bottom: 80px;
  }

  .lg-mb-100 {
    margin-bottom: 100px;
  }

  .lg_only {
    display: block;
  }

  .common-colorbox-inner {
    width: 87.6543209877%;
    padding: 40px 0 40px;
    text-align: center;
  }

  .common-grid {
    --row-gap: 60px;
    --col-gap: 32px;
  }

  .notes > li {
    text-indent: 0;
    padding-left: 0;
  }
}

@media screen and (hover: hover) and (min-width: 1024px) {
  .arrow-button:hover[data-direction=right] .arrow-button-text::after {
    transform: translate3d(10px, 0, 0);
  }

  .arrow-button:hover[data-direction=left] .arrow-button-text::before {
    transform: translate3d(-10px, 0, 0) scale(-1, 1);
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1024px), screen and (-ms-high-contrast: none) and (min-width: 1024px) {
  .arrow-button:hover[data-direction=right] .arrow-button-text::after {
    transform: translate3d(10px, 0, 0);
  }

  .arrow-button:hover[data-direction=left] .arrow-button-text::before {
    transform: translate3d(-10px, 0, 0) scale(-1, 1);
  }
}

@media screen and (min-width: 1280px) {
  .page {
    --viewport: 1280;
    --width: 1120;
    --max-width: 1280px;
    grid-template-columns: 10% 1fr 10%;
  }

  .page > * {
    grid-column: 2/3;
  }

  .page > *.full {
    grid-column: 1/-1;
  }

  .page > *.wide {
    grid-column: 1/-1;
  }

  .page .page-title {
    font-size: 54px;
    text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  }

  .spacer {
    grid-template-rows: 4px;
    margin: 120px auto;
  }

  .spacer .icon {
    width: 34px;
  }

  .stripetext .line-bg::before {
    inset: 0px -30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 8px, rgba(255, 255, 255, 0.3) 8px, transparent 8px, transparent 14px) repeat-y;
    background-size: 100% 14px;
    background-position: top center;
  }

  .stripetext .text {
    font-size: 44px;
    padding: 0 30px;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  }

  .text-l {
    font-size: 36px;
    line-height: 1.3333;
  }
}

@media screen and (min-width: 1440px) {
  .page {
    --viewport: 1440;
    --width: 1280;
    --max-width: 1280px;
    grid-template-columns: 10% 1fr 10%;
  }
}

@media screen and (orientation: landscape) {
  main > .background .fixed img {
    top: 50%;
    width: 176.8410852713vw;
    max-width: 2546.511627907px;
  }
}

@media (hover: hover) {
  .global_header .menu-panel .language a:hover::before {
    transform: translate3d(50%, 0, 0);
    transition: transform 800ms ease;
  }

  .global_footer .banner:hover .box {
    opacity: 0.7;
  }

  .global_footer .language a:hover::before {
    transform: translate3d(50%, 0, 0);
    transition: transform 800ms ease;
  }

  .global_footer .official:hover {
    opacity: 0.6;
  }

  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .diamond:hover .back::before {
    transform: translate3d(-50%, -50%, 0);
  }

  .arrow-button:hover .arrow-button-back::before {
    transform: none;
    transition: transform 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .arrow-button:hover[data-direction=right] .arrow-button-text::after {
    transform: translate3d(5px, 0, 0);
  }

  .arrow-button:hover[data-direction=left] .arrow-button-text::before {
    transform: translate3d(-5px, 0, 0) scale(-1, 1);
  }

  .button_eshop:hover::before {
    transform: none;
  }

  .pagetop a:hover .icon {
    transform: translate3d(0, -0.4em, 0);
  }

  .page-list a:hover .colorbox-background,
  .page-list button:hover .colorbox-background {
    background: rgba(66, 60, 60, 0);
  }

  .page-list a:hover .colorbox-background::before,
  .page-list button:hover .colorbox-background::before {
    opacity: 0.85;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .global_header .menu-panel .language a:hover::before {
    transform: translate3d(50%, 0, 0);
    transition: transform 800ms ease;
  }

  .global_footer .banner:hover .box {
    opacity: 0.7;
  }

  .global_footer .language a:hover::before {
    transform: translate3d(50%, 0, 0);
    transition: transform 800ms ease;
  }

  .global_footer .official:hover {
    opacity: 0.6;
  }

  .scrollbar_thumb:hover {
    opacity: 0.6;
  }

  .diamond:hover .back::before {
    transform: translate3d(-50%, -50%, 0);
  }

  .arrow-button:hover .arrow-button-back::before {
    transform: none;
    transition: transform 800ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .arrow-button:hover[data-direction=right] .arrow-button-text::after {
    transform: translate3d(5px, 0, 0);
  }

  .arrow-button:hover[data-direction=left] .arrow-button-text::before {
    transform: translate3d(-5px, 0, 0) scale(-1, 1);
  }

  .button_eshop:hover::before {
    transform: none;
  }

  .pagetop a:hover .icon {
    transform: translate3d(0, -0.4em, 0);
  }

  .page-list a:hover .colorbox-background,
  .page-list button:hover .colorbox-background {
    background: rgba(66, 60, 60, 0);
  }

  .page-list a:hover .colorbox-background::before,
  .page-list button:hover .colorbox-background::before {
    opacity: 0.85;
  }
}