* {
  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;
}

img,
picture {
  display: block;
}

::before,
::after {
  pointer-events: none;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #080c7e;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 16px;
  }
}
.title--serif .title__en {
  font-family: "Garamond", serif;
}
@media screen and (min-width: 768px) {
  .title--serif .title__en {
    font-size: 8rem;
    line-height: 1.125em;
  }
}
.title--serif .title__jp {
  font-family: "Noto Serif JP", serif;
}
.title__en {
  font: 700 6.4rem "Montserrat", sans-serif;
  line-height: 1.21875em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .title__en {
    font-size: 40px;
    line-height: 1.225em;
    margin-bottom: 4px;
  }
}
.title__jp {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333em;
  display: block;
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.title__icon {
  margin: 0 auto 7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title-qt {
  width: 100%;
  max-width: 896px;
  margin-inline: auto;
  position: relative;
  min-height: 6.7rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  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-qt {
    min-height: 8.6rem;
  }
}
.title-qt, .title-qt::before {
  background: #cb4a7c;
}
.title-qt::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-mask: url("../public/img/common/qt-tail.svg") center/contain no-repeat;
          mask: url("../public/img/common/qt-tail.svg") center/contain no-repeat;
  width: 3.5rem;
  aspect-ratio: 35/21;
}

.button {
  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;
  position: relative;
  width: 100%;
  max-width: 315px;
  height: 77px;
  background: #fff;
  border: 2px solid #bf0000;
  border-radius: 10px;
  color: #bf0000;
  font: 700 2.4rem "Montserrat", sans-serif;
  line-height: 1.2083333333em;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button {
    height: 54px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 1.2222222222em;
  }
}
.button::after {
  content: "";
  -webkit-mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
          mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
  background: #bf0000;
  width: 9px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button::after {
    width: 6px;
    height: 11px;
  }
}
.button:hover {
  background: #bf0000;
  color: #fff;
}
.button:hover::after {
  background: #fff;
}
.button--round {
  border-radius: 38.5px;
}
.button--sq {
  border-radius: 0;
}
.button--solid {
  background: #a40505;
  border-color: #a40505;
  color: #fff;
}
.button--solid::after {
  background: #fff;
}
.button--solid:hover {
  background: #1d2021;
  border-color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
  pointer-events: none;
  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;
}
.modal.active {
  opacity: 1;
  pointer-events: initial;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal.active .overlay {
  opacity: 1;
}
.modal.active .modal-inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal .overlay {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.modal .close {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 999;
  border: 0;
  background-color: #071f47;
  cursor: pointer;
  font-size: 4rem;
  color: #fff;
  width: 4rem;
  aspect-ratio: 1/1;
  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;
}

.modal-inner {
  height: 90vh;
  max-width: 100%;
  aspect-ratio: 9/16;
  border: 4px solid #071f47;
  background: #071f47;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: 1000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.modal-inner video {
  width: 100%;
  height: 100%;
}
.modal-inner iframe {
  height: 100%;
  aspect-ratio: 9/16;
}

.section__head, .section__content, .section__inner {
  width: 100%;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .section__head, .section__content, .section__inner {
    max-width: 100%;
    padding-inline: 15px;
  }
}
.section__head--full, .section__content--full {
  max-width: 100%;
  padding-inline: 0;
}

.footer {
  background: #080c7e;
}
.footer__container {
  max-width: calc(1210px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100% !important;
  }
}
.footer__content {
  padding: 145px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 9.5%;
}
@media screen and (max-width: 980px) {
  .footer__content {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .footer__logo {
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 209px;
  }
}
.footer__logo:hover {
  opacity: 0.85;
}
.footer__ticket-link {
  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: 7%;
  background: #fff;
  border: 2px solid #bf0000;
  border-radius: 10px;
  width: 100%;
  max-width: 874px;
  height: 215px;
  padding: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .footer__ticket-link {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket-link {
    gap: 16px;
    border-radius: 5px;
    max-width: 345px;
    height: 92px;
    padding: 16px 16px 16px 24px;
  }
}
.footer__ticket-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  mix-blend-mode: overlay;
}
.footer__ticket-link::after {
  content: "";
  -webkit-mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
          mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
  background: #bf0000;
  width: 18px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .footer__ticket-link::after {
    width: 16px;
    height: 30px;
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket-link::after {
    width: 6px;
    height: 11px;
    right: 16px;
  }
}
.footer__ticket-link:hover {
  background: #bf0000;
}
.footer__ticket-link:hover::after {
  background: #fff;
}
.footer__ticket-link:hover .footer__ticket-text {
  color: #fff;
}
.footer__ticket {
  max-width: 36.6%;
}
@media screen and (max-width: 767px) {
  .footer__ticket {
    max-width: 131px;
  }
}
.footer__ticket-text {
  color: #bf0000;
  font-size: clamp(3.2rem, 2vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45em;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .footer__ticket-text {
    font-size: clamp(2.8rem, 3.2vw, 3.2rem);
  }
}
@media screen and (max-width: 767px) {
  .footer__ticket-text {
    font-size: 16px;
    line-height: 2em;
  }
}
.footer__copyright-block {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .footer__copyright-block {
    padding: 8px;
  }
}
.footer__copyright-text {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright-text {
    font-size: 13px;
  }
}

.lp__mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__mv {
    aspect-ratio: 375/469;
  }
}
.lp__mv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.lp__mv-img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.lp__sched {
  background: #080c7e no-repeat center/cover;
  padding-block: 40px 80px;
}
@media screen and (max-width: 767px) {
  .lp__sched {
    padding-block: 24px 40px;
  }
}
.lp__sched--sq .lp__sched-box {
  border-radius: 0;
}
.lp__sched-box {
  color: #fff;
  background: rgba(74, 152, 255, 0.2) no-repeat center/cover;
  padding: 32px 24px 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .lp__sched-box {
    padding: 35px 22px;
    border-radius: 10px;
  }
}
.lp__sched-box-head {
  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: 31px;
}
@media screen and (max-width: 767px) {
  .lp__sched-box-head {
    gap: 8px;
  }
}
.lp__sched-box-text-block {
  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__sched-box-text-block {
    gap: 8px;
  }
}
.lp__sched-box-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333em;
}
@media screen and (max-width: 767px) {
  .lp__sched-box-text {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.lp__sched-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 97px;
}
@media screen and (max-width: 767px) {
  .lp__sched-logo {
    width: 87px;
  }
}
.lp__sched-block {
  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;
  margin-block: 2.4rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-block {
    margin-block: 1.6rem 2.4rem;
    height: 5rem;
  }
}
.lp__sched-date-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font: 700 4rem "Montserrat", sans-serif;
  line-height: 1.225em;
}
@media screen and (max-width: 980px) {
  .lp__sched-date-text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__sched-date-text {
    gap: 16px;
    font-size: 20px;
    line-height: 1.2em;
  }
}
.lp__sched-date-text .date {
  font-size: 12rem;
  line-height: 1.2166666667em;
}
@media screen and (max-width: 980px) {
  .lp__sched-date-text .date {
    font-size: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__sched-date-text .date {
    font-size: 64px;
    line-height: 1.21875em;
  }
}
.lp__sched-date-more {
  height: 8.4rem;
  color: #13347e;
  line-height: 1;
  background: #fff;
  padding-inline: 8px;
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__sched-date-more {
    height: 5rem;
    padding-inline: 4px;
  }
}
.lp__sched-date-more .time {
  display: block;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  .lp__sched-date-more .time {
    margin-top: -2px;
  }
}
.lp__sched-ko {
  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: 40px;
  max-width: 743px;
  min-height: 65px;
  margin: 0 auto 24px;
  background: #bf0000;
  color: #fff;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .lp__sched-ko {
    gap: 7px;
    max-width: 255px;
    min-height: 32px;
    margin-bottom: 16px;
  }
}
.lp__sched-ko-text {
  font: 700 4rem "Montserrat", sans-serif;
  line-height: 1.225em;
}
@media screen and (max-width: 767px) {
  .lp__sched-ko-text {
    font-size: 20px;
  }
}
.lp__sched-sponsor {
  gap: 2.4rem;
  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__sched-sponsor {
    gap: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__sched-button {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .lp__sched-button {
    margin-bottom: 16px;
  }
}
.lp__hos {
  margin-block: 120px 130px;
}
@media screen and (max-width: 767px) {
  .lp__hos {
    margin-block: 40px 56px;
  }
}
.lp__hos--shadow .lp__hos-container {
  max-width: calc(1328px + 8%);
}
.lp__hos--shadow .lp__hos-list {
  margin-top: 6.4rem;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .lp__hos--shadow .lp__hos-list {
    max-width: 345px;
    margin: 3.6rem auto 0;
    gap: 5.4rem;
  }
}
.lp__hos--shadow .lp__hos-item {
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .lp__hos--shadow .lp__hos-item {
    max-width: 33.3rem;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .lp__hos--shadow .lp__hos-img {
    aspect-ratio: 333/240;
  }
}
.lp__hos--shadow .lp__hos-img picture {
  -webkit-transform: translate(-24px, -24px);
          transform: translate(-24px, -24px);
}
@media screen and (max-width: 767px) {
  .lp__hos--shadow .lp__hos-img picture {
    -webkit-transform: translate(-12px, -12px);
            transform: translate(-12px, -12px);
  }
}
.lp__hos--shadow .lp__hos-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #13347e;
}
.lp__hos--shadow .lp__hos-btn {
  left: 0;
  border-radius: 0;
  height: 9.9rem;
  -webkit-transform: translate(16px, 40px);
          transform: translate(16px, 40px);
}
@media screen and (max-width: 767px) {
  .lp__hos--shadow .lp__hos-btn {
    height: 5.9rem;
    -webkit-transform: translate(0, 18px);
            transform: translate(0, 18px);
  }
}
.lp__hos-container {
  max-width: calc(1500px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .lp__hos-container {
    max-width: 100% !important;
  }
}
.lp__hos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px 67px;
}
@media screen and (max-width: 1240px) {
  .lp__hos-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .lp__hos-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: nowrap column;
            flex-flow: nowrap column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.lp__hos-item {
  position: relative;
  width: 100%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .lp__hos-item {
    max-width: 345px;
  }
}
.lp__hos-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__hos-img {
    aspect-ratio: 345/240;
  }
}
.lp__hos-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 450px;
  height: 150px;
  background: #fff;
  border: 2px solid #080c7e;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5833333333em;
  padding: 30px;
  position: absolute;
  left: 16px;
  bottom: -11px;
  z-index: 2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__hos-btn {
    max-width: 333px;
    height: 59px;
    border-radius: 5px;
    font-size: 16px;
    padding: 18px 24px;
    left: 12px;
    bottom: -16px;
  }
}
.lp__hos-btn::after {
  content: "";
  -webkit-mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
          mask: url("../public/img/icons/caret-right.svg") no-repeat center/contain;
  background: #080c7e;
  width: 9px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__hos-btn::after {
    width: 6px;
    height: 11px;
    right: 24px;
  }
}
.lp__hos-btn:hover {
  background: #080c7e;
  color: #fff;
}
.lp__hos-btn:hover::after {
  background: #fff;
}
.lp__float-button {
  position: fixed;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 305px;
  height: 100px;
  background: #fff;
  color: #bf0000;
  border: 2px solid #bf0000;
  border-radius: 10px 0 0;
  padding: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .lp__float-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    height: 69px;
    border-radius: 5px 5px 0 0;
    padding: 12px 16px;
  }
}
.lp__float-button::after {
  content: "";
  -webkit-mask: url("../public/img//icons/caret-right.svg") no-repeat center/contain;
          mask: url("../public/img//icons/caret-right.svg") no-repeat center/contain;
  background: #bf0000;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__float-button::after {
    width: 7px;
    height: 12px;
  }
}
.lp__float-button:hover {
  background: #bf0000;
  color: #fff;
}
.lp__float-button:hover::after {
  background: #fff;
}
.lp__float-button:hover .lp__float-button-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.lp__float-button-icon {
  width: 41px;
  height: 36px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__float-button-icon {
    width: 29px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.lp__float-button-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__float-button-text {
    font-size: 18px;
    line-height: 1.4444444444em;
  }
}
.lp__float-button-text .fs-16 {
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp__float-button-text .fs-16 {
    font-size: 13px;
    line-height: 1.4615384615em;
  }
}

.overflow {
  overflow: hidden;
}

.container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 15px;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.white {
  color: #fff;
}

.white-bg {
  background-color: #fff;
}

.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}

.block {
  display: block;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

.nowrap {
  white-space: nowrap;
}

.splide__arrows {
  width: 100%;
  max-width: 1279px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrows {
    max-width: 359px;
  }
}

.splide__arrow {
  width: 79px;
  height: 79px;
  background: #fff url("../public/img/icons/blue-caret.svg") center/14px 25px no-repeat;
  border: 2px solid #080c7e;
  position: relative;
  top: unset;
  -webkit-transform: unset;
          transform: unset;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 48px;
    height: 48px;
    background-size: 10px 18px;
    border-width: 1px;
  }
}
.splide__arrow--prev {
  left: unset;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.splide__arrow--next {
  right: unset;
}
.splide__arrow > svg {
  display: none;
}

.splide__pagination {
  bottom: -53px;
}
@media screen and (max-width: 767px) {
  .splide__pagination {
    bottom: -28px;
  }
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background-color: #fff;
  margin: 0 4px;
  opacity: 1;
}
.splide__pagination__page.is-active {
  background-color: #080c7e;
  -webkit-transform: unset !important;
          transform: unset !important;
}

.splide:not(.is-overflow) .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lp__banner {
  background: #071f47;
  border-radius: 10px;
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp__banner {
    padding: 8px;
    border-radius: 5px;
  }
}

.lp__float-button {
  border-color: #f20763;
  background: #f20763;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__float-button {
    border-radius: 0;
  }
}
.lp__float-button:hover {
  border-color: #071f47;
  background: #071f47;
}
.lp__float-button::after, .lp__float-button-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.lp__float-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-36%, -50%);
          transform: translate(-36%, -50%);
  background: url("../public/img/lp-20260509/splash01.svg") center/contain no-repeat;
  width: 7.2rem;
  aspect-ratio: 72/61;
}
@media screen and (max-width: 767px) {
  .lp__float-button::before {
    -webkit-transform: translate(9px, -50%);
            transform: translate(9px, -50%);
    width: 4.8rem;
  }
}
.lp__float-button-text {
  line-height: 1;
}

.lp__sched {
  padding-block: 8rem;
  background-color: #071f47;
  background-image: url("../public/img/lp-20260509/sched_bg.jpg");
}
@media screen and (max-width: 767px) {
  .lp__sched {
    padding-block: 4rem;
  }
}
.lp__sched-title {
  margin-bottom: 5.3rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-title {
    margin-bottom: 3.2rem;
  }
}
.lp__sched-box {
  background: rgba(7, 31, 71, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.6);
  position: relative;
}
.lp__sched-box::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-42.86%, -38.6%);
          transform: translate(-42.86%, -38.6%);
  width: 36.1666666667%;
  aspect-ratio: 434/425;
  background: url("../public/img/lp-20260509/splash05.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__sched-box::before {
    left: -4.34%;
    width: 37.9710144928%;
    -webkit-transform: translateY(-39%);
            transform: translateY(-39%);
  }
}
@media screen and (max-width: 767px) {
  .lp__sched-box-head {
    gap: 2.4rem;
  }
}
.lp__sched-date-more {
  color: #071f47;
}
.lp__sched-ko, .lp__sched-sponsor {
  width: 100%;
  max-width: 46.1rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__sched-ko, .lp__sched-sponsor {
    max-width: 26.3rem;
  }
}
.lp__sched-ko {
  background: #f20763;
  margin-bottom: -1px;
}
.lp__sched-sponsor {
  background: #fff;
  border: 2px solid #f20763;
  color: #071f47;
  height: 9.3rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-sponsor {
    height: 8.6rem;
    gap: 3px;
  }
}
@media screen and (max-width: 767px) {
  .lp__sched-sponsor img {
    height: 3.8rem;
  }
}
.lp__sched-ko-text, .lp__sched-box-text {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-ko-text, .lp__sched-box-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__sched-box-text-block {
    gap: 2.5rem;
  }
}
.lp__sched-button {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-button {
    margin-top: 2.4rem;
  }
}

.lp__hl {
  padding-block: 8rem;
  background: #2364dc url("../public/img/lp-20260509/hl_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__hl {
    padding-block: 4rem;
  }
}
.lp__hl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 3.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19.4791666667%;
  aspect-ratio: 374/424;
  background: url("../public/img/lp-20260509/splash06.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__hl::before {
    right: 0;
    width: 20%;
  }
}
.lp__hl-head {
  margin-bottom: 5rem;
}
.lp__hl-note {
  margin-top: 4rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__hl-note {
    font-size: 16px;
    margin-top: 1.6rem;
  }
}

.lp__present {
  padding-block: 8rem;
  background: #071f47 url("../public/img/lp-20260509/present_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__present {
    padding-block: 4rem;
  }
}
.lp__present::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3%;
  -webkit-transform: translateY(-51.5%);
          transform: translateY(-51.5%);
  width: 15.7291666667%;
  aspect-ratio: 302/295;
  background: url("../public/img/lp-20260509/splash07.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__present::after {
    left: 0;
    width: 28.2666666667%;
  }
}
.lp__present-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lp__present-deco::before, .lp__present-deco::after {
  content: "";
  position: absolute;
  width: 37.2916666667%;
  aspect-ratio: 716/415;
  background: url("../public/img/lp-20260509/present_deco.png") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__present-deco::before, .lp__present-deco::after {
    width: 60.5333333333%;
  }
}
.lp__present-deco::after {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lp__present-deco::after {
    top: 5.5rem;
  }
}
.lp__present-deco::before {
  bottom: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.lp__present-head, .lp__present-content {
  position: relative;
  z-index: 1;
}
.lp__present-head {
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 767px) {
  .lp__present-head {
    margin-bottom: 5.5rem;
  }
}
.lp__present-ga {
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .lp__present-ga {
    margin-bottom: 7.4rem;
  }
}
.lp__present-note {
  margin-top: 4rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__present-note {
    margin-top: 1.6rem;
  }
}
.lp__present-button {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .lp__present-button {
    margin-top: 2.5rem;
  }
}

.lp__event {
  padding-block: 8rem;
  background: #050977 url("../public/img/lp-20260509/event_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__event {
    padding-block: 4rem;
    background-image: url("../public/img/lp-20260509/event_bg-sp.jpg");
  }
}
.lp__event::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0.9%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26.3541666667%;
  aspect-ratio: 506/402;
  background: url("../public/img/lp-20260509/splash08.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .lp__event::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-25.4%);
            transform: translateY(-25.4%);
    width: 57.8666666667%;
    aspect-ratio: 217/125;
    background: url("../public/img/lp-20260509/splash10.svg") center/contain no-repeat;
  }
}
.lp__event-head, .lp__event-content {
  position: relative;
  z-index: 1;
}
.lp__event-head {
  margin-bottom: 15.3rem;
}
@media screen and (max-width: 767px) {
  .lp__event-head {
    margin-bottom: 6.3rem;
  }
}
.lp__event-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5rem;
}
@media screen and (max-width: 767px) {
  .lp__event-content {
    gap: 7rem;
  }
}
.lp__event-content--sm {
  gap: 40px;
}
.lp__event-block-head, .lp__event-block-content {
  width: 100%;
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(1498px + 8%);
}
@media screen and (max-width: 767px) {
  .lp__event-block-head, .lp__event-block-content {
    max-width: 100%;
    padding-inline: 15px;
  }
}
.lp__event-block-head--full, .lp__event-block-content--full {
  max-width: 100%;
  padding-inline: 0;
}
.lp__event-block-title {
  margin-bottom: 6.1rem;
}
@media screen and (max-width: 767px) {
  .lp__event-block-title {
    margin-bottom: 3.7rem;
  }
}
.lp__event-block-title--mb88 {
  margin-bottom: 88px;
}
.lp__event-block-title--deco::after {
  width: 50px !important;
  top: -14px !important;
  left: -9px !important;
}
.lp__event-comedy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__event-comedy {
    width: calc(100% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 115px 20px 25px;
    margin-bottom: 70px;
  }
}
.lp__event-comedy::before {
  content: "";
  width: 96%;
  height: 457px;
  background-color: #071f47;
  border: 4px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.6;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lp__event-comedy::before {
    height: 523px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-comedy::before {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
}
.lp__event-comedy-imgs {
  width: 724px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp__event-comedy-imgs {
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
  }
}
.lp__event-comedy-content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp__event-comedy-title {
  font-size: 5.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1428571429em;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lp__event-comedy-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-comedy-title {
    font-size: 24px;
    line-height: 1.4583333333em;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.lp__event-comedy-title::before {
  content: "";
  width: 515px;
  height: 275px;
  background: url("../public/img/lp-20260509/comedy-deco.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lp__event-comedy-title::before {
    width: 348px;
    height: 196px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-comedy-title::before {
    width: 288px;
    height: 153px;
  }
}
.lp__event-comedy-desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 2em;
  margin-block: 85px 40px;
}
@media screen and (max-width: 767px) {
  .lp__event-comedy-desc {
    margin-block: 20px 15px;
  }
}
.lp__event-button {
  position: relative;
  z-index: 0;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .lp__event-button {
    margin-top: 2.4rem;
  }
}
.lp__event-button--mb85 {
  margin-block: 50px 85px;
}
@media screen and (max-width: 767px) {
  .lp__event-button--mb85 {
    margin-block: 14px 40px;
  }
}
.lp__event-fp-splide {
  visibility: visible !important;
}
.lp__event-fp-splide .splide__arrows {
  max-width: 894px;
}
@media screen and (max-width: 767px) {
  .lp__event-fp-splide .splide__arrows {
    max-width: 345px;
  }
}
.lp__event-fp-splide .splide__arrow--next {
  -webkit-transform: translateX(69.6%);
          transform: translateX(69.6%);
}
@media screen and (max-width: 767px) {
  .lp__event-fp-splide .splide__arrow--next {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.lp__event-fp-splide .splide__arrow--prev {
  -webkit-transform: translateX(-69.6%) scaleX(-1);
          transform: translateX(-69.6%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .lp__event-fp-splide .splide__arrow--prev {
    -webkit-transform: translateX(-10px) scaleX(-1);
            transform: translateX(-10px) scaleX(-1);
  }
}
.lp__event-fp-splide .splide__pagination {
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  .lp__event-fp-splide .splide__pagination {
    margin-top: -1.6rem;
  }
}
.lp__event-fp-item {
  width: 100%;
  max-width: 282px;
  aspect-ratio: 282/400;
  background-color: #071f47;
}
@media screen and (min-width: 1201px) {
  .lp__event-fp-item {
    width: 22%;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-fp-item {
    width: 100%;
    max-width: 345px;
    aspect-ratio: 345/360;
  }
}
.lp__event-fp-button {
  margin-top: 8.4rem;
}
@media screen and (max-width: 767px) {
  .lp__event-fp-button {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-vid-track, .lp__event-vid-list {
    width: 100%;
    height: 100%;
  }
}
.lp__event-vid-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.3rem;
}
@media screen and (max-width: 1200px) {
  .lp__event-vid-list {
    gap: 3rem;
  }
}
@media screen and (max-width: 980px) {
  .lp__event-vid-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}
.lp__event-vid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .lp__event-vid-item {
    position: relative;
  }
}
.lp__event-vid-tag {
  width: 100%;
  min-height: 5.8rem;
  background: #cb4a7c;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333em;
  color: #fff;
  text-align: center;
  padding-inline: 5px;
  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__event-vid-tag {
    font-size: 1.6rem;
  }
}
.lp__event-vid-tag small {
  font-size: 1.4rem;
  line-height: 1.2857142857em;
}
@media screen and (max-width: 1200px) {
  .lp__event-vid-tag small {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1199px) {
  .lp__event-vid-tag small {
    font-size: 1.2rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
@media screen and (max-width: 767px) {
  .lp__event-vid-tag small {
    font-size: 1.2rem;
  }
}
.lp__event-vid-image {
  width: 100%;
  aspect-ratio: 371/600;
  background: #afafaf;
  position: relative;
  cursor: pointer;
  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__event-vid-image {
    aspect-ratio: 345/516;
  }
}
.lp__event-vid-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url("../public/img/common/ico-play.svg") center/contain no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__event-vid-button {
    margin-top: 5.2rem;
  }
}

.lp__event-carousel .splide__arrows {
  max-width: 571px;
}
.lp__event-carousel .splide__arrow {
  border-color: #071f47;
}
.lp__event-carousel-list {
  padding-bottom: 14px !important;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-list {
    padding-bottom: 9px !important;
  }
}
.lp__event-carousel-item {
  width: 459px;
  height: 576px;
  background-color: #fff;
  border: 2px solid #071f47;
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-item {
    width: 337px;
    height: 448px;
    padding: 16px;
  }
}
.lp__event-carousel-item::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  background-color: #071f47;
  position: absolute;
  right: -14px;
  bottom: -14px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-item::before {
    right: -9px;
    bottom: -9px;
  }
}
.lp__event-carousel-img {
  width: 100%;
  height: 339px;
  border: 2px solid #071f47;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-img {
    height: 296px;
    margin-bottom: 15px;
  }
}
.lp__event-carousel-img--h336 {
  height: 336px;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-img--h336 {
    height: 296px;
  }
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-img--h220 {
    height: 220px;
  }
}
.lp__event-carousel-img--h301 {
  height: 301px;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-img--h301 {
    height: 186px;
  }
}
.lp__event-carousel-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #071f47;
  letter-spacing: 0.02em;
  line-height: 1.4583333333em;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-title {
    margin-bottom: 8px;
  }
}
.lp__event-carousel-wrap:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-wrap:not(:last-child) {
    margin-bottom: 15px;
  }
}
.lp__event-carousel-label, .lp__event-carousel-amount {
  display: block;
  text-align: center;
}
.lp__event-carousel-label {
  width: 100%;
  height: 32px;
  background-color: #071f47;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  padding: 3px 5px 2px;
}
.lp__event-carousel-label--fs24 {
  min-height: 43px;
  height: auto;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-label--fs24 {
    padding: 5px 0;
    font-size: 20px;
  }
}
.lp__event-carousel-amount {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #071f47;
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp__event-carousel-amount {
    line-height: 1.3em;
    bottom: 8px;
    margin-top: 10px;
  }
}
.lp__event-carousel-amount--rel {
  position: relative;
  bottom: 0;
}
.lp__event-carousel-price {
  font-size: 2.4rem;
  margin-right: 4px;
}

.lp__hos {
  margin-block: 0;
  padding-block: 8rem;
  background: #3ec1f5 url("../public/img/lp-20260509/hospitality_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__hos {
    padding-block: 4rem 7rem;
  }
}
.lp__hos::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-54%);
          transform: translateY(-54%);
  width: 32.5520833333%;
  aspect-ratio: 625/540;
  background: url("../public/img/lp-20260509/splash09.svg") center/contain no-repeat;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .lp__hos::before {
    width: 44%;
    -webkit-transform: translateY(-59.86%);
            transform: translateY(-59.86%);
  }
}
.lp__hos-list {
  margin-top: 5rem;
  margin-inline: auto;
  padding-bottom: 6.4rem;
  padding-right: 2.4rem;
  max-width: 1352px;
  gap: 114px 64px;
}
@media screen and (max-width: 767px) {
  .lp__hos-list {
    padding-right: 1.2rem;
    gap: 5.4rem;
  }
}
.lp__hos-img, .lp__hos-btn {
  border: 2px solid #cb4a7c;
  border-radius: 10px;
  overflow: hidden;
}
.lp__hos-btn {
  color: #071f47;
  height: 9.9rem;
  left: 2.4rem;
  bottom: -6.4rem;
}
@media screen and (max-width: 767px) {
  .lp__hos-btn {
    height: 5.9rem;
    left: 1.2rem;
    bottom: -3rem;
  }
}
.lp__hos-btn::after {
  background: #cb4a7c;
}
.lp__hos-btn:hover {
  background: #071f47;
  border-color: #071f47;
  color: #fff;
}
.lp__hos-btn:hover::after {
  background: #fff;
}

.title {
  position: relative;
  z-index: 1;
}
.title::before {
  content: "";
  position: absolute;
  top: calc(50% + 24px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #f20763;
  -webkit-mask: url("../public/img/lp-20260509/paint-smear.svg") center/contain no-repeat;
          mask: url("../public/img/lp-20260509/paint-smear.svg") center/contain no-repeat;
  width: 45.2rem;
  aspect-ratio: 452/180;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .title::before {
    top: calc(50% + 10px);
    width: 29.7rem;
  }
}
.title--ga .title__en,
.title--ga .title__jp {
  line-height: 1;
}
.title--ga .title__en {
  font-family: "Noto Sans JP", sans-serif;
}
.title--ga::before {
  background: #00a0f0;
  -webkit-mask-image: url("../public/img/lp-20260509/paint-splat.svg");
          mask-image: url("../public/img/lp-20260509/paint-splat.svg");
  width: 23.3rem;
  aspect-ratio: 233/228;
}
@media screen and (max-width: 767px) {
  .title--ga::before {
    width: 14.1rem;
  }
}
@media screen and (min-width: 768px) {
  .title:not(.title--ga) .title__en {
    font-size: 8rem;
  }
}

.title-qt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../public/img/lp-20260509/splash03.svg") center/contain no-repeat;
  width: 142px;
  aspect-ratio: 1/1;
  -webkit-transform: translate(-10.6%, -31.7%);
          transform: translate(-10.6%, -31.7%);
}
@media screen and (max-width: 767px) {
  .title-qt::after {
    width: 77px;
  }
}

.button {
  max-width: 348px;
  height: 7.2rem;
  background: #fff;
  border: none;
  color: #071f47;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .button {
    max-width: 315px;
    height: 5.4rem;
    font-size: 2.4rem;
  }
}
.button::after {
  background: #071f47;
}
@media screen and (max-width: 767px) {
  .button::after {
    width: 9px;
    height: 16px;
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-9.35%, -50%);
          transform: translate(-9.35%, -50%);
  background: #ff6a9f;
  -webkit-mask: url("../public/img/lp-20260509/splash02.svg") center/contain no-repeat;
          mask: url("../public/img/lp-20260509/splash02.svg") center/contain no-repeat;
  width: 13.9rem;
  aspect-ratio: 139/83;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button::before {
    width: 12.5rem;
  }
}
.button:hover {
  background: #f20763;
  color: #fff;
}
.button:hover::before, .button:hover::after {
  background: #fff;
}

.footer {
  background: #0912b7 url("../public/img/lp-20260509/footer_bg.jpg") center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 6.9rem;
  }
}
.footer__ticket-link {
  border-radius: 0;
  border: none;
  background-color: #f20763;
}
.footer__ticket-link::before {
  width: 105px;
  height: initial;
  aspect-ratio: 105/90;
  background-image: url("../public/img/lp-20260509/splash01.svg");
  -webkit-transform: translate(-19%, -50%);
          transform: translate(-19%, -50%);
  mix-blend-mode: unset;
}
@media screen and (max-width: 767px) {
  .footer__ticket-link::before {
    width: 4.5rem;
  }
}
.footer__ticket-link::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__ticket-link:hover {
  background: #071f47;
}
.footer__ticket-text {
  color: #fff;
}
.footer__copyright-block {
  border: none;
  background: #060e9c;
}

.lp__goods {
  background: #13347e url("../public/img/lp-20260509/goods_bg.jpg") no-repeat center/cover;
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .lp__goods {
    padding-block: 4rem 3.2rem;
    background: #13347e url("../public/img/lp-20260509/goods_bg-sp.jpg") no-repeat center/cover;
  }
}
@media screen and (min-width: 1400px) {
  .lp__goods-container {
    padding-inline: 4%;
    margin-inline: auto;
    max-width: calc(1492px + 8%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 1400px) and (max-width: 767px) {
  .lp__goods-container {
    max-width: 100%;
    padding-inline: 15px;
  }
}
.lp__goods-button {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .lp__goods-button {
    margin-top: 6rem;
  }
}
.lp__goods-slider {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .lp__goods-slider {
    margin-bottom: 70px;
  }
}
.lp__goods-slider.is-initialized:not(.is-active) .lp__goods-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__goods-slider.is-initialized:not(.is-active) .lp__goods-track {
  overflow: visible;
}
.lp__goods-slider .splide__pagination__page {
  background-color: #fff;
}
.lp__goods-slider .splide__pagination__page.is-active {
  background-color: transparent;
}
.lp__goods-slider .splide__pagination {
  bottom: -36px;
}
.lp__goods-track {
  padding-bottom: 12px;
}
.lp__goods-item {
  max-width: 471px;
  height: 588px;
  width: 31.5%;
}
@media screen and (max-width: 1400px) {
  .lp__goods-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp__goods-item {
    width: 92%;
    max-width: 345px;
    height: 431px;
  }
}
.lp__goods-item-content {
  padding: 24px;
  background-color: #fff;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-content {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
}
.lp__goods-item-content::after {
  content: "";
  position: absolute;
  top: 12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background-color: #071f47;
  border: 2px solid #fff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-content::after {
    top: 8px;
    right: -8px;
  }
}
.lp__goods-item-img {
  width: 100%;
  aspect-ratio: 411/336;
  border: 2px solid #1d2021;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-img {
    aspect-ratio: 304/246;
  }
}
.lp__goods-item-wrap {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-wrap {
    margin-bottom: 25px;
  }
}
.lp__goods-item-title, .lp__goods-item-subtitle {
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
  color: #1d2021;
}
.lp__goods-item-title {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.lp__goods-item-subtitle {
  font-size: 1.6rem;
}
.lp__goods-item-price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  bottom: 24px;
  color: #1d2021;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-price {
    bottom: 16px;
    font-size: 1.3rem;
  }
}
.lp__goods-item-price > .fs28 {
  margin-right: 7px;
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .lp__goods-item-price > .fs28 {
    margin-right: 5px;
    font-size: 2.1rem;
  }
}
.lp__goods .splide__arrow {
  border-color: #1d2021;
  background-image: url("../public/img/icons/black-caret.svg");
}