* {
  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;
}

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;
}

.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;
  z-index: 1;
}
@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--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;
}

.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;
  }
}

.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__sched {
  padding-block: 8rem;
  background-color: #1d2021;
  background-image: url("../public/img/lp-20260328/sched_bg.jpg");
}
@media screen and (max-width: 767px) {
  .lp__sched {
    padding-block: 3.2rem 2.4rem;
    background-image: none;
  }
}
.lp__sched-box {
  border: 4px solid #fff;
  background-color: #13347e;
  background-image: url("../public/img/lp-20260328/sched_box-bg.png");
}
@media screen and (max-width: 767px) {
  .lp__sched-box {
    border-width: 2px;
    background-image: url("../public/img/lp-20260328/sched_box-bg-sp.png");
  }
}
.lp__sched-box-text, .lp__sched-ko-text {
  font-family: "Noto Serif JP", serif;
}
.lp__sched-block, .lp__sched-ko {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__sched-block, .lp__sched-ko {
    max-width: 26.1rem;
  }
}
.lp__sched-date-text {
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp__sched-date-text {
    gap: 8px;
  }
}
.lp__sched-ko {
  background: #ff8709;
  margin-bottom: 1.2rem;
}
.lp__sched-ko-text {
  color: #13347e;
  font-size: 2.4rem;
  line-height: 1.4583333333em;
}
@media screen and (max-width: 767px) {
  .lp__sched-button {
    margin-top: 2.4rem;
  }
}

.lp__present {
  padding-block: 7.9rem 8.7rem;
  position: relative;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(#1d2021), to(#1d2021)) left bottom/77.1% 66.77% no-repeat, -webkit-gradient(linear, left top, right top, color-stop(18.75%, #fff), color-stop(18.75%, #cccfdb));
  background: linear-gradient(#1d2021, #1d2021) left bottom/77.1% 66.77% no-repeat, linear-gradient(to right, #fff 18.75%, #cccfdb 18.75%);
}
@media screen and (max-width: 767px) {
  .lp__present {
    padding-block: 2.4rem 4.3rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#1d2021), to(#1d2021)) left bottom/100% 49.6% no-repeat, -webkit-gradient(linear, left top, right top, color-stop(14.67%, #fff), color-stop(14.67%, #cccfdb));
    background: linear-gradient(#1d2021, #1d2021) left bottom/100% 49.6% no-repeat, linear-gradient(to right, #fff 14.67%, #cccfdb 14.67%);
  }
}
.lp__present::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.6666666667%;
  -webkit-transform: translateY(-36.3425925926%);
          transform: translateY(-36.3425925926%);
  background: url("../public/img/lp-20260328/section_splash1.svg") no-repeat center/contain;
  width: 27.8125%;
  aspect-ratio: 534/432;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lp__present::before {
    right: 2.1333333333%;
    -webkit-transform: translateY(-6.4814814815%);
            transform: translateY(-6.4814814815%);
    width: 35.4666666667%;
  }
}
.lp__present::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2.4479166667%;
  -webkit-transform: translateY(67.7325581395%);
          transform: translateY(67.7325581395%);
  background: url("../public/img/lp-20260328/section_splash2.svg") no-repeat center/contain;
  width: 22.5520833333%;
  aspect-ratio: 433/344;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lp__present::after {
    display: none;
  }
}
.lp__present-banner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
.lp__present-note {
  margin-top: 2.3rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__present-note {
    margin-top: 1.6rem;
    font-weight: 500;
    text-align: left;
  }
}
.lp__present-button {
  width: 100%;
  max-width: 315px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.lp__event {
  background: #13347e url("../public/img/lp-20260328/event_bg.jpg") no-repeat center/cover;
  padding-block: 15.8rem 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__event {
    padding-block: 6.7rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__event::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(45.2631578947%);
            transform: translateY(45.2631578947%);
    width: 32%;
    background: url("../public/img/lp-20260328/section_splash2.svg") no-repeat center/contain;
    aspect-ratio: 433/344;
    pointer-events: none;
  }
}
.lp__event-head, .lp__event-content {
  overflow: hidden;
}
.lp__event-head, .lp__event-inner {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1342px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__event-head, .lp__event-inner {
    max-width: 100%;
    padding-inline: 15px;
  }
}
.lp__event-head {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .lp__event-head {
    margin-bottom: 2.4rem;
  }
}
.lp__event-title {
  margin-bottom: 0;
}
.lp__event-banner {
  margin-bottom: 10.8rem;
}
@media screen and (max-width: 767px) {
  .lp__event-banner {
    margin-bottom: 10rem;
  }
}
.lp__event-list {
  width: 100%;
  max-width: 1190px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.8rem;
}
@media screen and (max-width: 767px) {
  .lp__event-list {
    gap: 10rem;
  }
}
.lp__event-item {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lp__event-item:nth-child(odd) .lp__event-item-box {
    margin-left: auto;
    padding-inline: 38.57% 4rem;
  }
}
.lp__event-item:nth-child(odd) .lp__event-item-box::before {
  right: 0;
  -webkit-transform: translate(22.8782287823%, -34.3949044586%);
          transform: translate(22.8782287823%, -34.3949044586%);
  background: url("../public/img/lp-20260328/splash1.svg") no-repeat center/contain;
  width: 23.647469459%;
  aspect-ratio: 271/157;
}
@media screen and (max-width: 767px) {
  .lp__event-item:nth-child(odd) .lp__event-item-box::before {
    left: initial;
    -webkit-transform: translate(14.0186915888%, 240.3225806452%);
            transform: translate(14.0186915888%, 240.3225806452%);
    width: 31.0144927536%;
  }
}
@media screen and (min-width: 768px) {
  .lp__event-item:nth-child(odd) .lp__event-item-image {
    right: initial;
    left: 0;
    -webkit-transform: translate(-18.95%, -18.58%);
            transform: translate(-18.95%, -18.58%);
  }
}
.lp__event-item-image {
  width: 41.68%;
  aspect-ratio: 496/366;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: #fff;
  -webkit-transform: translate(18.95%, -18.58%);
          transform: translate(18.95%, -18.58%);
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 767px) {
  .lp__event-item-image {
    width: 90.7%;
    max-width: 313px;
    aspect-ratio: 313/200;
    right: initial;
    left: 50%;
    -webkit-transform: translate(-50%, -38%);
            transform: translate(-50%, -38%);
  }
}
.lp__event-item-box {
  width: 96.3%;
  background: #cccfdb;
  display: grid;
  padding-inline: 4rem 38.57%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__event-item-box {
    width: 100%;
    padding-inline: 4.65%;
  }
}
.lp__event-item-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 37.35%;
  -webkit-transform: translateY(-33.6633663366%);
          transform: translateY(-33.6633663366%);
  background: url("../public/img/lp-20260328/splash2.svg") no-repeat center/contain;
  width: 11.6055846422%;
  aspect-ratio: 133/202;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lp__event-item-box::before {
    right: initial;
    left: 0;
    -webkit-transform: translate(-8%, 112.2807017544%);
            transform: translate(-8%, 112.2807017544%);
    width: 21.7391304348%;
  }
}
.lp__event-item-details {
  position: relative;
  padding-block: 6rem 3.7rem;
}
@media screen and (max-width: 767px) {
  .lp__event-item-details {
    padding-block: 14rem 2.4rem;
  }
}
.lp__event-item-heading {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font: 700 4rem "Noto Serif JP", serif;
  line-height: 1.425em;
  color: #a40505;
  border: 2px solid #a40505;
  background: #fff;
  padding: 1.2rem;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .lp__event-item-heading {
    font-size: 2.4rem;
    position: static;
    top: initial;
    -webkit-transform: initial;
            transform: initial;
    margin-inline: auto;
  }
}
.lp__event-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp__event-item-text {
    margin-top: 1.6rem;
    gap: 1.6rem;
  }
}
.lp__event-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 1.5em;
  color: #1d2021;
}
.lp__event-text-head {
  font: 700 2.4rem "Garamond", serif;
  color: #13347e;
}
@media screen and (max-width: 767px) {
  .lp__event-text-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;
  }
}
.lp__event-button {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .lp__event-button {
    margin-top: 2.4rem;
  }
}

.lp__gourmet {
  padding-top: 8rem;
  background: #cccfdb;
}
@media screen and (max-width: 767px) {
  .lp__gourmet {
    padding-top: 4rem;
  }
}
.lp__gourmet__head {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .lp__gourmet__head {
    margin-bottom: 2.4rem;
  }
}

.lp__hos {
  margin: 0;
  padding-block: 8rem 16rem;
  background: #cccfdb;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__hos {
    padding-block: 2.4rem 5.8rem;
  }
}
.lp__hos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../public/img/lp-20260328/hospitality_bg.png") no-repeat center/cover;
  mix-blend-mode: overlay;
}
.lp__hos-btn {
  border-color: #13347e;
}
.lp__hos-btn:hover {
  background: #13347e;
}

.lp__float-button {
  background: #a40505;
  border-radius: 0;
  border: 2px solid #1d2021;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.lp__float-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/lp-20260328/float_bg.png") no-repeat center/cover;
  mix-blend-mode: overlay;
  z-index: -1;
}
.lp__float-button:hover {
  background: #1d2021;
}
.lp__float-button::after, .lp__float-button-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.button {
  font-family: "Garamond", serif;
}

.footer {
  background: #13347e;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 6.5rem;
  }
}
.footer__ticket-link {
  border-radius: 0;
  border: none;
  background-color: #a40505;
}
.footer__ticket-link::before {
  background-image: url("../public/img/common/ticket_bg-v2.png");
}
.footer__ticket-link::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__ticket-link:hover {
  background: #1d2021;
}
.footer__ticket-text {
  color: #fff;
}

.blue {
  color: #13347e;
}

.blue-bg {
  background-color: #13347e;
}