:root {
  --gradation_blueblack: linear-gradient(90deg, #0028c7 0%, #000b35 100%);
  --black: #000828;
  --blue: #0021a7;
  --orange: #f80;
  --white: #fff;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
}
@media (max-width: 767px) {
  body {
    font-size: 3.73vw;
  }
}

.content-area {
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 4%;
}
@media (max-width: 767px) {
  .content-area {
    padding-inline: 6%;
  }
}

.note {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  margin: 0;
  color: var(--black, #000828);
  font-family: "M PLUS 1", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: left;
}
@media (max-width: 767px) {
  .note {
    font-size: 4.2vw;
  }
}

.note-icon {
  flex-shrink: 0;
  width: 1.3em;
  height: auto;
}

.streaming-content-body .note {
  margin-top: 1.3em;
}

.game .note span {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .game .note span {
    font-size: 4.2vw;
  }
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto 1em;
  padding: 32px 72px;
  border: 5px solid var(--blue, #0021a7);
  border-radius: 90px;
  background: var(--orange, #f80);
  box-sizing: border-box;
  color: var(--white, #fff);
  font-family: "M PLUS 1", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  text-shadow: 2px 2px 0 #eb5a30;
}
@media (max-width: 767px) {
  .heading {
    padding: 4% 2%;
    border-width: 1vw;
    font-size: 4.27vw;
  }
}

.firstview {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/920;
  overflow: hidden;
  background: url(../images/firstview.webp) no-repeat center center/cover;
}
.firstview img {
  display: block;
}
@media (max-width: 767px) {
  .firstview {
    aspect-ratio: 750/1226;
    background-image: url(../images/firstview-sp.webp);
  }
}

.firstview-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.firstview-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.firstview-title {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 42.9%;
  margin: 0;
  z-index: 2;
}
.firstview-title img {
  width: 100%;
}
@media (max-width: 767px) {
  .firstview-title {
    top: 3%;
    bottom: auto;
    width: 90%;
  }
}

.firstview-wallpaper {
  position: absolute;
  top: 5%;
  right: 3%;
  z-index: 2;
  transform: scale(0.8);
  transform-origin: top right;
}
@media (max-width: 767px) {
  .firstview-wallpaper {
    top: auto;
    bottom: 4%;
    right: 50%;
    transform: translateX(50%) scale(0.8);
    transform-origin: center;
    width: 80%;
  }
}

.firstview-wallpaper-text {
  width: 365px;
  height: 85px;
  margin: 0 auto 15px;
  background: url(../images/text-firstview.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .firstview-wallpaper-text {
    width: 102%;
    height: auto;
    aspect-ratio: 667/42;
    background-image: url(../images/text-firstview-sp.webp);
  }
}
.en .firstview-wallpaper-text {
  height: auto;
  aspect-ratio: 393/114;
  background-image: url(../images/text-firstview-en.webp);
}
@media (max-width: 767px) {
  .en .firstview-wallpaper-text {
    aspect-ratio: 590/72;
    background-image: url(../images/text-firstview-en-sp.webp);
  }
}

.firstview-wallpaper-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.firstview-wallpaper-button {
  position: relative;
  display: block;
}
.firstview-wallpaper-button img {
  display: block;
  width: 199px;
}
.firstview-wallpaper-button-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .firstview-wallpaper-button:hover .firstview-wallpaper-button-hover {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .firstview-wallpaper-button {
    flex: 1;
  }
  .firstview-wallpaper-button img {
    width: 100%;
  }
}

.loop-text {
  --tile: 400px;
  --loop-y: 65%;
  width: 100%;
  height: 40px;
  background-color: #0021a7;
  background-image: url(../images/loop-text.svg);
  background-repeat: repeat-x;
  background-size: var(--tile) auto;
  background-position: 0 var(--loop-y);
  animation: loop-text-scroll 12s linear infinite;
}
@media (max-width: 767px) {
  .loop-text {
    --tile: 47vw;
    height: 5.21vw;
  }
}

@keyframes loop-text-scroll {
  from {
    background-position: 0 var(--loop-y);
  }
  to {
    background-position: calc(var(--tile) * -1) var(--loop-y);
  }
}
.about {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/948;
  background: url(../images/bg-about.webp) no-repeat center center/cover;
}
.about img {
  display: block;
}
@media (max-width: 767px) {
  .about {
    aspect-ratio: 750/1397;
    background-image: url(../images/bg-about-sp.webp);
  }
}

@media (min-width: 768px) {
  .about {
    aspect-ratio: auto;
    padding: 100px 0;
  }
}

.about-inner {
  position: absolute;
  inset: 0;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .about-inner {
    position: relative;
    inset: auto;
    height: 720px;
  }
}

.about-stage {
  position: absolute;
  inset: 0;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .about-stage {
    transform: translateY(-6%);
  }
}

.about-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1331/766;
  transform: translate(-50%, -50%);
  background: url(../images/speech-bubble.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .about-bubble {
    left: 49%;
    width: 103%;
    max-width: none;
    aspect-ratio: 750/766;
    background-image: url(../images/speech-bubble-sp.webp);
  }
}

.about-bubble-text {
  margin: 0;
  color: var(--black, #000828);
  font-family: "M PLUS 1", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 800;
  line-height: 2;
  text-align: center;
}
@media (max-width: 767px) {
  .about-bubble-text {
    font-size: 4.5vw;
  }
}
@media (max-width: 767px) {
  .en .about-bubble-text {
    font-size: 3.5vw;
  }
}

.about-bubble-text--sp {
  display: none;
}

@media (max-width: 767px) {
  .about-bubble-text--pc {
    display: none;
  }
  .about-bubble-text--sp {
    display: block;
  }
}
.marker {
  background: linear-gradient(transparent 60%, #fff33f 60%);
}

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

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.br-pc {
  display: inline;
}
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.en .hide-en {
  display: none;
}
.only-en {
  display: none;
}
.en .only-en {
  display: block;
}

.campaign-content-body .only-en {
  align-self: flex-start;
  text-align: left;
}

.about-img {
  position: absolute;
}

.about-img1 {
  top: -1%;
  right: 14%;
  width: 171px;
}
@media (max-width: 767px) {
  .about-img1 {
    top: 14%;
    right: 5%;
    width: 25.3vw;
  }
}

.about-img3 {
  z-index: -1;
  top: 9%;
  left: -3%;
  width: 282px;
}
@media (max-width: 767px) {
  .about-img3 {
    top: 15%;
    left: -14%;
    width: 54.7vw;
  }
}

.about-img4 {
  left: -5%;
  bottom: 16%;
  width: 158px;
}
@media (max-width: 767px) {
  .about-img4 {
    left: 8%;
    bottom: 15%;
    width: 24vw;
  }
}

.about-img2 {
  left: 2%;
  bottom: 5%;
  width: 143px;
}
@media (max-width: 767px) {
  .about-img2 {
    left: 10%;
    bottom: 6%;
    width: 21.4vw;
  }
}

.about-img5 {
  right: -3%;
  bottom: 1%;
  width: 280px;
}
@media (max-width: 767px) {
  .about-img5 {
    right: 0%;
    bottom: 2%;
    width: 50.3vw;
  }
}
@media (min-width: 768px) {
  .en .about-img5 {
    right: -6%;
    bottom: -10%;
    width: 280px;
  }
}

.message {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: url(../images/bg-about.webp) no-repeat center center/cover;
}
.message img {
  display: block;
}
@media (max-width: 767px) {
  .message {
    background-image: url(../images/bg-about-sp.webp);
  }
}

.message-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message-image1 {
  position: absolute;
  top: 0;
  left: 35%;
  width: 20.5vw;
  transform: translate(-128%, 0);
}
@media (max-width: 767px) {
  .message-image1 {
    width: 31.5vw;
  }
}

.zap {
  opacity: 1;
}
.zap.is-in {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .zap {
    opacity: 1;
    animation: none;
  }
}

@keyframes message-zap {
  0% {
    opacity: 0;
    translate: 0 0;
    filter: brightness(1);
  }
  8% {
    opacity: 1;
    translate: -0.5vw 0;
    filter: brightness(2.2);
  }
  16% {
    opacity: 0.3;
    translate: 0.5vw 0;
  }
  24% {
    opacity: 1;
    translate: -0.4vw 0.1vw;
    filter: brightness(2);
  }
  32% {
    opacity: 0.5;
    translate: 0.4vw -0.1vw;
  }
  44% {
    opacity: 1;
    translate: -0.3vw 0;
    filter: brightness(1.6);
  }
  56% {
    opacity: 0.6;
    translate: 0.25vw 0;
  }
  68% {
    opacity: 1;
    translate: -0.15vw 0;
  }
  80% {
    opacity: 0.85;
    translate: 0.1vw 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    filter: brightness(1);
  }
}
.message-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 8vw;
}
@media (max-width: 767px) {
  .message-title {
    width: 100%;
    margin-top: 21vw;
  }
}

.message-text {
  width: 6.2vw;
  margin-bottom: 1%;
}
@media (max-width: 767px) {
  .message-text {
    width: 16.2vw;
  }
}

.message-headline {
  width: 493px;
  margin: 0;
}
.message-headline img {
  width: 100%;
}
@media (max-width: 767px) {
  .message-headline {
    width: 70%;
  }
}

.message-comment {
  position: relative;
  width: 50.8vw;
  margin-top: -0.4%;
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  .message-comment {
    width: 100%;
  }
}

.message-image2 {
  width: 100%;
  aspect-ratio: 976/215;
  background: url(../images/message-image2.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .message-image2 {
    aspect-ratio: 750/215;
    background-image: url(../images/message-image2-sp.webp);
  }
}

.message-image3 {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 12vw;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .message-image3 {
    left: 6%;
    width: 29.6vw;
  }
}
@media (max-width: 767px) {
  .en .message-image3 {
    left: 2%;
    width: 29.6vw;
  }
}

.message-comment-text {
  position: absolute;
  top: 50%;
  left: 34%;
  margin: 0;
  color: var(--blue, #0021a7);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .message-comment-text {
    left: 17%;
    width: 100%;
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  .en .message-comment-text {
    left: 31%;
  }
}
@media (max-width: 767px) {
  .en .message-comment-text {
    left: 16%;
    width: 100%;
    font-size: 3.1vw;
  }
}

.message-name {
  color: var(--blue, #0021a7);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .message-name {
    font-size: 4.9vw;
  }
}

.message-movie5 {
  width: 100%;
  display: block;
}
.message-movie5-link {
  position: relative;
  display: block;
  width: 32.1vw;
  margin: 0 auto 12%;
}
.message-movie5-link:hover .message-movie5-play {
  opacity: 1;
}
.message-movie5-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .message-movie5-link {
    width: 85%;
  }
}

.message-image4 {
  position: absolute;
  right: -24%;
  bottom: 0;
  width: 19.4vw;
}
@media (max-width: 767px) {
  .message-image4 {
    right: -3%;
    bottom: -8%;
    width: 33.4vw;
  }
}

.confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -12%;
  width: 0.8vw;
  height: 1.1vw;
  max-width: 13px;
  max-height: 18px;
  perspective: 600px;
  animation-name: confetti-fall;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.confetti-piece::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  animation-name: confetti-flutter;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.confetti-piece:nth-child(even)::before {
  animation-name: confetti-flutter-alt;
}
.confetti-piece:nth-child(1) {
  left: 3%;
  color: #f80;
  animation-delay: -1s;
  animation-duration: 17s;
}
.confetti-piece:nth-child(1)::before {
  animation-delay: -1s;
  animation-duration: 2.2s;
}
.confetti-piece:nth-child(2) {
  left: 88%;
  color: #0021a7;
  animation-delay: -9.5s;
  animation-duration: 19.6s;
}
.confetti-piece:nth-child(2)::before {
  animation-delay: -9.5s;
  animation-duration: 1.6s;
}
.confetti-piece:nth-child(3) {
  left: 9%;
  color: #fff33f;
  animation-delay: -5s;
  animation-duration: 15.2s;
}
.confetti-piece:nth-child(3)::before {
  animation-delay: -5s;
  animation-duration: 2.8s;
}
.confetti-piece:nth-child(4) {
  left: 94%;
  color: #eb5a30;
  animation-delay: -13.5s;
  animation-duration: 18.4s;
}
.confetti-piece:nth-child(4)::before {
  animation-delay: -13.5s;
  animation-duration: 1.9s;
}
.confetti-piece:nth-child(5) {
  left: 15%;
  color: #fff;
  animation-delay: -3s;
  animation-duration: 21s;
}
.confetti-piece:nth-child(5)::before {
  animation-delay: -3s;
  animation-duration: 2.5s;
}
.confetti-piece:nth-child(6) {
  left: 82%;
  color: #00a0e9;
  animation-delay: -11s;
  animation-duration: 16.4s;
}
.confetti-piece:nth-child(6)::before {
  animation-delay: -11s;
  animation-duration: 1.7s;
}
.confetti-piece:nth-child(7) {
  left: 6%;
  color: #f80;
  animation-delay: -7.5s;
  animation-duration: 14.4s;
}
.confetti-piece:nth-child(7)::before {
  animation-delay: -7.5s;
  animation-duration: 3s;
}
.confetti-piece:nth-child(8) {
  left: 97%;
  color: #0021a7;
  animation-delay: -15.5s;
  animation-duration: 19s;
}
.confetti-piece:nth-child(8)::before {
  animation-delay: -15.5s;
  animation-duration: 2s;
}
.confetti-piece:nth-child(9) {
  left: 12%;
  color: #fff33f;
  animation-delay: -2s;
  animation-duration: 17.6s;
}
.confetti-piece:nth-child(9)::before {
  animation-delay: -2s;
  animation-duration: 2.6s;
}
.confetti-piece:nth-child(10) {
  left: 85%;
  color: #eb5a30;
  animation-delay: -10s;
  animation-duration: 15.6s;
}
.confetti-piece:nth-child(10)::before {
  animation-delay: -10s;
  animation-duration: 1.8s;
}
.confetti-piece:nth-child(11) {
  left: 2%;
  color: #fff;
  animation-delay: -6s;
  animation-duration: 20.4s;
}
.confetti-piece:nth-child(11)::before {
  animation-delay: -6s;
  animation-duration: 2.3s;
}
.confetti-piece:nth-child(12) {
  left: 91%;
  color: #00a0e9;
  animation-delay: -14s;
  animation-duration: 14.8s;
}
.confetti-piece:nth-child(12)::before {
  animation-delay: -14s;
  animation-duration: 2.7s;
}
.confetti-piece:nth-child(13) {
  left: 18%;
  color: #f80;
  animation-delay: -4s;
  animation-duration: 18.8s;
}
.confetti-piece:nth-child(13)::before {
  animation-delay: -4s;
  animation-duration: 1.6s;
}
.confetti-piece:nth-child(14) {
  left: 79%;
  color: #0021a7;
  animation-delay: -12.5s;
  animation-duration: 16.2s;
}
.confetti-piece:nth-child(14)::before {
  animation-delay: -12.5s;
  animation-duration: 2.9s;
}
.confetti-piece:nth-child(15) {
  left: 8%;
  color: #fff33f;
  animation-delay: -8s;
  animation-duration: 19.4s;
}
.confetti-piece:nth-child(15)::before {
  animation-delay: -8s;
  animation-duration: 2.1s;
}
.confetti-piece:nth-child(16) {
  left: 96%;
  color: #eb5a30;
  animation-delay: -0.5s;
  animation-duration: 17.8s;
}
.confetti-piece:nth-child(16)::before {
  animation-delay: -0.5s;
  animation-duration: 2.4s;
}
@media (max-width: 767px) {
  .confetti-piece {
    width: 2.2vw;
    height: 3vw;
    max-width: none;
    max-height: none;
  }
}

.message.is-paused .confetti-piece,
.message.is-paused .confetti-piece::before {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .confetti {
    display: none;
  }
}
@keyframes confetti-fall {
  0% {
    top: -12%;
    opacity: 0;
    transform: translateX(0);
  }
  8% {
    opacity: 0.95;
  }
  25% {
    transform: translateX(1.8vw);
  }
  50% {
    transform: translateX(-1.5vw);
  }
  75% {
    transform: translateX(1.4vw);
  }
  92% {
    opacity: 0.95;
  }
  100% {
    top: 112%;
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes confetti-flutter {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(160deg);
  }
}
@keyframes confetti-flutter-alt {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    transform: rotateX(-360deg) rotateY(360deg) rotateZ(-160deg);
  }
}
.streaming {
  position: relative;
  width: 100%;
  padding: 8vw 0;
  background: url(../images/bg-streaming.webp) no-repeat center top/cover;
}
.streaming img {
  display: block;
}
@media (max-width: 767px) {
  .streaming {
    padding: 25vw 0;
    background-image: url(../images/bg-streaming-sp.webp);
  }
}

.streaming-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.streaming-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.streaming-text {
  width: 183.4px;
  margin-bottom: 1%;
}
@media (max-width: 767px) {
  .streaming-text {
    width: 25.7vw;
  }
}

.streaming-headline {
  width: 628px;
  margin: 0;
}
.streaming-headline img {
  width: 100%;
}
@media (max-width: 767px) {
  .streaming-headline {
    width: 85.4vw;
  }
}
.en .streaming-headline {
  width: 408px;
}
@media (max-width: 767px) {
  .en .streaming-headline {
    width: 55.5vw;
  }
}

.streaming-deco {
  position: absolute;
  top: 0;
  left: 49%;
  z-index: 1;
  width: 17.5vw;
  transform: translate(101%, 0);
}
@media (max-width: 767px) {
  .streaming-deco {
    left: auto;
    right: 0;
    width: 37.5vw;
    transform: none;
  }
}

.streaming-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/683;
  margin-top: -0.2vw;
}
@media (max-width: 767px) {
  .streaming-image {
    aspect-ratio: 750/422;
  }
}

@media (min-width: 768px) {
  .streaming-image {
    margin-top: -3px;
  }
}

.streaming-image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: streaming-image-fade 9s infinite;
}
.streaming-image-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.streaming-image-slide:nth-child(2) {
  animation-delay: 3s;
}
.streaming-image-slide:nth-child(3) {
  animation-delay: 6s;
}

@keyframes streaming-image-fade {
  0% {
    opacity: 0;
  }
  16.667% {
    opacity: 1;
  }
  33.333% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .streaming-image-slide {
    animation: none;
  }
  .streaming-image-slide:first-child {
    opacity: 1;
  }
}

.streaming-content,
.game-content,
.campaign-content {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12%;
  padding-inline: 3%;
}
@media (max-width: 767px) {
  .streaming-content,
  .game-content,
  .campaign-content {
    margin-top: 23%;
  }
}

.streaming-content-body,
.game-content-body,
.campaign-content-body,
.goods-content-body {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 1000px;
  max-width: 100%;
  padding: 120px 48px 80px;
  border: 5px solid var(--blue, #0021a7);
  border-radius: 16px;
  background: var(--white, #fff);
  box-shadow: 16px 16px 0 0 rgba(0, 33, 167, 0.4);
}
@media (max-width: 767px) {
  .streaming-content-body,
  .game-content-body,
  .campaign-content-body,
  .goods-content-body {
    gap: 5vw;
    padding: 18% 6% 10%;
    border-width: 1vw;
    box-shadow: 1.8vw 1.8vw 0 0 rgba(0, 33, 167, 0.4);
  }
}
.streaming-content-body .heading,
.game-content-body .heading,
.campaign-content-body .heading,
.goods-content-body .heading {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 900px;
  max-width: calc(100% - 20px);
  margin: 0;
  transform: translate(-50%, -50%);
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.streaming-list {
  width: 100%;
}
.streaming-list.splide:not(.is-active) .splide__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.streaming-list .streaming-arrows {
  display: none;
}
@media (max-width: 767px) {
  .streaming-list .streaming-item {
    width: 100%;
  }
  .streaming-list .streaming-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5%;
  }
  .streaming-list .splide__pagination {
    position: static;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 2%;
    margin: 0;
    padding: 0;
    transform: none;
  }
  .streaming-list .splide__pagination li {
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 1;
  }
  .streaming-list .splide__pagination__page {
    margin: 0;
  }
  .streaming-list .splide__pagination__page.is-active {
    background: var(--blue, #0021a7);
  }
  .streaming-list .streaming-arrow {
    position: static;
    width: 11.2%;
    height: auto;
    padding: 0;
    transform: none;
    background: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
  }
  .streaming-list .streaming-arrow:disabled {
    opacity: 0.4;
  }
  .streaming-list .streaming-arrow img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.streaming-item,
.game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc((100% - 64px) / 3);
}

.streaming-movie,
.game-movie {
  width: 100%;
  height: auto;
}

.streaming-movie-link {
  display: block;
  transition: filter 0.2s;
}
.streaming-movie-link:hover {
  filter: brightness(1.1);
}

.streaming-banner,
.game-banner {
  width: 100%;
  max-width: 950px;
  height: auto;
}

.streaming-banner--portrait {
  width: 60%;
}

.streaming-banner-link {
  display: block;
  width: 100%;
  max-width: 950px;
  transition: filter 0.2s;
}
.streaming-banner-link:hover {
  filter: brightness(1.1);
}

.streaming-banner-zoom {
  position: relative;
  width: 50%;
  align-self: center;
  line-height: 0;
}
.streaming-banner-zoom .streaming-banner--portrait {
  width: 100%;
}

.streaming-banner-expand {
  display: block;
  width: 39px;
  margin: 12px auto 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: filter 0.2s;
}
.streaming-banner-expand:hover {
  filter: brightness(1.1);
}
.streaming-banner-expand img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .streaming-banner-expand {
    width: 9vw;
    margin-top: 3vw;
  }
}

.streaming-lead,
.game-lead {
  margin: 0;
  color: var(--black, #000828);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.streaming-lead {
  font-size: 21px;
}

@media (max-width: 767px) {
  .streaming-lead,
  .game-lead {
    font-size: 3.73vw;
  }
}

.game {
  position: relative;
  width: 100%;
  padding: 129px 0;
  background: url(../images/bg-game1.webp) no-repeat center top/cover;
}
@media (max-width: 767px) {
  .game {
    padding: 20vw 0;
    background-image: url(../images/bg-game1-sp.webp);
  }
}
.game img {
  display: block;
}

.game-deco {
  position: absolute;
  top: 0;
  left: 40%;
  z-index: 1;
  width: 19.5vw;
  transform: translate(-128%, 0);
}
@media (max-width: 767px) {
  .game-deco {
    left: 49%;
    width: 38.5vw;
  }
}

.game-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.game-text {
  width: 9.79vw;
  margin-bottom: 3%;
}
@media (max-width: 767px) {
  .game-text {
    width: 11.6vw;
    margin-bottom: 4%;
  }
}

.game-headline {
  width: 305px;
  margin: 0;
}
@media (max-width: 767px) {
  .game-headline {
    width: 45.6vw;
  }
}
.game-headline img {
  width: 100%;
}

.game-content-title {
  align-self: flex-start;
  width: calc(100% + 250px);
  max-width: 920px;
  aspect-ratio: 920/122;
  margin: 0 -125px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (max-width: 767px) {
  .game-content-title {
    width: 109%;
    max-width: none;
    aspect-ratio: 690/122;
    margin: 0 0 0 -6%;
  }
}

.game-content-title--1 {
  background-image: url(../images/title-game1.webp);
}
.game-content-title--2 {
  background-image: url(../images/title-game2.webp);
}
@media (max-width: 767px) {
  .game-content-title--1 {
    background-image: url(../images/title-game1-sp.webp);
  }
  .game-content-title--2 {
    background-image: url(../images/title-game2-sp.webp);
  }
}

.en .game-content-title--1 {
  background-image: url(../images/title-game1-en.webp);
}
.en .game-content-title--2 {
  background-image: url(../images/title-game2-en.webp);
}
@media (max-width: 767px) {
  .en .game-content-title--1 {
    background-image: url(../images/title-game1-en-sp.webp);
  }
  .en .game-content-title--2 {
    background-image: url(../images/title-game2-en-sp.webp);
  }
}

.game-content-body {
  gap: 60px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .game-content-body {
    gap: 7.8vw;
    padding-top: 10%;
  }
}

.game-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 950px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .game-block {
    gap: 4.17vw;
  }
}

.game-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.game-desc-wrap > .note {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .game-desc-wrap > .note {
    margin-bottom: 5.2vw;
  }
}

.game-desc,
.campaign-desc {
  margin: 0;
  color: var(--black, #000828);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.5vw;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 767px) {
  .game-desc,
  .campaign-desc {
    font-size: 3.35vw;
  }
}

.game-desc {
  color: #000;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .game-desc {
    font-size: 22px;
  }
}

.game-serial-row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.game-serial-image {
  position: absolute;
  top: -90%;
  right: -9%;
  width: 180px;
  height: auto;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .game-serial-image {
    width: 19vw;
    top: -98%;
    right: 2%;
  }
}

.game-serial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 67%;
  padding: 16px;
  border: 4px solid #eb5a30;
  border-radius: 8px;
  background: var(--white, #fff);
}
@media (max-width: 767px) {
  .game-serial {
    width: 100%;
    padding: 2.1vw;
  }
}

.game-serial-code {
  color: var(--blue, #0021a7);
  font-family: "M PLUS 1", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 767px) {
  .game-serial-code {
    font-size: 5.3vw;
  }
}

.game-serial-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--black, #000828);
  border-radius: 4px;
  background: var(--white, #fff);
  color: var(--black, #000828);
  cursor: pointer;
}
@media (max-width: 767px) {
  .game-serial-copy {
    gap: 1vw;
    padding: 1vw;
    font-size: 3.2vw;
  }
}
.game-serial-copy-icon {
  width: 20px;
  height: auto;
}
@media (max-width: 767px) {
  .game-serial-copy-icon {
    width: 2.7vw;
  }
}

.game-serial-note {
  margin: 8px 0 30px;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .game-serial-note {
    font-size: 3vw;
  }
}

.game-serial-note--mb0 {
  margin-bottom: 0;
}

.game-content {
  margin-top: -2px;
}

.game-content + .game-content {
  margin-top: 12%;
}

.campaign-bottom {
  position: relative;
  z-index: 1;
  display: block;
  width: 307px;
  max-width: 100%;
  margin: 100px auto 40px;
}
@media (max-width: 767px) {
  .campaign-bottom {
    width: 30vw;
    max-width: 960px;
    margin: 8vw auto;
  }
}
.campaign-bottom.slide-right {
  opacity: 0;
}
.campaign-bottom.slide-right.is-in {
  opacity: 1;
  animation: campaign-bottom-slide-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .campaign-bottom.slide-right {
    opacity: 1;
    animation: none;
  }
}

@keyframes campaign-bottom-slide-in {
  from {
    translate: 100vw 0;
  }
  to {
    translate: 0 0;
  }
}
.campaign {
  position: relative;
  width: 100%;
  overflow-x: clip;
  padding: 13vw 0 4vw;
  background: url(../images/bg-campaign.webp) no-repeat center top/cover;
  background-color: var(--white, #fff);
}
@media (max-width: 767px) {
  .campaign {
    padding: 22vw 0 10vw;
    background-image: url(../images/bg-campaign-sp.webp);
  }
}
.campaign img {
  display: block;
}

.campaign-deco {
  position: absolute;
  top: 0;
  left: 35%;
  z-index: 1;
  width: 24.5vw;
  transform: translate(99%, 0);
}
@media (max-width: 767px) {
  .campaign-deco {
    left: 29%;
    width: 35.5vw;
  }
}

.campaign-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.campaign-text {
  width: 7.29vw;
  margin-bottom: 1%;
}
@media (max-width: 767px) {
  .campaign-text {
    width: 19.1vw;
  }
}

.campaign-headline {
  width: 565px;
  margin: 0;
}
.campaign-headline img {
  width: 100%;
}
@media (max-width: 767px) {
  .campaign-headline {
    width: 76.8vw;
  }
}

.campaign-content {
  margin-top: 52px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .campaign-content {
    margin-top: 9.5%;
    margin-bottom: 13.8vw;
  }
}

.campaign-content + .campaign-content {
  margin-top: 66px;
}
@media (max-width: 767px) {
  .campaign-content + .campaign-content {
    margin-top: 8vw;
  }
}

.campaign-content:last-child {
  margin-bottom: 4.8vw;
}
@media (max-width: 767px) {
  .campaign-content:last-child {
    margin-bottom: 8.8vw;
  }
}

.streaming-content-body:has(.streaming-banner),
.game-content-body,
.campaign-content-body,
.goods-content-body {
  padding-inline: 125px;
}
@media (max-width: 767px) {
  .streaming-content-body:has(.streaming-banner),
  .game-content-body,
  .campaign-content-body,
  .goods-content-body {
    padding-inline: 5%;
  }
}

.campaign-desc {
  width: 100%;
  color: #000;
  font-style: normal;
  font-weight: 600;
  line-height: 1.667;
}

.campaign-step {
  width: 100%;
  margin: 0;
  color: var(--blue, #0021a7);
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.667vw;
  font-weight: 800;
  line-height: normal;
  text-align: center;
}
@media (max-width: 767px) {
  .campaign-step {
    font-size: 4.27vw;
  }
}

.campaign-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.campaign-image-link {
  display: block;
  transition: filter 0.2s;
}
.campaign-image-link:hover {
  filter: brightness(1.1);
}

.campaign-image-wide {
  width: 100%;
  height: auto;
}

.campaign-button {
  display: block;
  width: 580px;
  max-width: 100%;
  transition: filter 0.3s;
}
@media (max-width: 767px) {
  .campaign-button {
    width: 70%;
  }
}
.campaign-button:hover {
  filter: brightness(1.1);
}
.campaign-button img {
  display: block;
  width: 100%;
}

.campaign-image + .note {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .campaign-image + .note {
    margin-top: 5.2vw;
  }
}

.goods {
  position: relative;
  width: 100%;
  overflow-x: clip;
  padding: 135px 0;
  background: url(../images/bg-goods.webp) no-repeat center top/cover;
  background-color: var(--white, #fff);
}
@media (max-width: 767px) {
  .goods {
    padding: 22vw 0 10vw;
    background-image: url(../images/bg-goods-sp.webp);
  }
}
.goods img {
  display: block;
}

.goods-deco {
  position: absolute;
  top: 0;
  left: 40%;
  z-index: 1;
  width: 340px;
  transform: translate(-128%, 0);
}
@media (max-width: 767px) {
  .goods-deco {
    left: 49%;
    width: 38.5vw;
  }
}

.goods-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goods-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.goods-text {
  width: 72px;
  margin-bottom: 1%;
}
@media (max-width: 767px) {
  .goods-text {
    width: 9.6vw;
  }
}

.goods-headline {
  width: 388px;
  margin: 0;
}
.goods-headline img {
  width: 100%;
}
@media (max-width: 767px) {
  .goods-headline {
    width: 51.7vw;
  }
}
.en .goods-headline {
  width: 787px;
}
@media (max-width: 767px) {
  .en .goods-headline {
    width: 90vw;
  }
}

.goods-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 52px;
  padding-inline: 3%;
}
@media (max-width: 767px) {
  .goods-content {
    margin-top: 6.5%;
  }
}
@media (min-width: 768px) {
  .en .goods-content {
    margin-top: 75px;
  }
}
@media (max-width: 767px) {
  .en .goods-content {
    margin-top: 9.5%;
  }
}

.goods-heading-image {
  position: absolute;
  top: -150px;
  right: -64px;
  z-index: 3;
  width: 159px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .goods-heading-image {
    top: -38%;
    right: 3%;
    width: 21.2vw;
  }
}
@media (max-width: 767px) {
  .en .goods-heading-image {
    top: -38%;
    right: 3%;
    width: 21.2vw;
  }
}

.goods-image {
  width: 680px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .goods-image {
    width: 100%;
  }
}

.goods-button {
  display: block;
  width: 580px;
  max-width: 100%;
  transition: filter 0.3s;
}
@media (max-width: 767px) {
  .goods-button {
    width: 70%;
  }
}
.goods-button:hover {
  filter: brightness(1.1);
}
.goods-button img {
  display: block;
  width: 100%;
}

.commemorative {
  position: relative;
  width: 100%;
}

.commemorative-image {
  display: block;
  width: 100%;
}

.commemorative-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  pointer-events: none;
}

.l5-header {
  position: relative;
  z-index: 200;
  width: 100%;
  background: #000;
}
.l5-header .inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .l5-header .inner {
    height: 40px;
    padding: 0 12px;
  }
}
.l5-header .logo {
  margin: 0;
}
.l5-header .logo img {
  display: block;
  width: 170px;
}
@media (max-width: 767px) {
  .l5-header .logo img {
    width: 140px;
  }
}
.l5-header .rBox {
  display: flex;
  align-items: center;
}
.l5-header .x,
.l5-header .fb {
  margin: 0 16px 0 0;
  padding: 0 16px 0 0;
  border-right: 1px solid #565454;
}
@media (max-width: 767px) {
  .l5-header .x,
  .l5-header .fb {
    margin: 0 12px 0 0;
    padding: 0 12px 0 0;
  }
}
.l5-header .x img,
.l5-header .fb img {
  display: block;
  width: 22px;
}
@media (max-width: 767px) {
  .l5-header .x img,
  .l5-header .fb img {
    width: 19px;
  }
}
.l5-header .langBox {
  position: relative;
}
.l5-header .langBox > p {
  margin: 0;
  padding-left: 28px;
  background: url(https://dxi4wb638ujep.cloudfront.net/1/prd/assets/4/img/shared/icn_language.svg) no-repeat left center/22px;
  color: var(--white, #fff);
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
}
.l5-header .langBox-toggle {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}
@media (max-width: 767px) {
  .l5-header .langBox > p {
    padding-left: 24px;
    background-size: 19px;
    font-size: 12px;
  }
}
.l5-header .langBox .lang-cur-en {
  display: none;
}
.l5-header .langBox ul {
  position: absolute;
  top: 30px;
  right: -16px;
  display: none;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  white-space: nowrap;
  background: #000;
}
.l5-header .langBox ul a {
  display: block;
  padding: 6px 16px;
  color: var(--white, #fff);
  font-size: 14px;
  text-decoration: none;
}
.l5-header .langBox .lang-opt-ja {
  display: none;
}

html.en .l5-header .langBox .lang-cur-ja {
  display: none;
}
html.en .l5-header .langBox .lang-cur-en {
  display: inline;
}
html.en .l5-header .langBox .lang-opt-ja {
  display: block;
}
html.en .l5-header .langBox .lang-opt-en {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 40px;
  box-sizing: border-box;
  background: var(--gradation_blueblack);
}
@media (max-width: 767px) {
  .header {
    height: auto;
    padding: 10px 16px 10px 10px;
  }
}

.header-logo img {
  display: block;
  width: 60px;
}
.en .header-logo img {
  width: 50px;
}
.header-logo img.header-logo-en {
  display: none;
}
.en .header-logo img.header-logo-ja {
  display: none;
}
.en .header-logo img.header-logo-en {
  display: block;
}
@media (max-width: 767px) {
  .header-logo {
    margin-left: 10px;
  }
  .header-logo img {
    width: 60px;
  }
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav a {
  color: var(--white, #fff);
  font-family: "Alatsi", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s;
}
.header-nav a:hover {
  color: #eb5a30;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  .header-menu-toggle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transform: translateY(-8px);
  }
}
.header-menu-toggle[aria-expanded="true"] .header-menu-bars span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header-menu-toggle[aria-expanded="true"] .header-menu-bars span:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle[aria-expanded="true"] .header-menu-bars span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header-menu-bars {
  position: relative;
  display: block;
  width: 40px;
  height: 24px;
}
.header-menu-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fff;
  border-radius: 2.5px;
  transition:
    transform 0.3s,
    opacity 0.3s,
    top 0.3s;
}
.header-menu-bars span:nth-child(1) {
  top: 0;
}
.header-menu-bars span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header-menu-bars span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.header-menu-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  white-space: nowrap;
  color: var(--white, #fff);
  font-family: "M PLUS 1", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 767px) {
  .header-menu-label {
    margin-top: 2px;
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 767px) {
  .sp-menu {
    display: block;
    position: fixed;
    top: var(--header-h, 60px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h, 60px));
    max-height: 0;
    overflow: hidden;
    z-index: 90;
    background: #fff;
    transition: max-height 0.5s ease;
  }
}

@media (max-width: 767px) {
  body.is-menu-open .sp-menu {
    max-height: calc(100dvh - var(--header-h, 60px));
  }
}

@media (max-width: 767px) {
  body.is-menu-open .sp-menu-list {
    opacity: 1;
    transition-delay: 0.45s;
  }
}

.sp-menu.is-instant {
  transition: none;
}
.sp-menu.is-instant .sp-menu-list {
  transition: none;
}

@media (max-width: 767px) {
  .sp-menu-list {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: safe center;
    align-items: center;
    gap: 22px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
.sp-menu-list {
  margin: 0;
  padding: 28px 0 36px;
  list-style: none;
  text-align: center;
}
.sp-menu-list a {
  display: inline-block;
  font-family: "Alatsi", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  background: var(--gradation_blueblack, linear-gradient(90deg, #0028c7 0%, #000b35 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.en .message-text,
html.en .streaming-text,
html.en .game-text,
html.en .campaign-text {
  display: none;
}

body.is-zoom-open {
  overflow: hidden;
}

body.is-menu-open {
  touch-action: none;
}

html:has(body.is-zoom-open) {
  overflow: hidden;
}

.fade-up {
  opacity: 0;
  translate: 0 40px;
  transition:
    opacity 0.7s ease,
    translate 0.7s ease;
}
.fade-up.is-in {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    transition: none;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.is-in {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
}

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(0, 8, 40, 0.88);
}
.zoom-modal.is-open {
  display: block;
}

.zoom-modal-body {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 0;
  overflow: auto;
  cursor: default;
}
.zoom-modal-body.is-zoomed {
  display: block;
  cursor: grab;
}
.zoom-modal-body.is-zoomed .zoom-modal-image {
  max-width: none;
  max-height: none;
  width: auto;
  cursor: grab;
}
.zoom-modal-body.is-grabbing {
  cursor: grabbing;
}
.zoom-modal-body.is-grabbing .zoom-modal-image {
  cursor: grabbing;
}

.zoom-modal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.zoom-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: opacity 0.3s;
}
.zoom-modal-close:hover {
  opacity: 0.7;
}
.zoom-modal-close::before,
.zoom-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
}
.zoom-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.zoom-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) and (orientation: portrait) {
  .zoom-modal-close {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-top {
  position: relative;
}

.page-top {
  position: absolute;
  right: 40px;
  bottom: -20px;
  z-index: 3;
  display: block;
  width: 90px;
  transform: translateY(50%);
  transition:
    opacity 0.3s,
    filter 0.3s;
}
.page-top:hover {
  filter: brightness(1.1);
}
.page-top img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .page-top {
    top: -11%;
    right: 2%;
    bottom: auto;
    width: 15vw;
    transform: none;
  }
}

.l5-footer {
  padding: 30px 0;
  background: #333;
  color: var(--white, #fff);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .l5-footer {
    padding: 8vw 0;
  }
}
.l5-footer .inner {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .l5-footer .inner {
    display: block;
    padding: 0 6%;
  }
}
.l5-footer .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 767px) {
  .l5-footer .box {
    align-items: center;
    gap: 5vw;
    margin-bottom: 5vw;
  }
}
.l5-footer .link {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .l5-footer .link {
    flex-direction: column;
    gap: 3vw;
  }
}
.l5-footer .link a {
  display: inline-block;
  padding: 6px 30px;
  border: 2px solid var(--white, #fff);
  border-radius: 100px;
  color: var(--white, #fff);
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.l5-footer .link a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .l5-footer .link a {
    padding: 1.5vw 8vw;
    font-size: 3.4vw;
  }
}
.l5-footer .notes {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #808080;
  text-align: left;
}
.l5-footer .notes li {
  padding-left: 12px;
  font-size: 12px;
  line-height: 1.6;
  text-indent: -12px;
}
@media (max-width: 767px) {
  .l5-footer .notes li {
    padding-left: 2.5vw;
    font-size: 2.6vw;
    text-indent: -2.5vw;
  }
}
.l5-footer .copyright {
  font-size: 12px;
}
@media (max-width: 767px) {
  .l5-footer .copyright {
    display: block;
    font-size: 2.6vw;
  }
}
@media (min-width: 768px) {
  .l5-footer .copyright-area {
    margin-top: 7px;
  }
}

/* streaming/game/campaign はPC(768px〜)で固定px。中間幅の縮小はhtmlのzoomに任せる */
@media (min-width: 768px) {
  .campaign-desc {
    font-size: 24px;
  }
  .campaign-step {
    font-size: 16.67px;
  }
  .streaming-text {
    width: 169.4px;
  }
  .streaming-deco {
    width: 247px;
  }
  .game-deco {
    width: 320px;
  }
  .game-text {
    width: 72.9px;
  }
  .game-headline {
    width: 305px;
  }
  .campaign-text {
    width: 145.8px;
  }
  .campaign-headline {
    width: 565px;
  }
}

/* messageエリアはPC(768px〜)で固定px（原寸）。中間幅の縮小はhtmlのzoomに任せる */
@media (min-width: 768px) {
  .message-inner {
    width: 1000px;
    margin-inline: auto;
  }
  .message-title {
    margin-top: 160px;
  }
  .message-image1 {
    width: 297px;
  }
  .message-text {
    width: 110px;
  }
  .message-headline {
    width: 493px;
  }
  .message-comment {
    width: 964px;
  }
  .message-image3 {
    width: 222px;
  }
  .message-comment-text {
    font-size: 32px;
  }
  .message-name {
    font-size: 40px;
  }
  .message-movie5-link {
    width: 616px;
  }
  .message-image4 {
    width: 388px;
  }
}
