@charset "UTF-8";
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

:root {
  /*--------------------------------------------　font
  ---------------------------------------------*/
  --thin: 100;
  --ex-light: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --ex-bold: 800;
  --black: 900;
  --font-jp: "Noto Sans JP", sans-serif;
  /*--------------------------------------------　color
  ---------------------------------------------*/
  --bck: #000;
  --wte: #fff;
  /*--------------------------------------------　easing
  ---------------------------------------------*/
  --ease-nav: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-hover: cubic-bezier(0.43, 0.05, 0.17, 1);
  --ease-reveal: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-base: cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

/*--------------------------------------------　Media Query
---------------------------------------------*/
/*--------------------------------------------　Mixin
---------------------------------------------*/
/*--------------------------------------------　Keyframe
---------------------------------------------*/
@keyframes bounceAlpha {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(2rem) scale(0.9);
    @media screen and (min-width: 769px) {
      transform: translateX(1.5rem) scale(0.9);
    }
  }
  26% {
    opacity: 0;
    transform: translateX(-2rem) scale(0.9);
    @media screen and (min-width: 769px) {
      transform: translateX(-1.5rem) scale(0.9);
    }
  }
  55% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 -28px 3px #41E7F4;
  }
  40% {
    box-shadow: 0 0 15px 3px #41E7F4;
  }
  60% {
    box-shadow: 0 0 15px 3px #41E7F4;
  }
  100% {
    box-shadow: 0 0 -28px 3px #41E7F4;
  }
}
@keyframes moonshine {
  0% {
    text-shadow: 0 0 50px yellow;
  }
  50% {
    text-shadow: 0 0 100px yellow;
  }
  100% {
    text-shadow: 0 0 50px yellow;
  }
}
@keyframes blur {
  0% {
    filter: blur(0.8rem);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes shooting-star {
  0% {
    background-position-x: 0%;
    opacity: 0.5;
  }
  5% {
    background-position-x: 100%;
    opacity: 0.5;
  }
  10% {
    background-position-x: 200%;
    opacity: 0;
  }
  100% {
    background-position-x: 200%;
    opacity: 0;
  }
}
/*--------------------------------------------　Function
---------------------------------------------*/
/*--------------------------------------------　Base
---------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: var(--bck);
  font-family: var(--font-jp);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: var(--regular);
}
@media screen and (min-width: 768px) {
  body {
    /* 16px */
    font-size: 1.6rem;
  }
}

/*--------------------------------------------　page
---------------------------------------------*/
.page__inner {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.page__flex {
  display: flex;
}
.page__flex > * {
  flex-shrink: 0;
  width: auto;
}
.page__flex.--v {
  flex-direction: column;
}
.page__flex.--i {
  display: inline-flex;
}
.page__img {
  display: block;
  font-size: 0;
}
.page__img img,
.page__img video,
.page__img iframe,
.page__img svg,
.page__img path,
.page__img g {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page {
  /*--------------------------------------------　color
  ---------------------------------------------*/
}
.page__wte {
  color: var(--wte);
}
.page__bck {
  color: var(--bck);
}
.page__bgWte {
  background-color: var(--wte);
}
.page__bgBck {
  background-color: var(--bck);
}
.page {
  /*--------------------------------------------　z-index
  ---------------------------------------------*/
}
.page__100 {
  z-index: 100;
}
.page__10 {
  z-index: 10;
}
.page__1 {
  z-index: 1;
}

/*--------------------------------------------　ikebukuro-fv
---------------------------------------------*/
.ikebukuro-fv {
  background-image: url("../img/fv-sp.jpg");
  background-position: 50% 50%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 62rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv {
    background-image: url("../img/fv.jpg");
    background-position: 50% 50%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 69.4444444444vw;
  }
}
.ikebukuro-fv__inner {
  height: 100%;
  padding: 2rem 1rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__inner {
    padding: 4.1666666667vw 2.7777777778vw 1.3888888889vw;
  }
}
.ikebukuro-fv__stars {
  height: 32rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars {
    height: 34.7222222222vw;
  }
}
.ikebukuro-fv__stars-star {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
.ikebukuro-fv__stars-star.--1 {
  animation: glow 3s infinite;
  left: 43vw;
  position: absolute;
  top: 30%;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--1 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--2 {
  animation: glow 3s infinite 0.2s;
  left: 26vw;
  position: absolute;
  top: 30%;
  width: 0.25rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--2 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--3 {
  animation: glow 3s infinite 0.4s;
  left: 21vw;
  position: absolute;
  top: 40%;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--3 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--4 {
  animation: glow 3s infinite 0.6s;
  left: 31vw;
  position: absolute;
  top: 60%;
  width: 0.25rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--4 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--5 {
  animation: glow 3s infinite 0.8s;
  left: 91vw;
  position: absolute;
  top: 70%;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--5 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--6 {
  animation: glow 3s infinite 1s;
  left: 91vw;
  position: absolute;
  top: 80%;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--6 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--7 {
  animation: glow 3s infinite;
  bottom: 10%;
  position: absolute;
  right: 13vw;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--7 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--8 {
  animation: glow 3s infinite 0.2s;
  bottom: 20%;
  position: absolute;
  right: 66vw;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--8 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--9 {
  animation: glow 3s infinite 0.4s;
  bottom: 30%;
  position: absolute;
  right: 81vw;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--9 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--10 {
  animation: glow 3s infinite 0.6s;
  bottom: 60%;
  position: absolute;
  right: 31vw;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--10 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--11 {
  animation: glow 3s infinite 0.8s;
  bottom: 70%;
  position: absolute;
  right: 91vw;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--11 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--12 {
  animation: glow 3s infinite 1s;
  position: absolute;
  right: 91vw;
  top: 80%;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--12 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--13 {
  animation: glow 3s infinite;
  left: 31vw;
  position: absolute;
  top: 90%;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--13 {
    width: 0.0694444444vw;
  }
}
.ikebukuro-fv__stars-star.--14 {
  animation: glow 3s infinite 0.2s;
  left: 75vw;
  position: absolute;
  top: 67%;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--14 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--15 {
  animation: glow 3s infinite 0.4s;
  left: 65vw;
  position: absolute;
  top: 90%;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--15 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--16 {
  animation: glow 3s infinite 0.6s;
  left: 1vw;
  position: absolute;
  top: 1%;
  width: 0.175rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--16 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--17 {
  animation: glow 3s infinite 0.8s;
  left: 11vw;
  position: absolute;
  top: 56%;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--17 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--18 {
  animation: glow 3s infinite 1s;
  left: 5vw;
  position: absolute;
  top: 70%;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--18 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--19 {
  animation: glow 3s infinite;
  bottom: 10%;
  position: absolute;
  right: 1vw;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--19 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--20 {
  animation: glow 3s infinite 0.2s;
  bottom: 3%;
  position: absolute;
  right: 6vw;
  width: 0.25rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--20 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--21 {
  animation: glow 3s infinite 0.4s;
  bottom: 75%;
  position: absolute;
  right: 18vw;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--21 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--22 {
  animation: glow 3s infinite 0.6s;
  bottom: 8%;
  position: absolute;
  right: 8vw;
  width: 0.175rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--22 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--23 {
  animation: glow 3s infinite 0.8s;
  bottom: 7%;
  position: absolute;
  right: 1vw;
  width: 0.2rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--23 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--24 {
  animation: glow 3s infinite 1s;
  position: absolute;
  right: 1vw;
  top: 11%;
  width: 0.15rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--24 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--25 {
  animation: glow 3s infinite 1s;
  position: absolute;
  right: 5vw;
  top: 51%;
  width: 0.015rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--25 {
    width: 0.2083333333vw;
  }
}
.ikebukuro-fv__stars-star.--26 {
  animation: glow 3s infinite 0.3s;
  bottom: 91%;
  left: 58vw;
  position: absolute;
  width: 0.02rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--26 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--27 {
  animation: glow 3s infinite 0.4s;
  bottom: 30%;
  left: 58vw;
  position: absolute;
  width: 0.02rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--27 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--28 {
  animation: glow 3s infinite 0.1s;
  position: absolute;
  right: 8vw;
  top: 6%;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--28 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--29 {
  animation: glow 3s infinite 0.5s;
  position: absolute;
  right: 38vw;
  top: 71%;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--29 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--30 {
  animation: glow 3s infinite 0.4s;
  bottom: 1%;
  left: 28vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--30 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--31 {
  animation: glow 3s infinite 0.4s;
  bottom: 1%;
  left: 28vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--31 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--32 {
  animation: glow 3s infinite 0.4s;
  bottom: 17%;
  position: absolute;
  right: 28vw;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--32 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--33 {
  animation: glow 3s infinite 0.4s;
  bottom: 99%;
  left: 58vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--33 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--34 {
  animation: glow 3s infinite 0.4s;
  bottom: 81%;
  left: 78vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--34 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--35 {
  animation: glow 3s infinite 0.4s;
  bottom: 10%;
  left: 58vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--35 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--36 {
  animation: glow 3s infinite 0.4s;
  bottom: 90%;
  left: 98vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--36 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--37 {
  animation: glow 3s infinite 0.4s;
  bottom: 16%;
  left: 98vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--37 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--38 {
  animation: glow 3s infinite 0.4s;
  position: absolute;
  right: 60vw;
  top: 1%;
  width: 0.02rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--38 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--39 {
  animation: glow 3s infinite 0.4s;
  bottom: 5%;
  left: 78vw;
  position: absolute;
  width: 0.02rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--39 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__stars-star.--40 {
  animation: glow 3s infinite 0.4s;
  bottom: 1%;
  left: 62vw;
  position: absolute;
  width: 0.1rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__stars-star.--40 {
    width: 0.1388888889vw;
  }
}
.ikebukuro-fv__shooting {
  animation: shooting-star 8s linear infinite;
  background-image: linear-gradient(to left, var(--wte) 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 200% 1px;
  height: 1px;
  transform: rotate(-45deg);
}
.ikebukuro-fv__shooting.--1 {
  left: 5rem;
  position: absolute;
  top: 17rem;
  width: 5rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__shooting.--1 {
    left: 27.7777777778vw;
    position: absolute;
    top: 8.3333333333vw;
    width: 6.9444444444vw;
  }
}
.ikebukuro-fv__shooting.--2 {
  animation: shooting-star 8s linear infinite 0.4s;
  bottom: 34rem;
  position: absolute;
  right: 12.5rem;
  width: 2.5rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__shooting.--2 {
    bottom: 40.2777777778vw;
    position: absolute;
    right: 38.1944444444vw;
    width: 3.4722222222vw;
  }
}
.ikebukuro-fv__moon {
  /* アニメを当てる */
  animation: moonshine 6s ease-in-out infinite;
  left: 13rem;
  position: absolute;
  top: 20rem;
  -webkit-animation: moonshine 6s ease-in-out infinite;
  /* 多少マシに */
  color: #DEFDFF;
  font-size: 2rem;
  transform: rotate(250deg);
  /* 念のため */
  will-change: text-shadow;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__moon {
    font-size: 2.7777777778vw;
    left: 37.5vw;
    position: absolute;
    top: 15.9722222222vw;
  }
}
.ikebukuro-fv__white-jam {
  aspect-ratio: 375/115;
  filter: blur(0.8rem);
  height: auto;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0.4rem;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
}
.ikebukuro-fv__white-jam.js-inview-acv {
  animation: blur 4s var(--ease-reveal) forwards 0.5s;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__white-jam {
    aspect-ratio: auto;
    height: 29.0277777778vw;
    left: 50%;
    position: absolute;
    top: 0.2777777778vw;
    width: 94.5138888889vw;
  }
}
.ikebukuro-fv__mans {
  display: none;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__mans {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
.ikebukuro-fv__mans img {
  -o-object-position: center top;
  object-position: center top;
}
.ikebukuro-fv__2026 {
  filter: blur(0.8rem);
  height: 26.6rem;
  opacity: 0;
  position: absolute;
  right: 1.5rem;
  top: 12rem;
  width: 16.2rem;
}
.ikebukuro-fv__2026.js-inview-acv {
  animation: blur 4s var(--ease-reveal) forwards 0.6s;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__2026 {
    height: 42.1527777778vw;
    position: absolute;
    right: 2.7777777778vw;
    top: 25vw;
    width: 29.5833333333vw;
  }
}
.ikebukuro-fv__523 {
  aspect-ratio: 375/71;
  bottom: 2.4rem;
  filter: blur(0.8rem);
  height: auto;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
}
.ikebukuro-fv__523.js-inview-acv {
  animation: blur 4s var(--ease-reveal) forwards 0.7s;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__523 {
    bottom: 1.6666666667vw;
    height: 17.6388888889vw;
    left: 2.7777777778vw;
    position: absolute;
    transform: translateX(0);
    width: 70.8333333333vw;
  }
}
.ikebukuro-fv__nav {
  left: 1rem;
  position: absolute;
  top: 23rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__nav {
    left: 2.7777777778vw;
    position: absolute;
    top: 30.5555555556vw;
  }
}
.ikebukuro-fv__nav-list {
  align-items: flex-start;
  row-gap: 1.6rem;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__nav-list {
    row-gap: 1.3888888889vw;
  }
}
.ikebukuro-fv__nav-link {
  align-items: flex-end;
  position: relative;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  transition: 0.3s opacity;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__nav-link {
    -moz-column-gap: 1.3888888889vw;
    column-gap: 1.3888888889vw;
  }
  .ikebukuro-fv__nav-link:hover {
    opacity: 0.8;
  }
}
.js-inview-acv .ikebukuro-fv__nav-link:after {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.ikebukuro-fv__nav-link:after {
  background-color: #EAB4F6;
  bottom: -0.5rem;
  clip-path: inset(0 100% 0 0);
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: clip-path 1.5s var(--ease-base) 1.5s, opacity 1.5s var(--ease-base) 1.5s;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .ikebukuro-fv__nav-link:after {
    bottom: -0.6944444444vw;
    height: 0.2083333333vw;
    left: 0;
    position: absolute;
  }
}
.--schedule .ikebukuro-fv__nav-link-en {
  height: 2rem;
  width: 9.3rem;
}
@media screen and (min-width: 769px) {
  .--schedule .ikebukuro-fv__nav-link-en {
    height: 3.125vw;
    width: 14.5833333333vw;
  }
}
.--tickets .ikebukuro-fv__nav-link-en {
  height: 2rem;
  width: 5.7rem;
}
@media screen and (min-width: 769px) {
  .--tickets .ikebukuro-fv__nav-link-en {
    height: 3.125vw;
    width: 8.8888888889vw;
  }
}
.ikebukuro-fv__nav-link-jp {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
.js-inview-acv .ikebukuro-fv__nav-link-jp {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.--schedule .ikebukuro-fv__nav-link-jp {
  height: 0.9rem;
  transition: clip-path 1.5s var(--ease-base) 1.75s, opacity 1.5s var(--ease-base) 1.75s;
  width: 5.9rem;
}
@media screen and (min-width: 769px) {
  .--schedule .ikebukuro-fv__nav-link-jp {
    height: 1.4583333333vw;
    width: 9.2361111111vw;
  }
}
.--tickets .ikebukuro-fv__nav-link-jp {
  height: 0.9rem;
  transition: clip-path 1.5s var(--ease-base) 1.75s, opacity 1.5s var(--ease-base) 1.75s;
  width: 3.7rem;
}
@media screen and (min-width: 769px) {
  .--tickets .ikebukuro-fv__nav-link-jp {
    height: 1.3888888889vw;
    width: 5.8333333333vw;
  }
}

/*--------------------------------------------　other
---------------------------------------------*/
.pixel-arrow.yellow .arrow-pixel.on {
  color: #012E8D !important;
}

.yellow__btn {
  background-color: #012E8D !important;
  color: #fff !important;
}

.yellow__btn::after {
  border-bottom: 3px solid #fff !important;
  border-right: 3px solid #fff !important;
}

.others {
  background-color: #012E8D !important;
}

.pixel.red {
  background-color: #EAB4F6 !important;
}

.yellow-border__btn {
  border: 2px solid #012E8D !important;
}

.others__content--item .benefits li::before {
  content: url(../img/red-block.png) !important;
}

.others .fanclub__wrapper .join__wrapper .yellow-border__btn::before {
  background: url(../img/join.png) !important;
  background-repeat: no-repeat !important;
}

.others .fanclub__wrapper .join__wrapper .yellow-border__btn::after {
  background: url(../img/Union.png) !important;
  background-repeat: no-repeat !important;
}

.faq .faq-question .q {
  color: #012E8D !important;
}

.schedule__wrapper ul li.schedule-item {
  margin: 0 !important;
  padding: 1% 2% !important;
}
@media screen and (min-width: 769px) {
  .schedule__wrapper ul li.schedule-item {
    margin-bottom: 20px !important;
  }
}

.ticket__content {
  margin: 0 auto 40px !important;
}

.ticket__content--item dl {
  display: flex;
  justify-content: center;
  max-width: 100% !important;
  -moz-column-gap: 40px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  column-gap: 40px !important;
  flex-direction: column;
  margin: 0 0 10px !important;
  padding: 0 0 10px !important;
  row-gap: 1rem !important;
}
@media screen and (min-width: 769px) {
  .ticket__content--item dl {
    flex-direction: row;
    margin: 0;
    padding: 0;
  }
}
.ticket__content--item dl dt {
  margin: 0 !important;
  width: 60% !important;
}
.ticket__content--item dl dd {
  flex: 1;
}

.schedule__wrapper ul li.schedule-item .schedule-content .day {
  font-size: 1.4rem !important;
  white-space: nowrap !important;
}
@media screen and (min-width: 769px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .day {
    font-size: 5.8rem !important;
  }
}

.schedule__wrapper ul li.schedule-item .schedule-content .day .weekday {
  display: block;
}
@media screen and (min-width: 769px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .day .weekday {
    display: inline-block;
  }
}

.schedule__wrapper ul li.schedule-item .schedule-content .schedule-title {
  font-size: 1.2rem !important;
}
@media screen and (min-width: 769px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .schedule-title {
    font-size: 5.4rem !important;
  }
}

.info .schedule-header {
  font-size: 1.2rem !important;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .info .schedule-header {
    font-size: 2rem !important;
  }
}/*# sourceMappingURL=style.css.map */
