@charset "UTF-8";
/* clearfix
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900%7CRoboto+Condensed:700%7CInter:100,800%7CNoto+Serif+JP:wght@700&display=swap&subset=japanese");
/* =========================================================
function
========================================================= */
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* border-box
--------------------------------------------------------- */
* {
  box-sizing: border-box;
}

/* =========================================================
utility
========================================================= */
/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

/* =========================================================
base
========================================================= */
html {
  font-size: 62.5%;
}

html,
body {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  vertical-align: top;
}

body {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  color: #ffffff;
  background: #010101;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto 0;
}

.border-link {
  width: fit-content;
  height: 52px;
  margin: 0 auto;
  padding: 0 27px 0 27px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.64px;
}

/* =========================================================
アニメーション
========================================================= */
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all ease 0.5s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleUpLetter {
  0% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loadingCircle {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes openingDoor {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes openingLastDoor {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes openingDoorLight01 {
  0% {
    width: 0px;
  }
  100% {
    width: 9px;
  }
}
@keyframes openingDoorLight02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    background: radial-gradient(104.93% 104.93% at 50% 50%, rgba(255, 255, 255, 0.5) -140%, rgba(255, 255, 255, 0) 70%);
  }
  40% {
    opacity: 0.3;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background: radial-gradient(104.93% 104.93% at 50% 50%, rgba(255, 255, 255, 0.8) -90%, rgba(255, 255, 255, 0) 80%);
  }
  60% {
    opacity: 0.6;
    background: radial-gradient(104.93% 104.93% at 50% 50%, rgb(255, 255, 255) -80%, rgba(255, 255, 255, 0.3) 90%);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    background: radial-gradient(104.93% 104.93% at 50% 50%, rgb(255, 255, 255) -60%, rgba(255, 255, 255, 0.6) 90%);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    background: radial-gradient(104.93% 104.93% at 50% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 100%);
  }
}
/* =========================================================
style
========================================================= */
/*========= Loading ===============*/
#loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #000;
}
#loading .inner {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.3s 0s linear forwards;
}
#loading .anniversary-text {
  margin: -15px 0 0 10px;
}
#loading .campaign {
  font-size: 27.338px;
  font-weight: 900;
  line-height: 34.628px;
  letter-spacing: -1.094px;
  margin: -34px auto 5px;
}
#loading .loading-circle {
  position: relative;
  width: 70px;
  height: 70px;
}
#loading .loading-circle div {
  background-color: #ff0000;
  border-radius: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  margin: 0;
  width: 70px;
  height: 70px;
  -webkit-animation: loadingCircle 1.6s 0s linear infinite;
  animation: loadingCircle 1.6s 0s linear infinite;
}
#loading .loading-circle div:last-child {
  animation-delay: -0.4s;
}
#loading .loagin-text {
  font-size: 13.39px;
  font-weight: 100;
  line-height: 42.3px;
  font-family: "Inter", sans-serif;
}

/*========= オープニング / ガチャ ===============*/
#opening,
#gacha-opening {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #000;
}
#opening::before,
#gacha-opening::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  width: 386px;
  height: 386px;
  border-radius: 50%;
  margin: auto;
  background: radial-gradient(50% 50% at 50% 50%, #d70000 5%, rgba(255, 0, 0, 0) 100%);
}
#opening .door,
#gacha-opening .door {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 332px;
  height: 329px;
  z-index: 1;
}
#opening .door.door02,
#gacha-opening .door.door02 {
  opacity: 0;
}
#opening .door::before,
#gacha-opening .door::before {
  position: absolute;
  top: 61px;
  left: 101px;
  width: 0;
  height: 249px;
  content: "";
  background: #fff;
  box-shadow: 0px 0px 12px 0px #fff;
}
#opening.active .door,
#gacha-opening.active .door {
  animation: openingDoor 2s 0s linear forwards;
}
#opening.active .door::before,
#gacha-opening.active .door::before {
  animation: openingDoorLight01 1s 0.2s ease-in forwards;
}
#opening.active .door.door02,
#gacha-opening.active .door.door02 {
  opacity: 0;
  animation: fadeIn 1s 0.6s linear forwards;
}
#opening.active::after,
#gacha-opening.active::after {
  z-index: 20;
  -webkit-animation: openingDoorLight02 0.5s 1s forwards;
  animation: openingDoorLight02 0.5s 1s forwards;
}
#opening::after,
#gacha-opening::after {
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  margin: auto;
}

#opening .opening-text {
  width: 100%;
  max-width: 430px;
  position: absolute;
  font-family: "Noto Serif JP";
  font-weight: 700;
  white-space: nowrap;
  z-index: 20;
  left: 0;
  top: 348px;
  right: 0;
  margin: auto;
}
#opening .opening-text .text01 {
  left: -9px;
  text-shadow: 0px 1px 29px #000;
  font-size: 67px;
  line-height: 43px;
  letter-spacing: -2.68px;
  transform: rotate(-2.403deg);
}
#opening .opening-text .text02 {
  margin-top: 20px;
  padding-left: 16px;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
  font-size: 31px;
  line-height: 42px;
  letter-spacing: -1.24px;
  transform: rotate(1.304deg);
}

#gacha-opening {
  display: none;
}
#gacha-opening.active .door {
  animation: openingDoor 2s 0s linear forwards;
}
#gacha-opening.active .door::before {
  animation: openingDoorLight01 1s 0.2s ease-in forwards;
}
#gacha-opening.active .door.door02 {
  opacity: 0;
  animation: fadeIn 1s 0.6s linear forwards;
}
#gacha-opening.active::after {
  z-index: 20;
  -webkit-animation: openingDoorLight02 0.5s 1s forwards;
  animation: openingDoorLight02 0.5s 1s forwards;
}
#gacha-opening .door::before {
  position: absolute;
  top: 61px;
  left: 101px;
  width: 0;
  height: 249px;
  content: "";
}

/*========= header ===============*/
header {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  height: auto;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 10px 0 8px;
  display: flex;
  align-items: center;
  justify-content: end;
  background-image: radial-gradient(circle closest-corner at 50% -16%, #000000 35%, transparent 79%);
  opacity: 0;
}
header.active {
  animation: fadeIn 1.4s forwards;
}
header .logo {
  margin: 10px auto;
}
header .anniversary-text img {
  width: 137px;
  margin-left: auto;
  margin-top: -9px;
}
header .anniversary-text p {
  margin-top: -16px;
  padding-right: 13px;
  text-align: right;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 11.312px;
  font-weight: 900;
  line-height: 17.925px;
  letter-spacing: -0.452px;
}
header .menu-button {
  width: 29px;
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
}
header .menu-button span:first-child {
  margin-bottom: 4px;
}
header .menu-button span:last-child {
  margin-top: 4px;
}

/*========= メイン ===============*/
main .kv2{
  position: relative;
  z-index: 20;
}
main .kv {
  position: relative;
  width: 100%;
  height: 669px;
  overflow: hidden;
  min-height: fit-content;
  background-image: url("../img/kv-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: none;;
}
main .kv::before {
  content: "";
  position: absolute;
  z-index: 7;
  top: 227px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 332px;
  height: 282px;
  border-radius: 332px;
  background: #000;
  background-blend-mode: multiply;
  filter: blur(40px);
  opacity: 0;
}
main .kv::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 230px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 74%, rgba(0, 0, 0, 0.9) 92.5%, #000 70%);
}
main .kv .shibuya {
  margin-top: 77px;
  opacity: 0;
  width: 100%;
  height: auto;
}
main .kv .character {
  position: absolute;
  opacity: 0;
}
main .kv .character.character01 {
  top: 316px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
}
main .kv .character.character02 {
  top: 116px;
  left: 0;
  z-index: 9;
  width: 100%;
  height: auto;
}
main .kv .character.character03 {
  top: 196px;
  left: 0;
  z-index: 8;
  width: 100%;
  height: auto;
}
main .kv .character.character04 {
  top: 77px;
  left: 0;
  z-index: 6;
  width: 100%;
  height: auto;
}
main .kv .character.character05 {
  top: 144px;
  right: 0;
  z-index: 5;
}
main .kv .character.character06 {
  top: 74px;
  left: 0;
  z-index: 4;
  width: 100%;
  height: auto;
}
main .kv .character.character07 {
  top: 49px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: auto;
}
main .kv .character.character08 {
  top: 49px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
main .kv .character.character09 {
  top: 38px;
  left: 0;
  z-index: 1;
  animation-delay: 0.9s;
}
main .kv .title-wrapper {
  position: absolute;
  top: 227px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 12;
}
main .kv .title-wrapper .title {
  position: relative;
  width: fit-content;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
main .kv .title-wrapper .title.title02 {
  margin-top: -15px;
}
main .kv .title-wrapper .title.title03 {
  margin-top: -22px;
}
main .kv .title-wrapper .title img {
  display: inline-block;
  opacity: 0;
}
main .kv .title-wrapper .title::after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  transform: translate3d(-101%, 0, 0);
}
main .kv .title-wrapper .title.show::after {
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-delay: 0s;
  transform: translate3d(0, 0, 0);
}
main .kv .title-wrapper .title.comlete img {
  opacity: 1;
}
main .kv .title-wrapper .title.comlete::after {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-delay: 0s;
  transform: translate3d(103%, 0, 0);
}
main .kv .logo {
  position: absolute;
  top: 521px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 12;
  opacity: 0;
}
main .kv.active::before {
  animation: fadeIn 3s 0.7s forwards;
}
main .kv.active .shibuya {
  animation: fadeIn 2.6s 0.1s forwards ease;
}
main .kv.active .character {
  animation: fadeUp 1.5s forwards ease;
  will-change: transform;
}
main .kv.active .character.character01 {
  animation-delay: 0.6s;
}
main .kv.active .character.character02 {
  animation-delay: 0.55s;
}
main .kv.active .character.character03 {
  animation-delay: 0.5s;
}
main .kv.active .character.character04 {
  animation-delay: 0.3s;
}
main .kv.active .character.character05 {
  animation-delay: 0.2s;
}
main .kv.active .character.character06 {
  animation-delay: 0.1s;
}
main .kv.active .character.character07 {
  animation-delay: 0s;
}
main .kv.active .character.character08 {
  animation-delay: 2.3s;
  animation: fadeUp 2.5s forwards ease;
}
main .kv.active .character.character09 {
  animation-delay: 2.4s;
  animation: fadeUp 2.5s forwards ease;
}
main .kv.active .logo {
  animation: fadeIn 1s 1.3s forwards ease-in-out;
}
main .intro {
  width: 100%;
  position: relative;
  padding: 0 0 45px;
  text-align: center;
  margin-top: -51px;
  z-index: 10;
}
main .intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 9;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 27%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
  background-blend-mode: multiply;
}
main .intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 22%, rgba(0, 0, 0, 0.8) 41%);
  background-blend-mode: multiply;
}
main .intro .intro-bg-space {
  position: sticky;
  top: 0;
}
main .intro .intro-bg-space .intro-bg {
  z-index: 0;
}
main .intro .intro-bg-space .intro-bg video {
  width: 100%;
}
main .intro .intro-bg-space .intro-bg.fixed {
  position: fixed;
}
main .intro .fadein-text-wrapper {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
}
main .intro .fadein-text-wrapper .text01,
main .intro .fadein-text-wrapper .text02 {
  position: absolute;
  right: 0;
  top: 0;
}
main .intro .fadein-text-wrapper .text01.scrollin,
main .intro .fadein-text-wrapper .text02.scrollin {
  animation: fadeUp 2s ease forwards;
}
main .intro .fadein-text-wrapper .text01.scrollin {
  animation-delay: 0s;
}
main .intro .fadein-text-wrapper .text02 {
  left: 0;
}
main .intro .fadein-text-wrapper .text02.scrollin {
  animation-delay: 1s;
}
main .intro .text-wrapper {
  position: relative;
  z-index: 20;
  margin: 0 auto;
  text-align: center;
}
main .intro .text-wrapper p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-bottom: 5px;
}
main .intro .text-wrapper h2 {
  padding-bottom: 17px;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}
main .intro .text-wrapper .about-modal-trigger {
  display: flex;
  justify-content: center;
  color: #00c2ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.56px;
}
main .intro .anniversary-text {
  position: relative;
  z-index: 20;
  width: 343px;
  margin-left: 16px;
}
main .intro .contents-title {
  width: fit-content;
  position: relative;
  z-index: 20;
  margin: 10px auto 0;
  font-size: 31.048px;
  font-weight: 900;
  line-height: 31.048px;
  padding-bottom: 10px;
}
main .intro .contents-text {
  position: relative;
  z-index: 20;
  width: 280px;
  margin: 0 auto;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.56px;
}
main .intro .contents-text span {
  font-weight: 900;
}
main .intro .finish-message {
  position: relative;
  z-index: 20;
  padding: 24px 0 0px;
}
main .intro .finish-message h4 {
  font-size: 19px;
  color: #fff;
  font-weight: 700;
  line-height: 29px;
  padding-bottom: 11px;
}
main .intro .finish-message p {
  font-size: 14px;
  color: #fff;
  line-height: 21px;
}


main .intro .finish-message .program {
  margin: 0 34px;
}
main .intro .finish-message ul {}
main .intro .finish-message ul li {
      align-items: center;
          margin-bottom: 13px;
}
main .intro .finish-message ul li .mission {
  font-size: 35px;
  font-family: "DIN Condensed";
  line-height: 1;
}
main .intro .finish-message ul li .mission span {
    font-size: 11px;
    display: block;
    margin-bottom: 6px;
}
main .intro .finish-message ul li .tit {
  font-size: 20px;
    font-weight: 600;
}
main .intro ul {
  position: relative;
  width: 100%;
  z-index: 20;
  padding-top: 28px;
}
main .intro ul li {
  display: flex;
  gap: 22px;
  padding: 0 0 0 34px;
  margin-bottom: 25px;
}
main .intro ul li .number {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 20px;
}
main .intro ul li .number::before {
  content: "MISSION";
  color: #fff;
  text-align: center;
  font-family: "din-condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  padding-bottom: 8px;
}
main .intro ul li .mission-text {
  width: 244px;
  text-align: left;
  padding-top: 5px;
  position: relative;
}
main .intro ul li .mission-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -32px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url("../img/arrow_cool_down.svg");
  background-size: 20px;
  background-repeat: no-repeat;
}
main .intro ul li .mission-text h3 {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 900;
  line-height: 20px;
  padding-bottom: 8px;
}
main .intro ul li .mission-text p {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.rainbow-border {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
}

.mission {
  position: relative;
}
.mission.glitch {
  background: #000 no-repeat center;
  background-size: 0;
  height: 100%;
  overflow: hidden;
}
.mission.glitch::before, .mission.glitch::after,
.mission.glitch .channel {
  background: inherit;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.mission.glitch::before {
  animation: glitch-before 3s linear infinite alternate both;
  content: "";
}
@keyframes glitch-before {
  0% {
    clip-path: polygon(0% 85.305377208%, 100% 85.305377208%, 100% 92.6739976836%, 0% 92.6739976836%);
    transform: translate(0.2014079446%, -0.3889294665%);
  }
  2% {
    clip-path: polygon(0% 28.836051486%, 100% 28.836051486%, 100% 35.4318087745%, 0% 35.4318087745%);
    transform: translate(-4.5432129325%, -0.1740568899%);
  }
  4% {
    clip-path: polygon(0% 18.3826623305%, 100% 18.3826623305%, 100% 27.3109208374%, 0% 27.3109208374%);
    transform: translate(5.3708896648%, 0.0338815138%);
  }
  6% {
    clip-path: polygon(0% 22.290727437%, 100% 22.290727437%, 100% 23.7740472625%, 0% 23.7740472625%);
    transform: translate(-0.7711176765%, 0.0344151216%);
  }
  8% {
    clip-path: polygon(0% 19.4579329257%, 100% 19.4579329257%, 100% 24.661428432%, 0% 24.661428432%);
    transform: translate(-2.9415682543%, -0.4834171369%);
  }
  10% {
    clip-path: polygon(0% 74.0324076658%, 100% 74.0324076658%, 100% 75.5798603107%, 0% 75.5798603107%);
    transform: translate(1.7382760554%, 0.303140086%);
  }
  12% {
    clip-path: polygon(0% 72.5828031876%, 100% 72.5828031876%, 100% 81.8529933294%, 0% 81.8529933294%);
    transform: translate(4.7147902113%, 0.0536541557%);
  }
  14% {
    clip-path: polygon(0% 2.4646417068%, 100% 2.4646417068%, 100% 5.5935396604%, 0% 5.5935396604%);
    transform: translate(-4.4730205247%, 0.464292639%);
  }
  16% {
    clip-path: polygon(0% 37.2774121662%, 100% 37.2774121662%, 100% 47.1063037599%, 0% 47.1063037599%);
    transform: translate(-5.8267236655%, 0.4040288024%);
  }
  18% {
    clip-path: polygon(0% 62.7729549275%, 100% 62.7729549275%, 100% 66.0706961891%, 0% 66.0706961891%);
    transform: translate(-6.1289883984%, -0.1414504016%);
  }
  20%, 100% {
    clip-path: none;
    transform: none;
  }
}
.mission.glitch::after {
  animation: glitch-after 3s linear infinite alternate both;
  content: "";
}
@keyframes glitch-after {
  0% {
    clip-path: polygon(0% 23.4708228525%, 100% 23.4708228525%, 100% 26.1777988093%, 0% 26.1777988093%);
    transform: translate(-3.7846910782%, -0.4867942284%);
  }
  2% {
    clip-path: polygon(0% 59.1866316396%, 100% 59.1866316396%, 100% 65.2699093536%, 0% 65.2699093536%);
    transform: translate(2.3304416948%, -0.4493118258%);
  }
  4% {
    clip-path: polygon(0% 75.7141094951%, 100% 75.7141094951%, 100% 80.586855293%, 0% 80.586855293%);
    transform: translate(7.7722306638%, -0.3125572514%);
  }
  6% {
    clip-path: polygon(0% 0.7438711802%, 100% 0.7438711802%, 100% 6.7064381106%, 0% 6.7064381106%);
    transform: translate(4.5485864278%, 0.2828617755%);
  }
  8% {
    clip-path: polygon(0% 22.3527386461%, 100% 22.3527386461%, 100% 29.8175803999%, 0% 29.8175803999%);
    transform: translate(1.9443837957%, 0.2785069867%);
  }
  10% {
    clip-path: polygon(0% 81.635581495%, 100% 81.635581495%, 100% 84.3510914002%, 0% 84.3510914002%);
    transform: translate(-0.7873770327%, 0.107805472%);
  }
  12% {
    clip-path: polygon(0% 86.0849308838%, 100% 86.0849308838%, 100% 90.9267586424%, 0% 90.9267586424%);
    transform: translate(0.4706671098%, 0.1377505406%);
  }
  14% {
    clip-path: polygon(0% 53.9828332121%, 100% 53.9828332121%, 100% 62.455147734%, 0% 62.455147734%);
    transform: translate(0.1424194519%, 0.1862010925%);
  }
  16% {
    clip-path: polygon(0% 9.7523211355%, 100% 9.7523211355%, 100% 17.5133133153%, 0% 17.5133133153%);
    transform: translate(-2.948481476%, 0.4348469376%);
  }
  18% {
    clip-path: polygon(0% 39.2985443146%, 100% 39.2985443146%, 100% 44.4621856102%, 0% 44.4621856102%);
    transform: translate(5.9412723084%, 0.378976498%);
  }
  20%, 100% {
    clip-path: none;
    transform: none;
  }
}
.mission.glitch .channel {
  mix-blend-mode: screen;
}
.mission.glitch .channel::before {
  bottom: 0;
  content: "";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.mission.glitch .r {
  animation: rgb-shift-r 3s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(1.9956200941%, 0.2334254846%);
  }
  2% {
    transform: translate(1.1807439624%, -0.254522287%);
  }
  4% {
    transform: translate(-0.7700697259%, -0.1124300867%);
  }
  6% {
    transform: translate(0.2360032249%, 0.3437643294%);
  }
  8% {
    transform: translate(-1.3580510652%, 0.302206902%);
  }
  10% {
    transform: translate(-1.1110864344%, 0.0812275864%);
  }
  12% {
    transform: translate(-0.3794013045%, -0.0036707463%);
  }
  14% {
    transform: translate(0.499537243%, -0.3538416896%);
  }
  16% {
    transform: translate(1.8195373097%, -0.1125824814%);
  }
  18% {
    transform: translate(-1.8237487746%, 0.2547274425%);
  }
  20%, 100% {
    transform: none;
  }
}
.mission.glitch .r::before {
  background: #f00;
}
.mission.glitch .g {
  animation: rgb-shift-g 3s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(-1.4691980032%, -0.1913420916%);
  }
  2% {
    transform: translate(-1.1467054628%, 0.2270029502%);
  }
  4% {
    transform: translate(0.804811595%, -0.4684476845%);
  }
  6% {
    transform: translate(0.0645219082%, -0.2332778236%);
  }
  8% {
    transform: translate(1.6337347793%, -0.0800130631%);
  }
  10% {
    transform: translate(-0.601298402%, 0.3185984956%);
  }
  12% {
    transform: translate(1.71516199%, 0.2444883002%);
  }
  14% {
    transform: translate(0.5904917542%, -0.180438007%);
  }
  16% {
    transform: translate(0.6609622804%, -0.4056469334%);
  }
  18% {
    transform: translate(-1.1706340173%, -0.1844523559%);
  }
  20%, 100% {
    transform: none;
  }
}
.mission.glitch .g::before {
  background: #0f0;
}
.mission.glitch .b {
  animation: rgb-shift-b 3s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(-0.5384749588%, -0.0557852372%);
  }
  2% {
    transform: translate(1.8867515716%, -0.2379621517%);
  }
  4% {
    transform: translate(0.4613824605%, 0.4028904707%);
  }
  6% {
    transform: translate(0.9239739208%, -0.1900485664%);
  }
  8% {
    transform: translate(-0.3858191609%, 0.1161955249%);
  }
  10% {
    transform: translate(0.1012628014%, 0.1896184288%);
  }
  12% {
    transform: translate(-1.9911259592%, -0.1681819088%);
  }
  14% {
    transform: translate(1.7115772849%, 0.221099616%);
  }
  16% {
    transform: translate(1.5704368084%, 0.1278910621%);
  }
  18% {
    transform: translate(1.4442179656%, -0.1586552655%);
  }
  20%, 100% {
    transform: none;
  }
}
.mission.glitch .b::before {
  background: #00f;
}
.mission .layer {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(358deg, #000 33.94%, rgba(0, 0, 0, 0.68) 60.66%, rgba(0, 0, 0, 0) 80.16%);
}
.mission .title {
  position: relative;
  z-index: 1;
}
.mission .title .number {
        font-family: "DIN Condensed";
    font-size: 17px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 1px;
    padding-bottom: 0;
    text-align: center;
    background-color: #000;
    width: 93px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin: 0 auto;
}
.mission .title .number span {
  padding-left: 6px;
  font-family: "Inter", sans-serif;

}
.mission .title h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 30px;
  text-align: center;
}
.mission .title h2 span {
  opacity: 0;
  font-size: 24px;
  letter-spacing: -0.45vw;
}
.mission .title.scrollin h2 span {
  animation: fadeIn 0.3s 1 forwards ease-in-out, scaleUpLetter 0.3s 1 ease-in-out;
}
.mission .contents {
  position: relative;
  z-index: 1;
}
.mission .contents .prize-wrapper {
  display: flex;
  gap: 13px;
  margin: 20px 0 20px;
}
.mission .contents .prize-wrapper .prize {
  position: relative;
}
.mission.mission01 {
  position: relative;
  z-index: 22;
  padding: 0px 0px 37px;
}
.mission.mission01 .title {
  padding: 180px 34px 0;
  background-position: 19px 0px;
}
.mission.mission01 .contents {
  padding: 22px 34px 0px 34px;
}
.mission.mission01 .contents .yellow-text {
  color: #ffc700;
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.1rem;
}
.mission.mission01 .contents .prize-wrapper .prize::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("../img/zoom-icon.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.mission.mission01 .contents .prize-wrapper .prize img {
  border-radius: 7px;
}
.mission.mission01 .contents p {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.64px;
}
.mission.mission01 .contents p.note {
  padding-top: 5px;
  color: #b6b6b6;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.48px;
  font-weight: 400;
}
.mission.mission01 .contents ul {
      padding-top: 16px;
    margin-bottom: 22px;
    text-align: center;
}
.mission.mission01 .contents ul li {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.64px;
}
.mission.mission01 .prize-modal-wrapper .container .content .prize img {
  width: 100%;
  height: auto;
}
.mission.mission02 {
  padding: 0px 0px 37px;
}
.mission.mission02 .title {
  text-align: right;
      padding: 270px 34px 40px;
  background-position: top 36px right 21px;
}
.mission.mission02 .contents .blue-text {
      padding: 19px 30px 0 30px;
    text-align: right;
    color: #00d1ff;
    font-size: 18px;
    font-weight: 900;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.1rem;
}
.mission.mission02 .contents .prize-wrapper {
  justify-content: center;
  gap: 3px;
}
.mission.mission02 .contents p.text {
  padding: 0 30px 14px 34px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.64px;
}
.mission.mission02 .contents p.note {
      padding: 16px 0 28px 0;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.64px;
    font-weight: 400;
    text-align: center;
}
.mission.mission03 {
  padding: 0px 0px 62px;
}
.mission.mission03::before {
  background: linear-gradient(358deg, #000 33.94%, rgba(0, 0, 0, 0.68) 56.66%, rgba(0, 0, 0, 0) 80.16%);
}
.mission.mission03 .title {
      padding: 270px 34px 0px;
  text-align: center;
  background-position: top 237px center;
}
.mission.mission03 .title .number {
  padding-bottom: 5px;
}
.mission.mission03 .contents .rainbow-text {
  padding: 17px 0 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission.mission03 .contents .prize-banner {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 326px;
  height: 99px;
  margin: 10px auto 8px;
  border-radius: 7px;
  overflow: hidden;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 91px;
  letter-spacing: 0.76px;
}
.mission.mission03 .contents .prize-banner::before, .mission.mission03 .contents .prize-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.mission.mission03 .contents .prize-banner::before {
  border-radius: 7px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
  z-index: 0;
}
.mission.mission03 .contents .prize-banner::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 7px;
  z-index: 0;
  background-color: #000;
}
.mission.mission03 .contents .prize-banner img,
.mission.mission03 .contents .prize-banner .text {
  position: relative;
  z-index: 1;
}
.mission.mission03 .contents .prize-banner img {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  margin: 1px;
}
.mission.mission03 .contents .prize-banner .text {
  text-align: left;
  padding: 21px 23px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.64px;
}
.mission.mission03 .contents .prize-banner .text span {
  display: block;
  color: #898989;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.4px;
}
.mission.mission03 .contents p.text {
  padding: 0 30px 14px 34px;
      font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.05rem;
}
.mission.mission03 .contents p.text.text02 {
  padding: 0 30px 17px 34px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.64px;
  text-align: left;
}
.mission.mission03 .contents p.note {
      padding: 16px 0 28px 0;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.64px;
    font-weight: 400;
    text-align: center;
}

.other-event {
  background-color: #181818;
  padding: 26px 15px 8px;
}
.other-event .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.18px;
  padding-bottom: 15px;
}
.other-event .event-banner {
  display: block;
  width: 361px;
  margin: 0px auto 2px;
  border-radius: 8px;
  overflow: hidden;
}
.other-event .event-banner:last-child {
  margin: 18px auto 20px;
}

.news {
  padding: 61px 22px 31px 34px;
}
.news .title {
  padding-bottom: 31px;
  text-align: left;
  font-family: "din-condensed", sans-serif;
  font-size: 37px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.74px;
}
.news .news-item {
  padding: 15px 0;
  border-top: 1px solid #343434;
  border-bottom: 1px solid #343434;
}
.news .news-item p {
  line-height: 25px;
}
.news .news-item .inner {
  display: flex;
}
.news .news-item .inner .text-wrapper {
  margin-bottom: 10px;
  padding-right: 10px;
}
.news .news-item .inner .text-wrapper .date {
  color: #b3b3b3;
  font-size: 14px;
  letter-spacing: 0.56px;
}
.news .news-item .inner .text-wrapper .news-title {
  padding: 8px 0 13px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.76px;
}
.news .news-item .inner .text-wrapper .text {
  color: #ddd;
  font-size: 16px;
  letter-spacing: 0.64px;
}
.news .news-item .inner img {
  margin-top: 35px;
}
.news .news-item .note {
  color: #b6b6b6;
  font-size: 12px;
  letter-spacing: 0.48px;
}

/*========= モーダル ===============*/
.about-modal-wrapper,
.gacha-explain-modal-wrapper,
.gacha-result-modal-wrapper,
.prize-modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 100%;
}
.about-modal-wrapper .layer,
.gacha-explain-modal-wrapper .layer,
.gacha-result-modal-wrapper .layer,
.prize-modal-wrapper .layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.5);
  cursor: pointer;
}
.about-modal-wrapper .container,
.gacha-explain-modal-wrapper .container,
.gacha-result-modal-wrapper .container,
.prize-modal-wrapper .container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: calc(100% - 34px);
  max-width: 359px;
  max-height: calc(100% - 40px);
}
.about-modal-wrapper .container .close,
.gacha-explain-modal-wrapper .container .close,
.gacha-result-modal-wrapper .container .close,
.prize-modal-wrapper .container .close {
  position: absolute;
  top: -60px;
  right: 0px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
}
.about-modal-wrapper .container .close:hover,
.gacha-explain-modal-wrapper .container .close:hover,
.gacha-result-modal-wrapper .container .close:hover,
.prize-modal-wrapper .container .close:hover {
  opacity: 0.6;
}
.about-modal-wrapper .container .close:before, .about-modal-wrapper .container .close:after,
.gacha-explain-modal-wrapper .container .close:before,
.gacha-explain-modal-wrapper .container .close:after,
.gacha-result-modal-wrapper .container .close:before,
.gacha-result-modal-wrapper .container .close:after,
.prize-modal-wrapper .container .close:before,
.prize-modal-wrapper .container .close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}
.about-modal-wrapper .container .close:before,
.gacha-explain-modal-wrapper .container .close:before,
.gacha-result-modal-wrapper .container .close:before,
.prize-modal-wrapper .container .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.about-modal-wrapper .container .close:after,
.gacha-explain-modal-wrapper .container .close:after,
.gacha-result-modal-wrapper .container .close:after,
.prize-modal-wrapper .container .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.about-modal-wrapper .container .content,
.gacha-explain-modal-wrapper .container .content,
.gacha-result-modal-wrapper .container .content,
.prize-modal-wrapper .container .content {
  z-index: 1;
}

.about-modal-wrapper .container .content {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
}
.about-modal-wrapper .container .content video {
  width: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.about-modal-wrapper .container .content h3 {
  padding: 16px 22px 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 26.1px;
  letter-spacing: 0.4px;
}
.about-modal-wrapper .container .content p {
      padding: 0 22px 42px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

.gacha-result-modal-wrapper .container {
  border-radius: 12px;
  width: calc(100% - 34px);
  max-width: 359px;
  margin: 0 auto;
  width: 100%;
  height: 370px;
  overflow: hidden;
  min-height: fit-content;
}
.gacha-result-modal-wrapper .container .content {
  background-image: url("../img/kv-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  padding: 30px 0;
  text-align: center;
}
.gacha-result-modal-wrapper .container .content > img {
  margin-bottom: 9px;
  width: 196px;
  height: auto;
  margin-top: -21px;
}
.gacha-result-modal-wrapper .container .content .lead {
  text-shadow: 0px 1px 20px #000;
  font-size: 29px;
  font-weight: 900;
  line-height: 32px;
  margin-top: -21px;
}
.gacha-result-modal-wrapper .container .content .lead span {
  color: #ff4d4d;
}
.gacha-result-modal-wrapper .container .content > p {
  font-size: 20px;
  font-weight: 900;
  line-height: 32px;
}
.gacha-result-modal-wrapper .container .content .rainbow-button {
  margin-top: 27px;
}

.gacha-explain-modal-wrapper .container {
  border-radius: 12px;
  overflow-y: scroll;
  overflow-x: clip;
  margin: 0 auto;
}
.gacha-explain-modal-wrapper .container .content .main {
  background: linear-gradient(0deg, #000 37.27%, #b30000 100%);
  height: 350px;
  padding: 11px 0 0;
}
.gacha-explain-modal-wrapper .container .content .main .row {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  width: 96%;
  margin: 0 auto;
}
.gacha-explain-modal-wrapper .container .content .main .row img {
  min-width: 0;
}
.gacha-explain-modal-wrapper .container .content .main > p {
  margin-left: auto;
  padding-right: 11px;
  width: 327px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}
.gacha-explain-modal-wrapper .container .content .main > p span {
  color: #ff4d4d;
}
.gacha-explain-modal-wrapper .container .content .more {
  display: block;
}
.gacha-explain-modal-wrapper .container .content .prize-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.gacha-explain-modal-wrapper .container .content .total {
  background: #d40000;
  padding: 10px 26px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.gacha-explain-modal-wrapper .container .content .total p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-right: 16px;
}
.gacha-explain-modal-wrapper .container .content .total p.total-gacha-number {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.gacha-explain-modal-wrapper .container .content .preiod {
  background: #faff00;
  padding: 10px 26px;
}
.gacha-explain-modal-wrapper .container .content .preiod p {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #000;
  font-size: 16px;
}
.gacha-explain-modal-wrapper .container .content .preiod p span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.48px;
}
.gacha-explain-modal-wrapper .container .content .preiod p span.label {
  padding-right: 16px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
}
.gacha-explain-modal-wrapper .container .content .detail {
  background-color: #fff;
  padding: 13px 15px;
}
.gacha-explain-modal-wrapper .container .content .detail .item .label {
  padding: 5px 12px;
  border-radius: 4px;
  background: #e1eef6;
  color: #325589;
  font-size: 14px;
  font-weight: 700;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents {
  padding: 13px 12px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents p {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents p.bold {
  font-weight: 700;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents p.small {
  font-size: 12px;
  padding-top: 7px;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents .reward {
  display: flex;
  padding-bottom: 8px;
  gap: 11px;
}
.gacha-explain-modal-wrapper .container .content .detail .item .contents .reward .reward-label {
  width: 81px;
}
.gacha-explain-modal-wrapper .container .content .detail .item.red {
  padding-bottom: 20px;
}
.gacha-explain-modal-wrapper .container .content .detail .item.red .label {
  background: #ffdede;
  color: #da0d00;
}
.gacha-explain-modal-wrapper .container .content .detail ul {
  padding-left: 20px;
  padding-bottom: 24px;
  list-style-type: disc;
}
.gacha-explain-modal-wrapper .container .content .detail ul.how-to-apply li {
  padding-bottom: 8px;
}
.gacha-explain-modal-wrapper .container .content .detail ul.how-to-apply li:last-child {
  padding-bottom: 0px;
}
.gacha-explain-modal-wrapper .container .content .detail ul .list-title {
  padding-bottom: 5px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
.gacha-explain-modal-wrapper .container .content .detail ul > p {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.gacha-explain-modal-wrapper .container .content .detail ul li {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.gacha-explain-modal-wrapper .container .content .detail ul li a {
  color: #0047ff;
}
.gacha-explain-modal-wrapper .container .content .detail ul .note {
  padding-top: 8px;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  line-height: 13px; /* 130% */
}

.rainbow-button {
  position: relative;
  margin: auto;
  width: 160px;
  height: 42px;
  background: #000;
  border-radius: 26px;
  background-color: #000;
}
.rainbow-button::before {
  margin: auto;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 26px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
  z-index: 0;
}
.rainbow-button::after {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 26px;
  z-index: 0;
  background-color: #000;
}
.rainbow-button > p {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  line-height: 42px;
  letter-spacing: -0.51px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rainbow-button.hit-tweet {
  width: 286px;
  display: block;
}

.rainbow-text {
      width: 100%;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  line-height: 42px;
  letter-spacing: -0.51px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-radus-link {
  display: flex;
  align-items: center;
  margin: 9px auto 0;
  gap: 7px;
  padding-left: 20px;
  width: 160px;
  height: 42px;
  border-radius: 26px;
  background-color: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: -0.51px;
}

/*========= 固定バー ===============*/
.fixed-bar {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  max-width: 430px;
  height: 63px;
  margin: 0 auto;
  opacity: 0;
  display: flex;
}
.fixed-bar.active {
  animation: fadeIn 1.4s forwards;
}
.fixed-bar .item {
  width: 100%;
}
.fixed-bar .item.gacha {
  position: relative;
  height: 63px;
}
.fixed-bar .item.gacha .rainbow-border {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d1ff 2.46%, #3de900 32.42%, #fee60f 58.79%, #ff2f2f 83.98%, #ff037c 98.24%);
}
.fixed-bar .item.gacha .inner {
  height: 60px;
  gap: 6px;
  display: flex;
  justify-content: space-between;
  background-color: #000;
}
.fixed-bar .item.gacha .inner .logo {
  margin-top: -18px;
}
.fixed-bar .item.gacha .inner .text {
  text-align: right;
  margin-top: -11px;
  padding-right: 6px;
}
.fixed-bar .item.gacha .inner .text .stage {
  font-family: "DIN Condensed";
  font-size: 12px;
  font-weight: 600;
  line-height: 9px;
  padding: 6px 0 0;
}
.fixed-bar .item.gacha .inner .text .stage span {
  font-size: 20px;
  font-family: "DIN Condensed";
  font-weight: 600;
  line-height: 9px;
}
.fixed-bar .item.gacha .inner .text .number {
  font-family: "DIN Condensed";
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}
.fixed-bar .item.line-manga a {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 63px;
  padding: 0 15px;
  background-color: #00d25a;
  color: #fff;
  justify-content: center;
}
.fixed-bar .item.line-manga a .text p {
  font-weight: 700;
  font-size: 18px;
}
.fixed-bar .item.line-manga a .text p:last-child {
  margin-top: -5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.fixed-bar .item.line-manga .text p {
  font-weight: 700;
  font-size: 13px;
}
.fixed-bar .item.line-manga .text p:last-child {
  margin-top: -5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

/*========= フッター ===============*/
footer {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background-color: #181818;
  padding: 32px 34px 130px;
}
footer ul {
  padding-bottom: 63px;
}
footer ul li {
  position: relative;
  margin-bottom: 13px;
}
footer ul li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  background-size: contain;
  background-position: center;
  background-image: url("../img/external-link.svg");
}
footer ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.56px;
  padding-left: 28px;
}
footer .notes {
  padding-bottom: 43px;
}
footer .notes h5 {
  color: #ddd;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.56px;
  padding-bottom: 10px;
}
footer .notes p {
  color: #ddd;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.52px;
}
footer .notes p a {
  color: #87beff;
}

.hit-view {
  display: none;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto 70px;
  text-align: center;
}
.hit-view .hit-img {
  width: 100%;
  height: auto;
}
.hit-view .total {
  background: #d40000;
  padding: 10px 26px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.hit-view .total p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-right: 16px;
}
.hit-view .total p.total-gacha-number {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hit-view h4 {
  padding: 23px 0 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}
.hit-view > p {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
.hit-view > p.attension {
  width: 286px;
  margin: 0 auto;
  padding-top: 0;
  color: #f00;
}
.hit-view .must-read-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding-top: 23px;
}
.hit-view .must-read {
  width: 286px;
  height: 147px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #0b0b0b;
  overflow-y: scroll;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}
.hit-view .must-read ul {
  list-style-type: disc;
  padding-left: 20px;
}
.hit-view .must-read a {
  color: #0047ff;
}
.hit-view .note {
  padding-top: 29px;
  color: #ff4343;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px; /* 150% */
}
.hit-view .to-top {
  color: #959595;
}

footer p {
  font-size: 11px;
  color: #b9b9b9;
  text-align: left;
}

/*# sourceMappingURL=style.css.map */
