* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--top-center {
  -o-object-position: top center;
     object-position: top center;
}
.image--bottom-center {
  -o-object-position: bottom center;
     object-position: bottom center;
}

.button-primary {
  width: 100%;
  height: 108px;
  padding: 8px;
  border-radius: 57px;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .button-primary {
    padding: 4px;
    height: 54px;
  }
}
.button-primary > * {
  position: relative;
  z-index: 1;
}
.button-primary::before, .button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.button-primary::before {
  background: -webkit-gradient(linear, left top, right top, from(#1f1ba2), color-stop(50%, #0513ef), to(#f51a1a));
  background: linear-gradient(90deg, #1f1ba2 0%, #0513ef 50%, #f51a1a 100%);
  opacity: 1;
}
.button-primary::after {
  background: -webkit-gradient(linear, right top, left top, from(#1f1ba2), color-stop(50%, #0513ef), to(#f51a1a));
  background: linear-gradient(270deg, #1f1ba2 0%, #0513ef 50%, #f51a1a 100%);
  opacity: 0;
}
.button-primary:hover::after {
  opacity: 1;
}
.button-primary__inner {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 57px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button-primary__inner::after {
  content: "";
  width: 13px;
  height: 23px;
  background: url("../public/img/icons/btn-caret.svg") no-repeat center/100% 100%;
  position: absolute;
  top: 50%;
  right: 37px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .button-primary__inner::after {
    width: 7px;
    height: 12px;
    right: 22px;
  }
}
.button-primary__text {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .button-primary__text {
    font-size: 20px;
  }
}

.button-secondary {
  font: 700 2.4rem "Montserrat", sans-serif;
  color: #fff;
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(2, 0, 59)), color-stop(50%, rgb(14, 11, 145)), to(rgb(6, 16, 167)));
  background: linear-gradient(to right, rgb(2, 0, 59) 0%, rgb(14, 11, 145) 50%, rgb(6, 16, 167) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .button-secondary {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .button-secondary {
    font-size: 20px;
    height: 54px;
  }
}
.button-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, from(rgb(2, 0, 59)), color-stop(50%, rgb(14, 11, 145)), to(rgb(6, 16, 167)));
  background: linear-gradient(to left, rgb(2, 0, 59) 0%, rgb(14, 11, 145) 50%, rgb(6, 16, 167) 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.button-secondary::after {
  content: "";
  width: 9px;
  height: 16px;
  background: url("../public/img/icons/btn-caret.svg") no-repeat center/100% 100%;
  position: absolute;
  top: 50%;
  right: 33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .button-secondary::after {
    width: 7px;
    height: 12px;
    right: 12px;
  }
}
.button-secondary:hover {
  background-color: transparent;
}
.button-secondary:hover::before {
  opacity: 1;
}
.button-secondary--large {
  height: 114px;
  font-size: 3.6rem;
  border-radius: 80px;
}
@media screen and (max-width: 1400px) {
  .button-secondary--large {
    height: 80px;
    font-size: 2.4rem;
    border-radius: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .button-secondary--large {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .button-secondary--large {
    font-size: 20px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.title {
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .title {
    gap: 4px;
  }
}
.title__en {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
.title__jp {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.45em;
}
@media screen and (max-width: 980px) {
  .title__jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 20px;
    letter-spacing: 0.02em;
  }
}
.title__jp--blue {
  color: #1f1ba2;
}

.footer__main {
  position: relative;
  padding: 144px 0 142px;
  background: url("../public/img/footer/footer-bg.jpg") center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .footer__main {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__main {
    background: #051042;
    padding: 40px 0;
  }
}
.footer__main::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../public/img/footer/footer-bg-deco.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer__main::before {
    background: url("../public/img/footer/footer-bg-deco-sp.png") center/cover no-repeat;
  }
}
.footer__content {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__content {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1280px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 80px;
  }
}
@media screen and (max-width: 980px) {
  .footer__content {
    gap: 40px;
  }
}
.footer__logo {
  max-width: 220px;
  aspect-ratio: 220/244;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 209px;
    aspect-ratio: 209/241;
  }
}
.footer__ticket {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 62px;
  background: -webkit-gradient(linear, left top, right top, from(#1f1ba2), color-stop(#0513ef), to(#f51a1a));
  background: linear-gradient(to right, #1f1ba2, #0513ef, #f51a1a);
  padding: 50px 118px 50px 40px;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .footer__ticket {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    gap: 42px;
    padding: 50px 88px 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket {
    gap: 16px;
    padding: 14px 38px 11px 22px;
  }
}
.footer__ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, from(#1f1ba2), color-stop(#0513ef), to(#f51a1a));
  background: linear-gradient(to left, #1f1ba2, #0513ef, #f51a1a);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.footer__ticket::after {
  content: "";
  width: 17.97px;
  height: 31.94px;
  background: url("../public/img/icons/btn-caret.svg") center/contain no-repeat;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__ticket::after {
    width: 6px;
    height: 11px;
    right: 16px;
  }
}
.footer__ticket:hover {
  background-color: transparent;
}
.footer__ticket:hover::before {
  opacity: 1;
}
.footer__ticket-icon {
  width: 320px;
}
@media screen and (max-width: 980px) {
  .footer__ticket-icon {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket-icon {
    width: 131px;
  }
}
.footer__ticket-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .footer__ticket-text {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket-text {
    font-size: 16px;
    line-height: 2em;
  }
}
.footer__copyright {
  background-color: #1f1ba2;
  padding: 12px 20px 8px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 13px;
    padding: 9px 15px 7px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    top: unset;
    bottom: 0;
  }
}
.header__ctr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__ticket {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#1f1ba2), color-stop(#0513ef), to(#f51a1a));
  background: linear-gradient(to right, #1f1ba2, #0513ef, #f51a1a);
  padding: 20px 40px 20px 20px;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header__ticket {
    width: 100%;
    gap: 15px;
    padding: 10px 20px 10px 10px;
  }
}
.header__ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: -webkit-gradient(linear, right top, left top, from(#1f1ba2), color-stop(#0513ef), to(#f51a1a));
  background: linear-gradient(to left, #1f1ba2, #0513ef, #f51a1a);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.header__ticket::after {
  content: "";
  width: 6.97px;
  height: 20.94px;
  background: url("../public/img/icons/btn-caret.svg") center/contain no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header__ticket::after {
    width: 6px;
    height: 11px;
    right: 16px;
  }
}
.header__ticket:hover {
  background-color: transparent;
}
.header__ticket:hover::before {
  opacity: 1;
}
.header__ticket-icon {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .header__ticket-icon {
    width: 100px;
  }
}
.header__ticket-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header__ticket-text {
    font-size: 14px;
    line-height: unset;
  }
}

.lp {
  overflow: hidden;
}
.lp__mv {
  width: 100%;
  position: relative;
  z-index: 9999;
}
.lp__mv-wrap {
  width: 100%;
  height: 100%;
}
.lp__schedule {
  padding-block: 24px 55px;
  background: url("../public/img/lp/bg-01.jpg") no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__schedule {
    padding-block: 14px 80px;
  }
}
@media screen and (max-width: 980px) {
  .lp__schedule-title-en {
    max-width: 435px;
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-title-en {
    max-width: 319px;
  }
}
.lp__schedule-ctr {
  position: relative;
  z-index: 3;
}
.lp__schedule-deco {
  position: absolute;
}
.lp__schedule-deco.flame-1 {
  width: 549px;
  height: 782px;
  left: 0;
  bottom: 40px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .lp__schedule-deco.flame-1 {
    width: 50%;
    height: auto;
    bottom: unset;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
}
.lp__schedule-deco.flame-2 {
  width: 884px;
  height: 1169px;
  right: 0;
  bottom: -40px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .lp__schedule-deco.flame-2 {
    width: 50%;
    height: auto;
    bottom: unset;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.lp__schedule-deco.flame-3 {
  width: 100%;
  height: 1082px;
  bottom: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__schedule-deco.deco-1 {
  width: 249px;
  height: 538px;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__schedule-deco.deco-1 {
    width: 133px;
    height: 250px;
    top: 19px;
    left: -48px;
  }
}
.lp__schedule-deco.deco-2 {
  width: 373px;
  height: 716px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .lp__schedule-deco.deco-2 {
    width: 116px;
    height: 186px;
    top: 93px;
    right: -35px;
  }
}
.lp__schedule-wrap {
  max-width: 1424px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media screen and (max-width: 1200px) {
  .lp__schedule-wrap {
    gap: 34px;
  }
}
@media screen and (max-width: 980px) {
  .lp__schedule-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
}
.lp__schedule-item {
  max-width: 680px;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .lp__schedule-item {
    max-width: 500px;
  }
}
.lp__schedule-item:has(.lp__schedule-item-button:hover) .shine::before {
  -webkit-animation: shine 0.75s linear 1 !important;
          animation: shine 0.75s linear 1 !important;
}
.lp__schedule-inner {
  padding: 0 40px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), color-stop(40%, rgba(255, 255, 255, 0.2)), to(rgba(75, 184, 255, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(75, 184, 255, 0.8) 100%);
  -webkit-backdrop-filter: blur(20px) brightness(1);
          backdrop-filter: blur(20px) brightness(1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__schedule-inner {
    padding: 0 24px 24px;
    margin-bottom: 8px;
    border-radius: 10px;
  }
}
.lp__schedule-inner--item-2 {
  padding: 38px 40px 40px;
}
@media screen and (max-width: 767px) {
  .lp__schedule-inner--item-2 {
    padding: 13px 24px 24px;
  }
}
.lp__schedule-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp__schedule-team img {
    width: 152px;
    height: 140px;
  }
}
.lp__schedule-team--item-2 {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .lp__schedule-team--item-2 {
    gap: 45px;
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-team--item-2 img {
    width: 91px;
    height: 109px;
  }
}
.lp__schedule-vs {
  font: 900 6.4rem "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__schedule-vs {
    font-size: 32px;
  }
}
.lp__schedule-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .lp__schedule-date {
    gap: 8px;
    margin-bottom: 8px;
  }
}
.lp__schedule-date--item-2 {
  margin-block: 35px 22px;
}
@media screen and (max-width: 767px) {
  .lp__schedule-date--item-2 {
    margin-block: 18px 8px;
  }
}
.lp__schedule-day {
  font: 700 4rem "Montserrat", sans-serif;
  color: #fff;
  line-height: 1.225em;
  text-align: center;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__schedule-day {
    font-size: calc(30px + (40 - 30) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-day {
    font-size: 20px;
  }
}
.lp__schedule-month {
  font: 700 12rem "Montserrat", sans-serif;
  color: #fff;
  line-height: 0;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__schedule-month {
    font-size: calc(80px + (120 - 80) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-month {
    font-size: 64px;
  }
}
.lp__schedule-time {
  font: 700 4rem "Montserrat", sans-serif;
  max-width: 402px;
  width: 100%;
  padding: 7.6px 17px;
  color: #fff;
  text-align: center;
  background-color: #1819b7;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__schedule-time {
    font-size: calc(30px + (40 - 30) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-time {
    max-width: 203px;
    font-size: 20px;
    padding: 4px;
  }
}
.lp__schedule-text {
  font: 700 2.4rem "Montserrat", sans-serif;
  color: #fff;
  line-height: 1.2083333333em;
  margin-block: 31px 16px;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__schedule-text {
    font-size: calc(20px + (24 - 20) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__schedule-text {
    font-size: 13px;
    margin-block: 12px 8px;
  }
}
.lp__schedule-team-2 {
  max-width: 402px;
  width: 100%;
  height: 128px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__schedule-team-2 {
    max-width: 203px;
    height: 65px;
    border-radius: 5px;
  }
  .lp__schedule-team-2 .lp__schedule-logo2 {
    width: 100px;
    height: 35px;
  }
}
.lp__event {
  margin-top: -110px;
  position: relative;
  padding-block: 254px 0;
  background: url("../public/img/lp/bg-03.png") no-repeat center/100% 100%;
  z-index: 1;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .lp__event {
    margin-top: -175px;
    padding-block: 319px 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__event {
    margin-top: -40px;
    padding-block: 82px 40px;
    background: url("../public/img/lp/bg-03-sp.png") center/100% 100% no-repeat;
  }
}
@media screen and (max-width: 980px) {
  .lp__event-title-en {
    max-width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-title-en {
    max-width: 210px;
  }
}
.lp__event-deco {
  position: absolute;
  z-index: -1;
}
.lp__event-deco.deco-1 {
  width: 18.9%;
  top: -241px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.deco-1 {
    width: 55px;
    top: -76px;
  }
}
.lp__event-deco.deco-2 {
  width: 21.21%;
  top: -54px;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.deco-2 {
    width: 78px;
    top: unset;
    bottom: -171px;
  }
}
.lp__event-deco.flame {
  width: 100%;
  bottom: -358px;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
  .lp__event-deco.flame {
    bottom: calc(-200px + (-358 - -200) * (100vw - 768px) / (1920 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__event-deco.flame {
    bottom: -51px;
  }
}
.lp__event-deco.paint {
  width: 46.67%;
  top: -86px;
  left: 0;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.paint {
    width: 235px;
    top: 15px;
  }
}
.lp__event-deco.deco-3 {
  width: 16%;
  left: 0;
  top: 321px;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.deco-3 {
    width: 82px;
    left: 11px;
    top: 100px;
  }
}
.lp__event-deco.deco-4 {
  width: 26.3%;
  bottom: -171px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.deco-4 {
    width: 106px;
    top: unset;
    bottom: -83px;
  }
}
.lp__event-deco.star-1 {
  width: 959px;
  top: -188px;
  left: 0;
  z-index: 1;
}
.lp__event-deco.star-2 {
  width: 792px;
  top: -279px;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp__event-deco.star-2 {
    width: 309px;
    top: -9px;
    z-index: -1;
  }
}
.lp__event-intro, .lp__event-main {
  position: relative;
}
.lp__event-intro-ctr {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .lp__event-intro-ctr {
    margin: 0 auto 40px;
  }
}
.lp__event-intro-title {
  font-size: 6.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.4375em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp__event-intro-title {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-intro-title {
    font-size: 32px;
    line-height: 1.4375em;
  }
}
.lp__event-desc {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #fff;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 980px) {
  .lp__event-desc {
    font-weight: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-desc {
    font-size: 16px;
    line-height: 3em;
  }
}
.lp__event-list {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .lp__event-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-list {
    margin-top: 24px;
    gap: 24px;
  }
}
.lp__event-item {
  max-width: 580px;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .lp__event-item {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-item {
    gap: 12px;
    padding: 24px;
  }
}
.lp__event-item:has(.lp__event-item-button:hover) .shine::before {
  -webkit-animation: shine 0.75s linear 1 !important;
          animation: shine 0.75s linear 1 !important;
}
.lp__event-item-button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.lp__event-image {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/9;
}
.lp__event-title {
  min-height: 92px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4375em;
  color: #fff;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 980px) {
  .lp__event-title {
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-title {
    font-size: 24px;
    margin-top: 12px;
  }
}
.lp__event-info {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .lp__event-info {
    margin-bottom: 24px;
  }
}
.lp__event-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lp__present {
  margin-top: -116px;
  padding-block: 282px 80px;
  background: url("../public/img/lp/bg-04.jpg") no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__present {
    margin-top: -16px;
    padding-block: 82px 40px;
    background: url("../public/img/lp/bg-04-sp.jpg") no-repeat center/cover;
  }
}
.lp__present-ctr {
  position: relative;
  max-width: calc(1522px + 8%) !important;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__present-title-en {
    max-width: 302px;
  }
}
@media screen and (max-width: 767px) {
  .lp__present-title-en {
    max-width: 200.8px;
  }
}
.lp__present-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  padding-top: 77px;
}
@media screen and (max-width: 1200px) {
  .lp__present-list {
    gap: 34px;
  }
}
@media screen and (max-width: 980px) {
  .lp__present-list {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__present-list {
    gap: 24px;
  }
}
.lp__present-item:first-of-type {
  margin-top: -80px;
}
@media screen and (max-width: 980px) {
  .lp__present-item:first-of-type {
    margin-top: 0;
  }
}
.lp__present-item-ctr {
  max-width: 729px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 24px 24px 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px) brightness(1);
          backdrop-filter: blur(20px) brightness(1);
  position: relative;
}
@media screen and (max-width: 980px) {
  .lp__present-item-ctr {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .lp__present-item-ctr {
    padding: 24px;
  }
}
.lp__present-image {
  overflow: hidden;
  border-radius: 10px;
}
.lp__present-title {
  font-size: 4rem;
  letter-spacing: 0.02em;
  margin-block: 40px 24px;
  color: #fff;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__present-title {
    font-size: calc(30px + (40 - 30) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__present-title {
    font-size: 24px;
    margin-block: 12px;
    text-align: center;
  }
}
.lp__present-info {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #fff;
}
.lp__present-date {
  width: 100%;
  padding: 11px 20px 13px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .lp__present-date {
    padding: 8px 10px;
    border-radius: 5px;
    margin-bottom: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.lp__present-date-text {
  display: block;
  font: 700 2.4rem "Montserrat", sans-serif;
  color: #1f1ba2;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__present-date-text {
    font-size: calc(20px + (24 - 20) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__present-date-text {
    font-size: 16px;
  }
}
.lp__present-date-info {
  font-size: 4rem;
  font-weight: 700;
  color: #1f1ba2;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__present-date-info {
    font-size: calc(30px + (40 - 30) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__present-date-info {
    font-size: 24px;
  }
}
.lp__present-deco {
  position: absolute;
}
.lp__present-deco.deco-1 {
  width: 23.63%;
  position: absolute;
  top: 262px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lp__present-deco.deco-1 {
    width: 208px;
    top: unset;
    bottom: 168px;
  }
}
.lp__present-deco.deco-2 {
  width: 44.94%;
  position: absolute;
  top: 249px;
  right: 0;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .lp__present-deco.deco-2 {
    width: 268px;
    top: 121px;
  }
}
.lp__revs {
  width: 100%;
}
.lp__revs-head {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .lp__revs-head {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 980px) {
  .lp__revs-title-en {
    max-width: 365px;
  }
}
@media screen and (max-width: 767px) {
  .lp__revs-title-en {
    max-width: 245px;
  }
}
.lp__kids {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: url("../public/img/kids/kids-bg.png") center bottom/cover no-repeat;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .lp__kids {
    padding: 40px 0 80px;
    background: url("../public/img/kids/kids-bg-sp.png") center bottom/cover no-repeat;
  }
}
@media screen and (max-width: 980px) {
  .lp__kids-title-en {
    max-width: 475px;
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-title-en {
    max-width: 265px;
  }
}
.lp__kids-list {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lp__kids-list {
    margin-top: 24px;
  }
}
.lp__kids-item {
  display: grid;
  grid-template-columns: 51.33% 44.67%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp__kids-item {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }
}
.lp__kids-item:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .lp__kids-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.lp__kids-item:nth-child(even) {
  grid-template-columns: 44.67% 51.33%;
}
.lp__kids-item:nth-child(even) .lp__kids-item-dtl {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.lp__kids-item:nth-child(even):has(.lp__kids-item-button:hover) .lp__kids-item-image {
  -webkit-transform: rotate(5deg) !important;
          transform: rotate(5deg) !important;
}
.lp__kids-item:has(.lp__kids-item-button:hover) .lp__kids-item-image {
  -webkit-transform: rotate(-5deg) !important;
          transform: rotate(-5deg) !important;
}
.lp__kids-item-image {
  aspect-ratio: 770/566;
  -webkit-clip-path: polygon(0% 0%, 93% 0%, 100% 10%, 100% 100%, 7% 100%, 0% 90%);
          clip-path: polygon(0% 0%, 93% 0%, 100% 10%, 100% 100%, 7% 100%, 0% 90%);
  background: #fff;
  padding: 3px;
}
@media screen and (max-width: 767px) {
  .lp__kids-item-image {
    aspect-ratio: 345/253;
    margin-bottom: 16px;
  }
}
.lp__kids-item-image img {
  -webkit-clip-path: polygon(0% 0%, 93% 0%, 100% 10%, 100% 100%, 7% 100%, 0% 90%);
          clip-path: polygon(0% 0%, 93% 0%, 100% 10%, 100% 100%, 7% 100%, 0% 90%);
}
.lp__kids-item-dtl {
  color: #fff;
  text-align: center;
  padding: 50px 35px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-dtl {
    padding: calc(30px + (50 - 30) * (100vw - 768px) / (980 - 768)) calc(15px + (35 - 15) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-dtl {
    padding: 24px;
  }
}
.lp__kids-item-sched {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .lp__kids-item-sched {
    gap: 8px;
  }
}
.lp__kids-item-sched-date {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__kids-item-sched-date {
    font-size: calc(30px + (33 - 30) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-sched-date {
    font-size: calc(23px + (33 - 23) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-sched-date {
    font-size: 16px;
    gap: 8px;
  }
}
.lp__kids-item-day {
  font-size: 2.3rem;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__kids-item-day {
    font-size: calc(20px + (23 - 20) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-day {
    font-size: calc(13px + (23 - 13) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-day {
    font-size: 10px;
  }
}
.lp__kids-item-sched-note {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__kids-item-sched-note {
    font-size: calc(27px + (30 - 27) * (100vw - 981px) / (1200 - 981));
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-sched-note {
    font-size: calc(20px + (30 - 20) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-sched-note {
    font-size: 14px;
  }
}
.lp__kids-item-title {
  font-size: 5rem;
  font-weight: 400;
  font-family: "Mochiy Pop One", sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
@media screen and (min-width: 981px) and (max-width: 1280px) {
  .lp__kids-item-title {
    font-size: calc(40px + (50 - 40) * (100vw - 981px) / (1280 - 981));
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-title {
    font-size: calc(30px + (40 - 30) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-title {
    font-size: 25px;
    font-weight: 400;
    margin: 4px 0 8px;
  }
}
.lp__kids-item-desc {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 2em;
  margin: 18px 0 40px;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .lp__kids-item-desc {
    font-size: calc(14px + (18 - 14) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-item-desc {
    font-size: 16px;
    line-height: 1.5em;
    margin: 8px 0 16px;
  }
}
.lp__kids-deco, .lp__stage-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.lp__kids-swish {
  width: 62.21%;
  position: absolute;
  left: 0;
  top: 338px;
  mix-blend-mode: screen;
  z-index: -1;
}
.lp__kids-map {
  position: absolute;
  z-index: -1;
}
.lp__kids-map--left {
  width: 33.76%;
  left: -6.77%;
  top: 394px;
}
@media screen and (max-width: 767px) {
  .lp__kids-map--left {
    width: 210.68px;
    top: unset;
    bottom: -56px;
    left: -62px;
  }
}
.lp__kids-map--right {
  width: 22.85%;
  right: -1.98%;
  top: 96px;
}
@media screen and (max-width: 767px) {
  .lp__kids-map--right {
    width: 149.33px;
    top: 32.5px;
    right: -34px;
  }
}
.lp__kids-bluerevs {
  width: 2461.16px;
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%) rotate(-21deg);
          transform: translate(-50%, -50%) rotate(-21deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp__kids-bluerevs {
    width: 1085.55px;
    left: -202px;
    -webkit-transform: translateY(-50%) rotate(-53deg);
            transform: translateY(-50%) rotate(-53deg);
  }
}
.lp__stage {
  position: relative;
  padding: 197px 0 80px;
  background: url("../public/img/stage/stage-bg.jpg") center/cover no-repeat;
  z-index: 1;
  margin-top: -77px;
}
@media screen and (max-width: 767px) {
  .lp__stage {
    padding: 108px 0 80px;
    background: url("../public/img/stage/stage-bg-sp.jpg") center/cover no-repeat;
  }
}
.lp__stage::before {
  content: "";
  width: 100%;
  height: 1052px;
  background: url("../public/img/stage/bubbles.png") center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .lp__stage-title-en {
    max-width: 554px;
  }
}
@media screen and (max-width: 767px) {
  .lp__stage-title-en {
    max-width: 275px;
  }
}
.lp__stage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 980px) {
  .lp__stage-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .lp__stage-list {
    margin-top: 24px;
  }
}
.lp__stage-item {
  padding: 32px 32px 40px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .lp__stage-item {
    padding: 24px 24px 40px;
  }
}
@media screen and (max-width: 980px) {
  .lp__stage-item {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .lp__stage-item {
    padding: 24px 24px 40px;
  }
}
@media screen and (max-width: 980px) {
  .lp__stage-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp__stage-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.lp__stage-item:has(.lp__stage-item-link:hover) .shine::before {
  -webkit-animation: shine 0.75s linear 1 !important;
          animation: shine 0.75s linear 1 !important;
}
.lp__stage-item-image {
  aspect-ratio: 416/443;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .lp__stage-item-image {
    aspect-ratio: 297/240;
    margin-bottom: 16px;
  }
}
.lp__stage-item-title {
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  margin: 25px 0 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__stage-item-title {
    font-size: 24px;
    margin: 16px 0;
  }
}
.lp__stage-item-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.02em;
  margin: 24px 0 40px;
}
@media screen and (max-width: 767px) {
  .lp__stage-item-desc {
    margin: 16px 0 24px;
  }
}
.lp__stage-swish {
  width: 42.92%;
  position: absolute;
  top: -101px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .lp__stage-swish {
    width: 350px;
    top: -45px;
  }
}
.lp__stage-map {
  width: 25.57%;
  position: absolute;
  right: -6.82%;
  bottom: 84px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp__stage-map {
    width: 238px;
    right: -35px;
    bottom: -16px;
  }
}
.lp__hosp {
  position: relative;
  padding: 120px 0 80px;
  background: url("../public/img/hospitality/hosp-bg.jpg") top left/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__hosp {
    padding: 40px 0 56px;
    background: url("../public/img/hospitality/hosp-bg-sp.jpg") top left/cover no-repeat;
  }
}
@media screen and (max-width: 980px) {
  .lp__hosp-title-en {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .lp__hosp-title-en {
    max-width: 213px;
  }
}
.lp__hosp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 51px;
  margin-top: 65px;
}
@media screen and (min-width: 981px) and (max-width: 1500px) {
  .lp__hosp-list {
    gap: calc(25px + (51 - 25) * (100vw - 981px) / (1500 - 981));
  }
}
@media screen and (max-width: 980px) {
  .lp__hosp-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .lp__hosp-list {
    margin-top: 24px;
  }
}
.lp__hosp-item {
  position: relative;
}
@media screen and (max-width: 980px) {
  .lp__hosp-item {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 980px) {
  .lp__hosp-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .lp__hosp-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.lp__hosp-item:has(.lp__hosp-item-link:hover) .shine::before {
  -webkit-animation: shine 0.75s linear 1 !important;
          animation: shine 0.75s linear 1 !important;
}
.lp__hosp-item-image {
  max-width: calc(100% - 16px);
  aspect-ratio: 1/1;
  border: 7px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lp__hosp-item-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp__hosp-item-image {
    aspect-ratio: 345/240;
  }
}
.lp__hosp-item-image img {
  border-radius: 10px;
  overflow: hidden;
}
.lp__hosp-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 16px);
  height: 150px;
  background-color: #fff;
  padding: 0 30px;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1f1ba2;
  border-radius: 10px;
  -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.16));
  position: absolute;
  right: 0;
  bottom: -11px;
}
@media screen and (min-width: 981px) and (max-width: 1500px) {
  .lp__hosp-item-link {
    font-size: calc(18px + (23 - 18) * (100vw - 981px) / (1500 - 981));
    height: calc(95px + (150 - 95) * (100vw - 981px) / (1500 - 981));
  }
}
@media screen and (max-width: 767px) {
  .lp__hosp-item-link {
    width: calc(100% - 12px);
    height: 59px;
    font-size: 16px;
    padding: 0 24px;
    bottom: -16px;
  }
}
.lp__hosp-item-link::after {
  content: "";
  width: 9px;
  height: 16px;
  background: url("../public/img/icons/btn-caret-blue.svg") center/contain no-repeat;
}
.lp__hosp-item-link:hover {
  -webkit-transform: translateX(20px) !important;
          transform: translateX(20px) !important;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-grid {
  display: grid;
}
@media screen and (max-width: 767px) {
  .pc-grid {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1500px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0));
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: skew(50deg);
          transform: skew(50deg);
  width: 100%;
  z-index: 9999;
}

.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -65px;
  }
}

@-webkit-keyframes shine {
  0% {
    display: block;
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    display: none;
    left: 100%;
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    display: block;
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    display: none;
    left: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@-webkit-keyframes bounce-bottom {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-bottom {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@-webkit-keyframes reveal-left-right {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes reveal-left-right {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes reveal-right-left {
  0% {
    -webkit-clip-path: inset(0% 0% 0% 100%);
            clip-path: inset(0% 0% 0% 100%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes reveal-right-left {
  0% {
    -webkit-clip-path: inset(0% 0% 0% 100%);
            clip-path: inset(0% 0% 0% 100%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
[data-aos=wobble-hor-bottom] {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
[data-aos=wobble-hor-bottom].aos-animate {
  -webkit-animation: wobble-hor-bottom 0.8s both;
          animation: wobble-hor-bottom 0.8s both;
}

[data-aos=fade-show-up] {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: opacity 1s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease, background-color 0.3s ease, color 0.3s ease;
  transition: transform 1s ease, opacity 1s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 1s ease;
}
[data-aos=fade-show-up].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

[data-aos=bounce-top] {
  -webkit-transform: translateY(-45px);
          transform: translateY(-45px);
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  opacity: 0;
}
[data-aos=bounce-top].aos-animate {
  -webkit-animation: bounce-top 0.9s both;
          animation: bounce-top 0.9s both;
}

[data-aos=bounce-bottom] {
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  opacity: 1;
}
[data-aos=bounce-bottom].aos-animate {
  -webkit-animation: bounce-bottom 1s both;
          animation: bounce-bottom 1s both;
}

[data-aos=reveal-left-right] {
  -webkit-clip-path: inset(0% 100% 0% 0%);
          clip-path: inset(0% 100% 0% 0%);
}
[data-aos=reveal-left-right].aos-animate {
  -webkit-animation: reveal-left-right 0.5s ease-out forwards;
          animation: reveal-left-right 0.5s ease-out forwards;
}

[data-aos=reveal-right-left] {
  -webkit-clip-path: inset(0% 100% 0% 0%);
          clip-path: inset(0% 100% 0% 0%);
}
[data-aos=reveal-right-left].aos-animate {
  -webkit-animation: reveal-right-left 0.5s ease-out forwards;
          animation: reveal-right-left 0.5s ease-out forwards;
}

[data-aos=slow-display] {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
[data-aos=slow-display].aos-animate {
  opacity: 1;
}