@charset "UTF-8";
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: #000000;
}

img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

.section__title {
  text-align: center;
  padding: 0 15px;
}
.section__title img {
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .section__title img {
    height: 100px;
  }
}

.yellow__btn {
  display: inline-block;
  background-color: #FDDA01;
  padding: 15px 100px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 2.2rem;
  position: relative;
  margin: 60px 0 0;
}
@media (max-width: 768px) {
  .yellow__btn {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.yellow__btn::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 8%;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transition: transform 0.2s ease;
}
.yellow__btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
}
.yellow__btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.yellow__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.yellow__btn:hover span {
  animation: bounce 0.6s ease;
}
.yellow__btn:hover span:nth-child(1) {
  animation-delay: 0s;
}
.yellow__btn:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.yellow__btn:hover span:nth-child(3) {
  animation-delay: 0.2s;
}
.yellow__btn:hover span:nth-child(4) {
  animation-delay: 0.3s;
}
.yellow__btn:hover span:nth-child(5) {
  animation-delay: 0.4s;
}
.yellow__btn:hover span:nth-child(6) {
  animation-delay: 0.5s;
}
.yellow__btn:hover span:nth-child(7) {
  animation-delay: 0.6s;
}
.yellow__btn:hover span:nth-child(8) {
  animation-delay: 0.7s;
}
.yellow__btn::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 8%;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transition: transform 0.2s ease;
}
.yellow__btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.purchase-dropdown {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-top: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}
.purchase-dropdown.is-open {
  max-height: 320px;
  opacity: 1;
  padding: 12px 16px;
}

.purchase-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.purchase-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}
.purchase-list li:hover {
  background-color: #E7E7E7;
}
.purchase-list li:last-child {
  border-bottom: 0;
}

.yellow-border__btn {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #FDDA01;
  border-radius: 100px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 2% 10%;
  font-size: 2.4rem;
  margin: 40px auto;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .yellow-border__btn {
    font-size: 1.8rem;
    width: 100%;
  }
}
.yellow-border__btn:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.schedule {
  background-color: #000000;
  padding: 10% 5% 5%;
  position: relative;
}
.schedule .member-image {
  position: absolute;
  right: 15px;
  top: -100px;
  width: 20%;
  animation: dance 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .schedule .member-image {
    top: -45px;
  }
}
.schedule__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.schedule__wrapper .title-caption-wrapper {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 768px) {
  .schedule__wrapper .title-caption-wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
}
.schedule__wrapper .title-caption-wrapper .title {
  font-size: 3.8rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .schedule__wrapper .title-caption-wrapper .title {
    font-size: 1.8rem;
  }
}
.schedule__wrapper .title-caption-wrapper .caption {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  min-height: 2.4rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .schedule__wrapper .title-caption-wrapper .caption {
    font-size: 1.2rem;
    min-height: 1.2rem;
  }
}
.schedule__wrapper ul li.schedule-item {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 2%;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item {
    margin-bottom: 25px;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule__wrapper ul li.schedule-item .schedule-content .day {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 5.8rem;
  width: 33%;
  margin: 0;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .day {
    font-size: 2.4rem;
    text-align: center;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .day .weekday {
  font-size: 3.2rem;
  margin-left: 5%;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .day .weekday {
    font-size: 1.2rem;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .day .weekday.saturday {
  color: blue;
}
.schedule__wrapper ul li.schedule-item .schedule-content .day .weekday.sunday {
  color: red;
}
.schedule__wrapper ul li.schedule-item .schedule-content .schedule-title {
  font-size: 5.4rem;
  font-weight: bold;
  width: 20%;
  margin: 0;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .schedule-title {
    font-size: 2.2rem;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .desc {
  display: flex;
  width: 60%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .desc {
    width: 100%;
    gap: 10px;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .desc__content {
  font-size: 1.8rem;
  width: 25%;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .desc__content {
    font-size: 1.2rem;
    width: 48%;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .desc__content .tag {
  background-color: #000000;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 6px;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .desc__content .tag {
    font-size: 0.8rem;
  }
}
.schedule__wrapper ul li.schedule-item .schedule-content .desc__content .time {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}
.schedule__wrapper ul li.schedule-item .schedule-content .desc__content .venue-name {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li.schedule-item .schedule-content .desc__content .venue-name {
    font-size: 1rem;
  }
}
.schedule__wrapper ul li:not(.schedule-item) {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 2%;
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .schedule__wrapper ul li:not(.schedule-item) {
    font-size: 1.4rem;
  }
}

.ticket {
  background-color: #000000;
  padding-bottom: 80px;
}
.ticket__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}
.ticket__content--item {
  background-color: #fff;
  text-align: center;
  padding: 3%;
  margin-bottom: 40px;
}
.ticket__content--item:last-child {
  margin-bottom: 0;
}
.ticket__content--item h3 {
  font-size: 4.4rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .ticket__content--item h3 {
    font-size: 2.6rem;
  }
}
.ticket__content--item dl {
  display: flex;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .ticket__content--item dl {
    font-size: 1.3rem;
  }
}
.ticket__content--item dl.ticket__tokyo dt {
  font-weight: bold;
}
.ticket__content--item dl dt {
  width: 50%;
  margin-bottom: 20px;
}
.ticket__content--item dl dt span {
  font-size: 1.7rem;
  font-weight: 400;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .ticket__content--item dl dt span {
    font-size: 1.3rem;
  }
}
.ticket__content--item dl dd {
  width: 50%;
}
.ticket__content--item dl dd span {
  font-size: 1.7rem;
  font-weight: 400;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .ticket__content--item dl dd span {
    font-size: 1.3rem;
  }
}
.ticket__content--item .under-line {
  display: block;
  border-bottom: 1px solid #A7A7A7;
  max-width: 980px;
  margin-block: 20px 40px;
  margin-inline: auto;
}
.ticket__purchase {
  max-width: 980px;
  margin: 0 auto;
}
.ticket__purchase--item {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .ticket__purchase--item {
    flex-direction: column;
  }
}
.ticket__purchase--item-text {
  width: 50%;
  text-align: left;
}
@media (max-width: 768px) {
  .ticket__purchase--item-text {
    width: 100%;
    text-align: center;
  }
}
.ticket__purchase--item-text .bold {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ticket__purchase--item-text .bold {
    font-size: 1.7rem;
  }
}
.ticket__purchase--item-text .bold span {
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .ticket__purchase--item-text .bold span {
    font-size: 1.3rem;
  }
}
.ticket__purchase--item-text .small {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .ticket__purchase--item-text .small {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
.ticket__purchase--item-text .small span {
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .ticket__purchase--item-text .small span {
    font-size: 1rem;
  }
}
.ticket__purchase--item-btn {
  width: 50%;
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .ticket__purchase--item-btn {
    width: 100%;
    text-align: center;
  }
}
.ticket__purchase--item-btn .yellow__btn {
  margin: 0;
}

.seat {
  background-color: #000000;
  padding-bottom: 80px;
}
.seat__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}
.seat__wrap .seat-map {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100vh;
}
.seat__title {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  font-size: 4.4rem;
  padding: 25px 0;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .seat__title {
    font-size: 2.6rem;
  }
}
.seat .chara {
  max-width: 300px;
}

.others {
  background-color: #FDDA01;
  padding-bottom: 80px;
  position: relative;
}
@keyframes tapePlacement {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(15deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(5px) rotate(-5deg) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}
@keyframes swayFromTape {
  0%, 100% {
    transform-origin: 50% 10%;
    transform: rotate(-0.5deg);
  }
  50% {
    transform-origin: 50% 10%;
    transform: rotate(0.5deg);
  }
}
.others__arrow-wrapper {
  position: relative;
  margin-bottom: 60px;
}
.others__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.others__content--item {
  background-color: #fff;
  padding: 5% 3%;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 20;
  clip-path: polygon(0 2%, 2% 2%, 2% 0, 100% 0, 100% 94%, 98% 94%, 98% 98%, 94% 98%, 94% 100%, 4% 100%, 4% 96%, 0 96%);
}
.others__content--item:last-of-type {
  margin-bottom: 0;
}
.others__content--item h3 {
  font-size: 4.4rem;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .others__content--item h3 {
    font-size: 2.6rem;
  }
}
.others__content--item .benefits__title {
  background-color: #000000;
  color: #fff;
  font-size: 3.2rem;
  width: 25%;
  margin: 0 auto 20px auto;
  padding: 15px;
}
@media (max-width: 768px) {
  .others__content--item .benefits__title {
    font-size: 2.6rem;
    width: 100%;
  }
}
.others__content--item .benefits {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .others__content--item .benefits {
    margin-bottom: 20px;
  }
}
.others__content--item .benefits li {
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 3%;
}
@media (max-width: 768px) {
  .others__content--item .benefits li {
    font-size: 1.8rem;
  }
}
.others__content--item .benefits li::before {
  content: url(../img/red-block.png);
  position: absolute;
  top: 0;
  left: 0;
}
.others__chara {
  position: absolute;
  max-width: 250px;
  top: -2%;
  right: 0;
  z-index: 100;
  animation: dance 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .others__chara {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .others__chara {
    max-width: 120px;
    top: -1%;
  }
}
.others__image .img__wrap {
  display: flex;
  position: relative;
  justify-content: center;
}
@media (max-width: 768px) {
  .others__image .img__wrap {
    flex-direction: column;
  }
}
.others__image .img__wrap img:not(.tape) {
  width: 100%;
  animation: none;
  transform-origin: 50% 10%;
}
.goods .others__image .img__wrap img:not(.tape) {
  width: 50%;
}
@media (max-width: 768px) {
  .goods .others__image .img__wrap img:not(.tape) {
    width: 100%;
  }
}
.others__image .img__wrap img:not(.tape).animate-sway {
  animation: swayFromTape 3s ease-in-out infinite;
  animation-delay: 0.8s;
}
.others__image .img__wrap img:not(.tape):hover {
  animation-play-state: paused;
}
.others__image .img__wrap a {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}
.others__image .img__wrap a:hover {
  opacity: 0.7;
}
.others__image .img__wrap a img:not(.tape) {
  width: 100%;
  height: auto;
  display: block;
}
.others__image .img__wrap a img:not(.tape):hover {
  animation-play-state: paused;
}
.goods .others__image .img__wrap a {
  width: 50%;
}
@media (max-width: 768px) {
  .goods .others__image .img__wrap a {
    width: 100%;
  }
}
.goods .others__image .img__wrap a img:not(.tape) {
  width: 100%;
}
.others__image .img__wrap .tape {
  position: absolute;
  top: -10%;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
  opacity: 0;
}
@media (max-width: 768px) {
  .others__image .img__wrap .tape {
    width: 15%;
  }
}
.others__image .img__wrap .tape.animate-placement {
  animation: tapePlacement 0.6s ease-out forwards;
}
.others__image .img__wrap .tape.left {
  left: 20%;
}
@media (max-width: 768px) {
  .others__image .img__wrap .tape.left {
    left: 50%;
    top: -3%;
  }
}
.others__image .img__wrap .tape.left.animate-placement {
  animation-delay: 0.2s;
}
.others__image .img__wrap .tape.right {
  right: 20%;
}
@media (max-width: 768px) {
  .others__image .img__wrap .tape.right {
    right: 50%;
    top: 44%;
  }
}
.others__image .img__wrap .tape.right.animate-placement {
  animation-delay: 0.4s;
}
.others__image .img__wrap .tape.center {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .others__image .img__wrap .tape.center {
    top: -3%;
  }
}
.others__image .img__wrap .tape.center.animate-placement {
  animation-delay: 0.3s;
}
.others .fanclub {
  clip-path: polygon(0 4%, 2% 4%, 2% 2%, 4% 2%, 6% 2%, 6% 0, 96% 0, 96% 2%, 100% 2%, 100% 96%, 96% 96%, 96% 100%, 0 100%);
}
.others .fanclub__wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .others .fanclub__wrapper {
    flex-direction: column;
  }
}
.others .fanclub__wrapper .join__wrapper {
  position: relative;
}
.others .fanclub__wrapper .join__wrapper .yellow-border__btn {
  position: relative;
}
.others .fanclub__wrapper .join__wrapper .yellow-border__btn::before {
  content: "";
  background: url(../img/join.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 100%;
  position: absolute;
  top: -35%;
  left: 0;
}
@media (max-width: 768px) {
  .others .fanclub__wrapper .join__wrapper .yellow-border__btn::before {
    width: 30%;
  }
}
.others .fanclub__wrapper .join__wrapper .yellow-border__btn::after {
  content: "";
  background: url(../img/Union.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 5%;
  height: 100%;
  position: absolute;
  top: 30%;
  right: 3%;
  transition: 0.3s;
}
.others .fanclub__wrapper .join__wrapper .yellow-border__btn:hover::after {
  right: 1%;
}
.others .fanclub__wrapper .join__wrapper .others__image .img__wrap img:not(.tape) {
  border-radius: 8px;
}
.others .plan {
  clip-path: polygon(0 10%, 2% 10%, 2% 8%, 4% 8%, 4% 0, 96% 0, 96% 4%, 100% 4%, 100% 94%, 96% 94%, 96% 100%, 0 100%);
}
.others .plan.campaign {
  clip-path: polygon(0 4%, 4% 4%, 4% 0, 94% 0, 94% 2%, 96% 2%, 96% 4%, 100% 4%, 100% 100%, 4% 100%, 4% 96%, 0 96%);
}
@media (max-width: 768px) {
  .others .plan h3 {
    margin-bottom: 20px;
  }
}
.others .plan .btn__wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .others .plan .btn__wrapper {
    flex-direction: column;
  }
}
.others .plan .btn__wrapper .yellow-border__btn {
  width: 32%;
  padding: 2%;
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 1100px) {
  .others .plan .btn__wrapper .yellow-border__btn {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .others .plan .btn__wrapper .yellow-border__btn {
    width: 100%;
    margin: 0;
  }
}

.info {
  background-color: #000000;
  position: relative;
  padding-bottom: 80px;
}
.info .section__title img {
  max-width: 600px;
}
.info__wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
.info__wrapper--item {
  background-color: #fff;
  padding: 5% 3%;
  text-align: center;
  position: relative;
  z-index: 10;
  clip-path: polygon(0 2%, 2% 2%, 2% 0, 100% 0, 100% 94%, 98% 94%, 98% 98%, 94% 98%, 94% 100%, 4% 100%, 4% 96%, 0 96%);
}
.info .schedule-header {
  display: grid;
  grid-template-columns: 0.8fr 0.4fr 1.5fr 0.8fr 3fr 1.5fr;
  gap: 10px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .info .schedule-header {
    font-size: 1.4rem;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr 0.8fr;
  }
}
.info .schedule-row {
  display: grid;
  grid-template-columns: 0.8fr 0.4fr 1.5fr 0.8fr 3fr 1.5fr;
  gap: 10px;
  background: black;
  color: white;
  padding: 10px;
  font-size: 2rem;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .info .schedule-row {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr 0.8fr;
  }
}
@media (max-width: 576px) {
  .info .schedule-row {
    font-size: 1.2rem;
  }
}
.info .schedule-row .date-area {
  position: relative;
  padding-bottom: 30%;
}
.info .schedule-row .host {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 5px;
  font-size: 1.4rem;
  background: #fff;
  color: #000000;
  padding: 2px 8px;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .info .schedule-row .host {
    font-size: 1.2rem;
  }
}
.info .schedule-row .price-toggle {
  grid-column: 5;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.info .schedule-row .price-toggle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform 0.3s ease;
}
.info .schedule-row .price-toggle.open::before {
  transform: translateY(-50%) rotate(-135deg);
}
.info .schedule-row .contact {
  font-size: 1.5rem;
}
.info .schedule-row .contact span {
  font-size: 1.5rem;
}
.info .schedule-row span {
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  .info .schedule-row .vip-small {
    font-size: 0.9rem;
  }
}
.info .price-detail {
  grid-column: 5;
  background: #f0f0f0;
  padding: 15px 20px;
  display: none;
  color: #000000;
}
@media (max-width: 768px) {
  .info .price-detail {
    grid-column: 1/6;
  }
}
.info .price-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.info .price-detail ul li {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  padding: 6px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .info .price-detail ul li {
    font-size: 1.4rem;
    text-align: left;
  }
}
.info .price-detail ul li span {
  white-space: nowrap;
}

.faq {
  background-color: #000000;
  padding: 40px 0;
  position: relative;
}
.faq .faq-item {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 15px;
  position: relative;
  z-index: 100;
}
.faq .faq-question {
  width: 100%;
  background: #fff;
  font-size: 1.8rem;
  text-align: left;
  padding: 20px 20px 40px 20px;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
}
@media (max-width: 768px) {
  .faq .faq-question {
    font-size: 1.6rem;
  }
}
.faq .faq-question .q {
  color: #FFD700;
  margin-right: 10px;
}
.faq .faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  position: absolute;
  bottom: 5%;
  left: 50%;
}
.faq .faq-question.open::after {
  transform: rotate(-135deg);
}
.faq .faq-answer {
  display: none;
  background: #fff;
  color: #646464;
  padding: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.faq .faq-answer .answer__content {
  display: flex;
}
.faq .faq-answer p {
  margin: 0;
}
.faq .faq-answer span {
  color: #000000;
  margin-right: 10px;
}

.notice {
  background-color: #000000;
}
.notice__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.notice__content--item {
  position: relative;
  background-color: #2c2c2c;
  color: #fff;
  padding: 5% 3%;
  max-width: 1200px;
  margin-inline: auto;
  clip-path: polygon(0 4%, 4% 4%, 4% 0, 96% 0, 96% 2%, 98% 2%, 98% 4%, 100% 4%, 100% 100%, 4% 100%, 4% 96%, 0 96%);
  z-index: 2;
}
.notice__content--item h3 {
  background-color: #000000;
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 2.9rem;
  margin-block: 20px;
  position: relative;
}
.notice__content--item h3 .cat {
  position: absolute;
  width: 10%;
  top: -50%;
  left: 0;
}
@media (max-width: 576px) {
  .notice__content--item h3 .cat {
    width: 20%;
    top: -30%;
  }
}
.notice__content--item h3 .cat.cat-right {
  transform: scale(-1, 1);
  top: -30%;
  right: 0;
  left: inherit;
}
.notice__content--item li {
  position: relative;
  list-style: disc;
  list-style-position: inside;
}
.notice__content--item p {
  text-align: center;
  margin-top: 40px;
}

footer {
  background-color: #000000;
  text-align: center;
  padding-block: 80px 40px;
}
footer .footer__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
}
footer .logo {
  display: flex;
  justify-content: center;
  align-items: baseline;
  min-height: 80px;
}
footer .bounce {
  display: inline-block;
  max-width: 45px;
  height: 40px;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}
footer .bounce img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .bounce.w, footer .bounce.j, footer .bounce.m {
  max-width: 100px;
  height: 75px;
}
footer .bounce.h {
  margin-left: -25px;
}
footer .bounce.j {
  margin-left: 20px;
}
footer .bounce.a {
  margin-left: -15px;
}
footer .bounce.m {
  margin-left: -15px;
}
@media (max-width: 768px) {
  footer .bounce {
    max-width: 35px;
    height: 30px;
  }
  footer .bounce.w, footer .bounce.j, footer .bounce.m {
    max-width: 80px;
    height: 60px;
  }
  footer .bounce.h {
    margin-left: -20px;
  }
  footer .bounce.j {
    margin-left: 15px;
  }
  footer .bounce.a {
    margin-left: -10px;
  }
  footer .bounce.m {
    margin-left: -10px;
  }
}

.pixel-grid {
  position: absolute;
  width: 300px;
  height: 200px;
}
@media (max-width: 768px) {
  .pixel-grid {
    width: 200px;
    height: 150px;
  }
}
.pixel-grid.others-top-right {
  top: 0;
  right: 0;
}
.pixel-grid.others-bottom-left {
  bottom: 0;
  left: 0;
}
.pixel-grid.info-bottom-right {
  height: 450px;
  bottom: 0;
  right: 0;
}
.pixel-grid.faq-bottom-left {
  height: 450px;
  bottom: 0;
  left: 0;
}

.pixel {
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  animation: blink 1s infinite;
}
@media (max-width: 768px) {
  .pixel {
    width: 20px;
  }
}

.pixel.black {
  background-color: #000;
}
.pixel.gray {
  background-color: rgba(0, 0, 0, 0.5);
}
.pixel.red {
  background-color: #ff0000;
}
.pixel.white {
  background-color: #d9d9d9;
}
.pixel.gray2 {
  background-color: rgba(217, 217, 217, 0.5);
}
.pixel.gray3 {
  background-color: rgba(217, 217, 217, 0.3);
}
.pixel.gray4 {
  background-color: rgba(217, 217, 217, 0.7);
}
.pixel.gray5 {
  background-color: rgba(217, 217, 217, 0.9);
}

.pixel.pixel1 {
  right: 120px;
  top: 0;
  animation-delay: 0s;
}
.pixel.pixel2 {
  right: 40px;
  top: 80px;
  animation-delay: 0.1s;
}
.pixel.pixel3 {
  right: 80px;
  top: 40px;
  animation-delay: 0.2s;
}
.pixel.pixel4 {
  right: 0;
  top: 40px;
  animation-delay: 0.3s;
}
.pixel.pixel5 {
  right: 40px;
  top: 160px;
  animation-delay: 0.4s;
}
.pixel.pixel6 {
  right: 80px;
  top: 120px;
  animation-delay: 0.5s;
}
.pixel.pixel7 {
  right: 0;
  top: 200px;
  animation-delay: 0.6s;
}

.pixel.pixel8 {
  left: 0;
  bottom: 160px;
  animation-delay: 0s;
}
.pixel.pixel9 {
  left: 80px;
  bottom: 0;
  animation-delay: 0.1s;
}
.pixel.pixel10 {
  left: 40px;
  bottom: 40px;
  animation-delay: 0.2s;
}
.pixel.pixel11 {
  left: 0;
  bottom: 40px;
  animation-delay: 0.3s;
}
.pixel.pixel12 {
  left: 40px;
  bottom: 0;
  animation-delay: 0.4s;
}
.pixel.pixel13 {
  left: 40px;
  bottom: 80px;
  animation-delay: 0.5s;
}
.pixel.pixel14 {
  left: 120px;
  bottom: 40px;
  animation-delay: 0.6s;
}
.pixel.pixel15 {
  left: 80px;
  bottom: 120px;
  animation-delay: 0.7s;
}
.pixel.pixel16 {
  left: 40px;
  bottom: 160px;
  animation-delay: 0.8s;
}
.pixel.pixel17 {
  left: 0;
  bottom: 200px;
  animation-delay: 0.9s;
}
.pixel.pixel18 {
  left: 0;
  bottom: 400px;
  animation-delay: 1s;
}
.pixel.pixel19 {
  left: 40px;
  bottom: 0;
  animation-delay: 1.1s;
}
.pixel.pixel20 {
  left: 120px;
  bottom: 40px;
  animation-delay: 1.2s;
}
.pixel.pixel21 {
  left: 80px;
  bottom: 80px;
  animation-delay: 1.3s;
}
.pixel.pixel22 {
  left: 280px;
  bottom: 40px;
  animation-delay: 1.4s;
}
.pixel.pixel23 {
  left: 160px;
  bottom: 0;
  animation-delay: 1.5s;
}
.pixel.pixel24 {
  left: 0;
  bottom: 0;
  animation-delay: 1.6s;
}
.pixel.pixel25 {
  left: 80px;
  bottom: 160px;
  animation-delay: 1.7s;
}
.pixel.pixel26 {
  left: 320px;
  bottom: 0;
  animation-delay: 1.8s;
}

.pixel.pixel27 {
  right: 40px;
  bottom: 40px;
  animation-delay: 0s;
}
.pixel.pixel28 {
  right: 0;
  bottom: 80px;
  animation-delay: 0.1s;
}
.pixel.pixel29 {
  right: 80px;
  bottom: 120px;
  animation-delay: 0.2s;
}
.pixel.pixel30 {
  right: 280px;
  bottom: 0;
  animation-delay: 0.3s;
}
.pixel.pixel31 {
  right: 200px;
  bottom: 80px;
  animation-delay: 0.4s;
}
.pixel.pixel32 {
  right: 80px;
  bottom: 0;
  animation-delay: 0.5s;
}
.pixel.pixel33 {
  right: 40px;
  bottom: 160px;
  animation-delay: 0.6s;
}
.pixel.pixel34 {
  right: 80px;
  bottom: 280px;
  animation-delay: 0.7s;
}
.pixel.pixel35 {
  right: 40px;
  bottom: 360px;
  animation-delay: 0.8s;
}
.pixel.pixel36 {
  left: 200px;
  bottom: 0;
  animation-delay: 0s;
}
.pixel.pixel37 {
  left: 120px;
  bottom: 40px;
  animation-delay: 0.1s;
}
.pixel.pixel38 {
  left: 40px;
  bottom: 120px;
  animation-delay: 0.2s;
}
.pixel.pixel39 {
  left: 80px;
  bottom: 160px;
  animation-delay: 0.3s;
}
.pixel.pixel40 {
  left: 40px;
  bottom: 280px;
  animation-delay: 0.4s;
}
.pixel.pixel41 {
  left: 0;
  bottom: 320px;
  animation-delay: 0.8s;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes fadeBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pulseBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
.pixel-arrow {
  position: absolute;
}

.arrow-1 {
  left: 10%;
}

.arrow-2 {
  left: 13%;
}

.arrow-3 {
  right: 10%;
}

.arrow-4 {
  right: 13%;
}

.arrow-fanclub1 {
  top: -20px;
  left: 0;
  z-index: 30;
}

.arrow-fanclub2 {
  top: -20px;
  left: 7%;
  z-index: 30;
}

.pixel-arrow .pixel-row {
  display: block;
  height: 1em;
}

.pixel-arrow .arrow-pixel {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: top;
}

.pixel-arrow .arrow-pixel.on {
  opacity: 1;
}

.pixel-arrow .arrow-pixel.off {
  color: transparent;
  opacity: 0;
}

/* サイズバリエーション */
.pixel-arrow.small {
  font-size: 0.6vw;
}

.pixel-arrow.large {
  font-size: 2vw;
}

/* カラーバリエーション */
.pixel-arrow.yellow .arrow-pixel.on {
  color: #FDDA01;
  background: transparent;
}

.pixel-arrow.black .arrow-pixel.on {
  color: #000000;
  background: transparent;
}

/* アニメーションパターン */
@keyframes arrowFlowRight {
  0% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes arrowBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0.1;
  }
}
@keyframes arrowWave {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}
/* フロー（右に流れる）アニメーション */
.pixel-arrow.flow .arrow-pixel {
  animation: arrowFlowRight 2s infinite;
}

/* 各ピクセルに遅延を適用 */
.pixel-arrow.flow .arrow-pixel:nth-child(1) {
  animation-delay: 0s;
}

.pixel-arrow.flow .arrow-pixel:nth-child(2) {
  animation-delay: 0.1s;
}

.pixel-arrow.flow .arrow-pixel:nth-child(3) {
  animation-delay: 0.2s;
}

.pixel-arrow.flow .arrow-pixel:nth-child(4) {
  animation-delay: 0.3s;
}

.pixel-arrow.flow .arrow-pixel:nth-child(5) {
  animation-delay: 0.4s;
}

.pixel-arrow.flow .arrow-pixel:nth-child(6) {
  animation-delay: 0.5s;
}

/* ブリンクアニメーション */
.pixel-arrow.blink .arrow-pixel.on {
  animation: arrowBlink 1s infinite;
}

/* ウェーブアニメーション */
.pixel-arrow.wave .arrow-pixel.on {
  animation: arrowWave 2s infinite;
}

.pixel-arrow.wave .arrow-pixel:nth-child(1) {
  animation-delay: 0s;
}

.pixel-arrow.wave .arrow-pixel:nth-child(2) {
  animation-delay: 0.1s;
}

.pixel-arrow.wave .arrow-pixel:nth-child(3) {
  animation-delay: 0.2s;
}

.pixel-arrow.wave .arrow-pixel:nth-child(4) {
  animation-delay: 0.3s;
}

.pixel-arrow.wave .arrow-pixel:nth-child(5) {
  animation-delay: 0.4s;
}

.pixel-arrow.wave .arrow-pixel:nth-child(6) {
  animation-delay: 0.5s;
}

/* 方向バリエーション */
.pixel-arrow.left {
  transform: scaleX(-1);
}

.pixel-arrow.up {
  transform: rotate(-90deg);
}

.pixel-arrow.down {
  transform: rotate(90deg);
}

.advanced-glitch-img {
  --glitch-bg: none;
  position: relative;
  display: inline-block;
  max-width: 400px;
  height: auto;
}
.advanced-glitch-img::before, .advanced-glitch-img::after {
  --top: 0;
  --left: 0;
  --v-height: 30%;
  --n-tenth: calc(var(--top) * 10%);
  --t-cut: var(--n-tenth);
  --b-cut: calc(var(--t-cut) + var(--v-height));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--glitch-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(calc(var(--left) * 100%));
  filter: drop-shadow(0 0 transparent);
  clip-path: polygon(0% var(--t-cut), 100% var(--t-cut), 100% var(--b-cut), 0% var(--b-cut));
}
.advanced-glitch-img::before {
  filter: drop-shadow(calc(var(--left) * -30px) 0 2px lime) drop-shadow(calc(var(--left) * -60px) 0 2px #ff00e1) brightness(1.2) contrast(1.5);
  animation: glitch-img-before 1.7s infinite alternate-reverse;
  z-index: 1;
}
.advanced-glitch-img::after {
  filter: drop-shadow(calc(var(--left) * 30px) 0 2px #00ffff) drop-shadow(calc(var(--left) * 60px) 0 2px #ff4400) brightness(1.1) contrast(1.3);
  animation: glitch-img-after 3.1s infinite alternate;
  z-index: 2;
}
.advanced-glitch-img img {
  display: block;
  position: relative;
  z-index: 0;
}

@keyframes glitch-img-after {
  10%, 30%, 50%, 70%, 90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
  }
  20% {
    --left: .005;
  }
  40% {
    --left: .01;
    --v-height: 20%;
    --top: 3;
  }
  60% {
    --left: .03;
    --v-height: 25%;
    --top: 6;
  }
  80% {
    --left: .07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: .083;
    --v-height: 30%;
    --top: 1;
  }
}
@keyframes glitch-img-before {
  10%, 30%, 50%, 70%, 90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
    --top: 10;
  }
  20% {
    --left: -.005;
  }
  40% {
    --left: -.01;
    --v-height: 17%;
    --top: 3;
  }
  60% {
    --left: -.03;
    --v-height: 35%;
    --top: 6;
  }
  80% {
    --left: -.07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: -.083;
    --v-height: 30%;
    --top: 1;
  }
}
/* 修正版スクロールエフェクト */
.scroll-btn::after {
  content: "★ CLICK ★ CLICK ★ CLICK ★ CLICK ★ CLICK ★";
  position: absolute;
  bottom: 0;
  left: 100%;
  white-space: nowrap;
  color: #FDDA01;
  font-size: 1.4rem;
  opacity: 0;
  z-index: 1;
}

.scroll-btn::before {
  content: "★ CLICK ★ CLICK ★ CLICK ★ CLICK ★ CLICK ★";
  position: absolute;
  top: 0;
  right: 100%; /* leftではなくrightを使用 */
  white-space: nowrap;
  color: #FDDA01;
  font-size: 1.4rem;
  opacity: 0;
  z-index: 1;
}

.scroll-btn:hover::after {
  animation: pixelScrollLeft 6s linear infinite;
  opacity: 1;
}

.scroll-btn:hover::before {
  animation: pixelScrollRight 6s linear infinite;
  opacity: 1;
}

.scroll-btn:hover {
  border-color: #FDDA01;
  box-shadow: 0 0 20px rgba(253, 218, 1, 0.5), inset 0 0 20px rgba(253, 218, 1, 0.1);
}

/* 修正版アニメーション */
@keyframes pixelScrollLeft {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
@keyframes pixelScrollRight {
  0% {
    right: 100%;
  }
  100% {
    right: -100%;
  }
}
/* テキストのz-indexを調整 */
.fv__bottom-link a > * {
  position: relative;
  z-index: 2;
}

/* デバッグ用の境界線（確認用） */
.debug .scroll-btn::after,
.debug .scroll-btn::before {
  border: 1px solid rgba(255, 0, 0, 0.3);
}

@keyframes dance {
  0%, 100% {
    transform: translateX(0) rotate(-5deg);
  }
  25% {
    transform: translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateX(0) rotate(-3deg);
  }
  75% {
    transform: translateX(-10px) rotate(3deg);
  }
}
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-on-scroll {
    transition: none;
  }
}
/* スムース */
html {
  scroll-behavior: smooth;
}

/* 動きが苦手な人の設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* 固定ヘッダー分ずらす（:root 変数を後でJSで上書き）*/
:root {
  --header-offset: 0px;
}

/* id付き要素にマージン（=着地点の余白）を付与 */
[id] {
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.slow {
  transition-duration: 1.2s;
}
.fade-in-up.fast {
  transition-duration: 0.4s;
}
.fade-in-up.far {
  transform: translateY(80px);
}
.fade-in-up.far.visible {
  transform: translateY(0);
}
.fade-in-up.near {
  transform: translateY(20px);
}
.fade-in-up.near.visible {
  transform: translateY(0);
}
.fade-in-up.delay-1 {
  transition-delay: 0.1s;
}
.fade-in-up.delay-2 {
  transition-delay: 0.2s;
}
.fade-in-up.delay-3 {
  transition-delay: 0.3s;
}
.fade-in-up.delay-4 {
  transition-delay: 0.4s;
}
.fade-in-up.delay-5 {
  transition-delay: 0.5s;
}

@keyframes bounceInFromLeftTilted {
  0% {
    transform: translateX(-100vw) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 0;
  }
  50% {
    transform: translateX(40px) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
  65% {
    transform: translateX(-15px) translateY(-20px) rotate(8deg);
    transform-origin: center bottom;
  }
  78% {
    transform: translateX(-8px) translateY(-10px) rotate(4deg);
    transform-origin: center bottom;
  }
  88% {
    transform: translateX(-3px) translateY(-4px) rotate(2deg);
    transform-origin: center bottom;
  }
  96% {
    transform: translateX(-1px) translateY(-1px) rotate(0.5deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
}
@keyframes bounceInDelayedLeftTilted {
  0%, 20% {
    transform: translateX(-100vw) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 0;
  }
  55% {
    transform: translateX(35px) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
  68% {
    transform: translateX(-12px) translateY(-16px) rotate(6deg);
    transform-origin: center bottom;
  }
  80% {
    transform: translateX(-6px) translateY(-8px) rotate(3deg);
    transform-origin: center bottom;
  }
  90% {
    transform: translateX(-2px) translateY(-3px) rotate(1.5deg);
    transform-origin: center bottom;
  }
  97% {
    transform: translateX(-0.5px) translateY(-1px) rotate(0.3deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
}
@keyframes bounceInDelayed2LeftTilted {
  0%, 40% {
    transform: translateX(-100vw) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 0;
  }
  60% {
    transform: translateX(30px) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
  72% {
    transform: translateX(-10px) translateY(-14px) rotate(5deg);
    transform-origin: center bottom;
  }
  83% {
    transform: translateX(-4px) translateY(-6px) rotate(2.5deg);
    transform-origin: center bottom;
  }
  92% {
    transform: translateX(-1.5px) translateY(-2px) rotate(1deg);
    transform-origin: center bottom;
  }
  98% {
    transform: translateX(-0.3px) translateY(-0.5px) rotate(0.2deg);
    transform-origin: center bottom;
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
    transform-origin: center bottom;
    opacity: 1;
  }
}
@keyframes bounceInFromRightText {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  70% {
    transform: translateX(-20px);
    opacity: 1;
  }
  85% {
    transform: translateX(6px);
  }
  95% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes buttonTextFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv {
  background-color: #FDDA01;
  height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10%;
}
@media (max-width: 768px) {
  .fv {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .fv.pc-only {
    display: none;
  }
}
.fv.sp-only {
  display: none;
  position: relative;
}
.fv.sp-only::before {
  content: "";
  width: 10%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  right: 5%;
}
@media (max-width: 768px) {
  .fv.sp-only {
    display: block;
    height: 70vh;
  }
}
.fv.sp-only .fv__content {
  position: relative;
  z-index: 10;
  height: 100%;
}
.fv.sp-only .fv__bg-text {
  padding: 0 15px;
}
.fv.sp-only .fv__bg-text .logo {
  position: inherit;
  width: 50%;
  animation: bounceInFromLeftTilted 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv.sp-only .fv__bg-text .fv__text {
  font-size: 1.7rem;
  font-weight: bold;
  animation: bounceInDelayedLeftTilted 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv.sp-only .fv__bg-text .fv__text-en {
  font-family: "Cormorant Infant", serif;
  font-size: 1.7rem;
  font-weight: bold;
  animation: bounceInDelayed2LeftTilted 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv.sp-only .main-visual {
  left: inherit;
  right: -25%;
  animation: bounceInFromLeftTilted 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv.sp-only .top__text {
  font-weight: bold;
  position: absolute;
  z-index: 100;
  bottom: 20px;
  right: 15px;
}
.fv.sp-only .top__text .red-day {
  color: #E70200;
  font-size: 6vw;
  text-align: end;
  animation: bounceInFromRightText 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@media (max-width: 576px) {
  .fv.sp-only .top__text .red-day {
    font-size: 8vw;
  }
}
.fv.sp-only .top__text .large {
  font-size: 7vw;
  text-shadow: 2px 2px 0 #FDDA01;
  animation: bounceInFromRightText 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
@media (max-width: 576px) {
  .fv.sp-only .top__text .large {
    font-size: 9vw;
  }
}
.fv.sp-only .top__text .venue {
  font-size: 3vw;
  text-shadow: 2px 2px 0 #FDDA01;
  animation: bounceInFromRightText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
@media (max-width: 576px) {
  .fv.sp-only .top__text .venue {
    font-size: 4vw;
  }
}
.fv .bg-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke;
  line-height: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv .bg-text .large {
  font-size: 19vw;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  animation: bounceInFromLeftTilted 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv .bg-text__medium {
  display: flex;
  justify-content: space-between;
  font-size: 8vw;
}
.fv .bg-text__medium .left {
  animation: bounceInDelayedLeftTilted 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv .bg-text__medium .right {
  animation: bounceInDelayed2LeftTilted 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv .red-text {
  color: #E70200;
  -webkit-text-stroke: 6px #E70200;
  font-size: 6vw;
  text-align: end;
  animation: bounceInDelayed2LeftTilted 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv img {
  position: absolute;
  bottom: 0;
  left: -18%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
  width: 125%;
  height: 100%;
  animation: bounceInFromLeftTilted 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fv .top-text {
  position: relative;
  z-index: 20;
  font-size: 2vw;
  text-align: end;
  font-weight: bold;
  text-shadow: 2px 2px #FDDA01;
  margin: 2% 4% 2% 0;
  animation: bounceInFromRightText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.fv__bottom-link {
  display: flex;
  position: relative;
  background-color: #FDDA01;
}
.fv__bottom-link a {
  display: block;
  text-align: center;
  align-items: center;
  padding: 1%;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 768px) {
  .fv__bottom-link a {
    font-size: 3rem;
  }
}
.fv__bottom-link a p {
  position: relative;
  z-index: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: inline-block;
}
.fv__bottom-link a p.visible {
  opacity: 1;
  transform: translateY(0);
}
.fv__bottom-link a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}
.fv__bottom-link a span.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .fv__bottom-link a span {
    display: block;
  }
}
.fv__bottom-link .bg-black {
  background-color: #000000;
  color: #fff;
  width: 50%;
}
.fv__bottom-link .bg-black p {
  transition-delay: 0.8s;
}
.fv__bottom-link .bg-black span {
  transition-delay: 1.2s;
}
.fv__bottom-link .bg-red {
  background-color: #E70200;
  color: #fff;
  width: 50%;
}
.fv__bottom-link .bg-red p {
  transition-delay: 1s;
}
.fv__bottom-link .bg-red span {
  transition-delay: 1.4s;
}

.message {
  padding: 4% 2% 10%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes blinkFade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes popInOut {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  30% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }
  70% {
    opacity: 0.8;
    transform: scale(1) rotate(360deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}
@keyframes slideInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes twinkleFade {
  0%, 20%, 80%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  60% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}
.message__decoration {
  position: absolute;
  width: 2%;
  opacity: 0.8;
}
.message__decoration.animated {
  animation: fadeInOut 3s infinite ease-in-out;
}
.message__decoration.blink {
  animation: blinkFade 2s infinite ease-in-out;
}
.message__decoration.pop {
  animation: popInOut 4s infinite ease-in-out;
}
.message__decoration.slide {
  animation: slideInOut 3s infinite ease-in-out;
}
.message__decoration.twinkle {
  animation: twinkleFade 2.5s infinite ease-in-out;
}
.message__decoration.deco1 {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}
.message__decoration.deco2 {
  top: 80%;
  left: 10%;
  animation-delay: 0.5s;
}
.message__decoration.deco3 {
  top: 50%;
  left: 50%;
  animation-delay: 1s;
}
.message__decoration.deco4 {
  top: 70%;
  right: 20%;
  animation-delay: 1.5s;
}
.message__decoration.deco5 {
  top: 20%;
  right: 4%;
  animation-delay: 2s;
}
.message__decoration.deco6 {
  top: 60%;
  left: 30%;
  animation-delay: 2.5s;
}
.message__decoration.deco7 {
  top: 80%;
  left: 50%;
  animation-delay: 3s;
}
.message__decoration.fast {
  animation-duration: 1.5s;
}
.message__decoration.slow {
  animation-duration: 5s;
}
.message__decoration.random1 {
  animation-delay: 0.3s;
}
.message__decoration.random2 {
  animation-delay: 0.7s;
}
.message__decoration.random3 {
  animation-delay: 1.2s;
}
.message__decoration.random4 {
  animation-delay: 1.8s;
}
.message__decoration.random5 {
  animation-delay: 2.3s;
}
.message__decoration.random6 {
  animation-delay: 2.9s;
}
.message__decoration.random7 {
  animation-delay: 3.4s;
}
.message__content {
  position: relative;
  z-index: 10;
}
.message h3 {
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 3%;
}
@media (max-width: 768px) {
  .message h3 {
    font-size: 1.8rem;
  }
}
.message p {
  font-size: 3.8rem;
}
@media (max-width: 768px) {
  .message p {
    font-size: 1.4rem;
  }
}
.message p .bold {
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */