* {
  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 {
  display: block;
  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;
}

.button {
  position: relative;
  display: block;
  min-height: 70px;
  max-width: 100%;
  width: 475px;
  margin: 0 auto;
  padding: 20px 40px;
  font: 700 2.4rem "Barlow Condensed", sans-serif;
  color: #fff;
  background-color: #1671fa;
  border-radius: 36px;
  border: 2px solid #fff;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .button {
    width: 260px;
    min-height: 40px;
    padding: 9px 12px 10px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
}
.button::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 24px;
  background: url("../public/img/icons/arrow.svg") center/contain no-repeat;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .button::after {
    width: 17px;
    height: 12px;
    right: 20px;
  }
}
.button:hover {
  opacity: 0.8;
}
.button:hover::after {
  right: 30px;
}
@media screen and (max-width: 767px) {
  .button:hover::after {
    right: 10px;
  }
}
.button--s2 {
  min-height: 55px;
  padding: 11px 28px;
  color: #2444b9;
  background-color: #f4ff2b;
  border: 2px solid #2444b9;
}
@media screen and (max-width: 980px) {
  .button--s2 {
    min-height: 40px;
  }
}
.button--s2::after {
  width: 30px;
  height: 20px;
  background: url("../public/img/icons/arrow-blu.svg") center/contain no-repeat;
  right: 28px;
}
@media screen and (max-width: 980px) {
  .button--s2::after {
    width: 17px;
    height: 12px;
  }
}
.button--s3 {
  padding: 10px 40px;
  color: #1671fa;
  border: 3px solid #1671fa;
  background-color: #fff;
}
.button--s3::after {
  background: url("../public/img/icons/arrow-sky.svg") center/contain no-repeat;
}

.title {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  font: 800 8.5rem "M PLUS 1p", sans-serif;
  -webkit-text-stroke: 8px #002397;
  white-space: nowrap;
  letter-spacing: 0.08em;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .title {
    margin: 0 auto 50px;
    font-size: 3.2rem;
  }
}
.title span {
  position: absolute;
  -webkit-text-stroke: 0;
  color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.title--small {
  font-size: 6.4rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 980px) {
  .title--small {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 980px) {
  .title--fc {
    margin-bottom: 100px;
  }
}

.dialogue {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 6px 40px 10px;
  background-color: #2444b9;
  border: 4px solid #fff;
  border-radius: 2px;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .dialogue {
    margin: 15px auto 7px;
    border: 2px solid #fff;
  }
}
.dialogue::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 33px;
  background: url("../public/img/icons/dialogue-pointer.svg") center/contain no-repeat;
  bottom: -29.3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .dialogue::before {
    width: 13px;
    height: 19px;
    bottom: -17px;
  }
}
.dialogue::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 33px;
  background: url("../public/img/icons/dialogue-pointer-main.svg") center/contain no-repeat;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .dialogue::after {
    width: 13px;
    height: 19px;
    bottom: -13px;
  }
}
.dialogue__float {
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #1671fa;
  border-radius: 50%;
  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;
  top: -35px;
  left: -35px;
}
@media screen and (max-width: 980px) {
  .dialogue__float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    top: -25px;
    left: -25px;
  }
}
.dialogue__txts {
  font: 700 2.6rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .dialogue__txts {
    font-size: 1.6rem;
  }
}
.dialogue__txts span {
  font: 700 5.6rem "Barlow Condensed", sans-serif;
}
@media screen and (max-width: 980px) {
  .dialogue__txts span {
    font-size: 3.2rem;
  }
}
.dialogue__txts--big {
  font-size: 4rem;
}
@media screen and (max-width: 980px) {
  .dialogue__txts--big {
    font-size: 1.6rem;
  }
}
.dialogue__absolute2-wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 980px) {
  .dialogue__absolute2-wrap {
    gap: 10px;
    top: -67px;
  }
}
.dialogue__absolute2-wrap .dialogue {
  top: 0;
}
@media screen and (max-width: 767px) {
  .dialogue__absolute2-wrap .dialogue {
    padding: 0 20px;
  }
}
.dialogue__absolute-left-wrap {
  position: absolute;
  left: 0;
  top: -120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .dialogue__absolute-left-wrap {
    top: -55px;
  }
}
@media screen and (max-width: 767px) {
  .dialogue__absolute-left-wrap .dialogue {
    padding: 0 20px;
  }
}
.dialogue--absolute {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -120px;
}
@media screen and (max-width: 767px) {
  .dialogue--absolute {
    top: -75px;
  }
}
.dialogue--s2 {
  margin: 0 auto 35px;
  background-color: #5ab2e6;
}
@media screen and (max-width: 767px) {
  .dialogue--s2 {
    margin: 0 auto 10px;
  }
}
.dialogue--s2::before {
  background: url("../public/img/icons/dialogue-pointer-s2.svg") center/contain no-repeat;
  left: 50%;
}
.dialogue--s2::after {
  background: url("../public/img/icons/dialogue-pointer-main-s2.svg") center/contain no-repeat;
  bottom: -28px;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .dialogue--s2::after {
    bottom: -16px;
  }
}
.dialogue--16 {
  background-color: #1671fa;
  padding: 19px 100px;
  top: -140px;
}
@media screen and (max-width: 980px) {
  .dialogue--16 {
    padding: 0 13px 2px;
    top: -69px;
  }
}
.dialogue--16 .dialogue__txts {
  font-size: 4rem;
}
@media screen and (max-width: 980px) {
  .dialogue--16 .dialogue__txts {
    font-size: 16px;
  }
}
.dialogue--16::before {
  background: url("../public/img/icons/dialogue-pointer-s2.svg") center/contain no-repeat;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .dialogue--16::before {
    width: 12px;
    height: 15px;
    bottom: -14px;
  }
}
.dialogue--16::after {
  background: url("../public/img/icons/dialogue-pointer-main-16.svg") center/contain no-repeat;
  bottom: -28px;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .dialogue--16::after {
    width: 12px;
    height: 15px;
    bottom: -13px;
  }
}
.dialogue--left {
  position: absolute;
  left: 0;
  top: -120px;
}
@media screen and (max-width: 767px) {
  .dialogue--left {
    top: -55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0 20px;
  }
}
.dialogue--transparent {
  background-color: transparent;
  border-radius: 5px;
  padding-inline: 55px;
  top: -110px;
}
@media screen and (max-width: 980px) {
  .dialogue--transparent {
    padding-inline: 15px;
    top: -85px;
  }
}

.footer {
  position: relative;
  padding: 100px 0 15px;
  background-color: #002397;
}
@media screen and (max-width: 980px) {
  .footer {
    padding: 65px 2% 25px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../public/img/field-footer.png") center/cover no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: lighten;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .footer::after {
    background: url("../public/img/field-footer-sp.png") center/cover no-repeat;
  }
}
@media screen and (max-width: 1500px) {
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    padding-inline: 56px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 980px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-inline: 0;
    gap: 0;
  }
}
.footer__logo {
  position: absolute;
  width: 240px;
  height: 264px;
  left: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .footer__logo {
    position: initial;
    display: block;
    left: initial;
    top: initial;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 980px) {
  .footer__logo {
    position: relative;
    width: 200px;
    height: 220px;
    margin-bottom: 90px;
    left: unset;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__tix {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
  padding: 40px 50px 40px 60px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #1671fa;
  border: 4px solid #fff;
  border-radius: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .footer__tix {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1300px) {
  .footer__tix {
    font-size: 2rem;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 980px) {
  .footer__tix {
    width: 100%;
    margin-bottom: 160px;
    padding: 30px;
    font-size: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__tix:hover {
  opacity: 0.8;
}
.footer__tix img {
  width: 330px;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .footer__tix img {
    width: 230px;
  }
}
@media screen and (max-width: 980px) {
  .footer__tix img {
    width: 190px;
  }
}
.footer__tix span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer__tix span::after {
  content: "";
  width: 34px;
  height: 24px;
  background: url("../public/img/icons/arrow.svg") center/contain no-repeat;
}
.footer__cpr {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.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;
  padding-right: 58px;
}
@media screen and (max-width: 767px) {
  .header__ctr {
    padding-right: 12px;
  }
}
.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__mv {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/1080;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .lp__mv {
    aspect-ratio: 375/667;
  }
}
.lp__all {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lp__sides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.lp__sides::before, .lp__sides::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 56px;
  background: url("../public/img/special-side.svg") top left/56px auto repeat-y fixed #1671fa;
  left: 0;
  top: 0;
  z-index: 99;
}
@media screen and (max-width: 980px) {
  .lp__sides::before, .lp__sides::after {
    width: 12px;
    background-size: 12px auto;
  }
}
.lp__sides::after {
  background: url("../public/img/special-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
  left: unset;
  right: 0;
}
@media screen and (max-width: 980px) {
  .lp__sides::after {
    background-size: 12px auto;
  }
}
.lp__sides--sched::before {
  background: url("../public/img/sched-side.svg") top left/56px auto no-repeat #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--sched::before {
    background-size: 12px auto;
    background-image: url("../public/img/sched-side-sp.svg");
  }
}
.lp__sides--sched::after {
  background: url("../public/img/sched-side-right.svg") top right/56px auto no-repeat #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--sched::after {
    background-size: 12px auto;
    background-image: url("../public/img/sched-side-right-sp.svg");
  }
}
.lp__sides--guest::before {
  background: url("../public/img/guest-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--guest::before {
    background-size: 12px auto;
  }
}
.lp__sides--guest::after {
  background: url("../public/img/guest-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--guest::after {
    background-size: 12px auto;
  }
}
.lp__sides--present::before {
  background: url("../public/img/present-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--present::before {
    background-size: 12px auto;
  }
}
.lp__sides--present::after {
  background: url("../public/img/present-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--present::after {
    background-size: 12px auto;
  }
}
.lp__sides--contents::before {
  background: url("../public/img/content-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--contents::before {
    background-size: 12px auto;
  }
}
.lp__sides--contents::after {
  background: url("../public/img/content-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--contents::after {
    background-size: 12px auto;
  }
}
.lp__sides--fanclub::before {
  background: url("../public/img/fanclub-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--fanclub::before {
    background-size: 12px auto;
  }
}
.lp__sides--fanclub::after {
  background: url("../public/img/fanclub-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--fanclub::after {
    background-size: 12px auto;
  }
}
.lp__sides--kids::before {
  background: url("../public/img/kids-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--kids::before {
    background-size: 12px auto;
  }
}
.lp__sides--kids::after {
  background: url("../public/img/kids-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--kids::after {
    background-size: 12px auto;
  }
}
.lp__sides--stage::before {
  background: url("../public/img/stage-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--stage::before {
    background-size: 12px auto;
  }
}
.lp__sides--stage::after {
  background: url("../public/img/stage-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--stage::after {
    background-size: 12px auto;
  }
}
.lp__sides--oth-event::before {
  background: url("../public/img/other-event-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--oth-event::before {
    background-size: 12px auto;
  }
}
.lp__sides--oth-event::after {
  background: url("../public/img/other-event-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--oth-event::after {
    background-size: 12px auto;
  }
}
.lp__sides--team-goods::before {
  background: url("../public/img/team-goods-side.svg") top left/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--team-goods::before {
    background-size: 12px auto;
  }
}
.lp__sides--team-goods::after {
  background: url("../public/img/team-goods-side-right.svg") top right/56px auto repeat-y fixed #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__sides--team-goods::after {
    background-size: 12px auto;
  }
}
.lp__sched {
  position: relative;
  padding: 75px 40px 275px;
  background-color: #2444b9;
}
@media screen and (max-width: 980px) {
  .lp__sched {
    padding: 50px 2% 100px;
  }
}
.lp__sched::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../public/img/stars.png") center/cover no-repeat;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .lp__sched::before {
    background: url("../public/img/stars-sp.png") center/cover repeat;
  }
}
.lp__sched::after {
  content: "";
  position: absolute;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1806/1175;
  background: url("../public/img/field-01.png") center/cover no-repeat;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 980px) {
  .lp__sched::after {
    width: 100%;
    aspect-ratio: 375/414;
    background: url("../public/img/field-sp.png") center/cover no-repeat;
  }
}
.lp__sched-rays {
  position: absolute;
  width: 100%;
  min-width: 1920px;
  min-height: 1218px;
  background: url("../public/img/rays.png") center/cover no-repeat;
  top: 350px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 980px) {
  .lp__sched-rays {
    min-width: 375px;
    min-height: 782px;
  }
}
.lp__sched-heading {
  position: relative;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .lp__sched-heading {
    margin: 0;
  }
}
.lp__sched-heading::before {
  content: "";
  position: absolute;
  width: 137px;
  height: 131px;
  background: url("../public/img/stars-left.svg") center/contain no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .lp__sched-heading::before {
    top: -70px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
@media screen and (max-width: 980px) {
  .lp__sched-heading::before {
    display: none;
  }
}
.lp__sched-heading::after {
  content: "";
  position: absolute;
  width: 142px;
  height: 104px;
  background: url("../public/img/stars-right.svg") center/contain no-repeat;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .lp__sched-heading::after {
    bottom: -20px;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 980px) {
  .lp__sched-heading::after {
    display: none;
  }
}
.lp__sched-heading-main {
  position: relative;
  margin: 0 auto;
}
.lp__sched-heading-main img {
  position: relative;
  width: 660px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__sched-heading-main img {
    max-width: 100%;
    width: 500px;
  }
}
.lp__sched-heading-main::before {
  content: "";
  position: absolute;
  width: 137px;
  height: 114px;
  background: url("../public/img/flag.svg") center/contain no-repeat;
  left: -105px;
  bottom: -15px;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .lp__sched-heading-main::before {
    display: none;
  }
}
.lp__sched-heading-main::after {
  content: "";
  position: absolute;
  width: 201px;
  height: 135px;
  background: url("../public/img/megaphone.svg") center/contain no-repeat;
  right: -160px;
  top: -70px;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .lp__sched-heading-main::after {
    display: none;
  }
}
.lp__sched-content {
  position: relative;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  z-index: 9;
}
@media screen and (max-width: 980px) {
  .lp__sched-content {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
.lp__sched-item {
  width: calc(50% - 17.5px);
}
@media screen and (max-width: 980px) {
  .lp__sched-item {
    width: 100%;
  }
}
.lp__sched-item-main {
  width: 100%;
  margin-bottom: 56px;
  padding: 40px 30px;
  background-color: #fff;
  border: 4px solid #002397;
  border-radius: 4px;
  -webkit-box-shadow: 8px 8px 0 #002397;
          box-shadow: 8px 8px 0 #002397;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-main {
    margin-bottom: 20px;
    padding: 16px;
    border: 2px solid #002397;
    -webkit-box-shadow: 5px 5px 0 #002397;
            box-shadow: 5px 5px 0 #002397;
  }
}
.lp__sched-item-g1 {
  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__sched-item-g1 img {
  aspect-ratio: 1;
}
@media screen and (max-width: 1400px) {
  .lp__sched-item-g1 img {
    width: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .lp__sched-item-g1 img {
    width: 120px;
  }
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g1 img {
    width: 104px;
  }
}
.lp__sched-item-g1 img.s2 {
  margin-right: -10px;
}
@media screen and (max-width: 1200px) {
  .lp__sched-item-g1 img.s2 {
    margin: 0;
  }
}
.lp__sched-item-t1 {
  font: 700 13.6rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  color: #2444b9;
}
@media screen and (max-width: 1400px) {
  .lp__sched-item-t1 {
    font-size: 11rem;
  }
}
@media screen and (max-width: 1200px) {
  .lp__sched-item-t1 {
    font-size: 8.2rem;
  }
}
.lp__sched-item-t2 {
  display: block;
  padding-top: 15px;
  font: 700 4.1rem "Barlow Condensed", sans-serif;
  line-height: 1em;
  letter-spacing: 0.08em;
  text-align: center;
  color: #2444b9;
}
@media screen and (max-width: 1400px) {
  .lp__sched-item-t2 {
    font-size: 3rem !important;
  }
}
@media screen and (max-width: 1200px) {
  .lp__sched-item-t2 {
    padding-top: 8px;
    font-size: 2.6rem !important;
  }
}
.lp__sched-item-t2.s2 {
  font-size: 4.2rem;
}
.lp__sched-item-t3 {
  font: 700 6.4rem "Barlow Condensed", sans-serif;
  line-height: 1em;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1671fa;
}
@media screen and (max-width: 1400px) {
  .lp__sched-item-t3 {
    font-size: 5rem !important;
  }
}
@media screen and (max-width: 1200px) {
  .lp__sched-item-t3 {
    font-size: 4rem !important;
  }
}
.lp__sched-item-t3.s2 {
  font-size: 6.1rem;
  color: #f7233b;
}
.lp__sched-item-g2 {
  width: 100%;
  margin-top: 13px;
  padding: 2px 12px 5px;
  font: 600 3.2rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  color: #f4ff2b;
  background-color: #002397;
  border-radius: 4px;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g2 {
    font-size: 1.6rem;
  }
}
.lp__sched-item-g2 span {
  font-size: 4rem;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g2 span {
    font-size: 2.1rem;
  }
}
.lp__sched-item-g3 {
  position: relative;
  width: 100%;
  margin-top: 52px;
  padding: 28px 20px 25px;
  border: 2px solid #ced9ff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g3 {
    margin-top: 20px;
    padding: 20px 12px 12px;
  }
}
.lp__sched-item-g3 img {
  width: auto;
  height: 56px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g3 img {
    height: 30px;
  }
}
.lp__sched-item-g3-t1 {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  font-size: 1.6rem;
  font-weight: 900;
  background-color: #fff;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .lp__sched-item-g3-t1 {
    font-size: 1.3rem;
  }
}
.lp__sched-txts {
  position: relative;
  margin-top: 200px;
  z-index: 9;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts {
    margin-top: 120px;
  }
}
.lp__sched-txts-t1 {
  display: block;
  max-width: 100%;
  width: 520px;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts-t1 {
    width: 300px;
    margin: 0 auto 30px;
  }
}
.lp__sched-txts-t2 {
  display: block;
  max-width: 100%;
  width: 1046px;
  height: auto;
  margin: 0 auto 90px;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts-t2 {
    margin: 0 auto 55px;
    width: 299px;
  }
}
.lp__sched-txts-t3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts-t3 {
    font-size: 1.6rem;
  }
}
.lp__sched-txts-t4 {
  margin-top: 88px;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts-t4 {
    margin-top: 50px;
  }
}
.lp__sched-txts-t4 p {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2em;
  color: #f4ff2b;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .lp__sched-txts-t4 p {
    font-size: 2rem;
  }
}
.lp__sched-txts-t4 span {
  position: absolute;
  width: 100%;
  -webkit-text-stroke: 4px #002397;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.lp__special {
  position: relative;
  padding: 0 40px 140px;
  background-color: #5ab2e6;
}
@media screen and (max-width: 980px) {
  .lp__special {
    padding: 0 2% 120px;
  }
}
.lp__special::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../public/img/special-bg.png") center/cover no-repeat;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.lp__special-heading-main {
  position: absolute;
  max-width: 1820px;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1800/620;
  left: 50%;
  top: -370px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__special-heading-main {
    width: 100%;
    top: -140px;
  }
}
.lp__special-heading {
  width: 100%;
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 980px) {
  .lp__special-heading {
    margin-bottom: 10px;
  }
}
.lp__special-heading-img {
  position: relative;
  max-width: 100%;
  width: 706px;
  height: auto;
  margin: -80px auto 0;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .lp__special-heading-img {
    width: 500px;
    margin: -20px auto 0;
  }
}
.lp__special-heading-img::before {
  content: "";
  position: absolute;
  width: 269px;
  height: 337px;
  background: url("../public/img/balloon.png") center/contain no-repeat;
  left: -230px;
  top: -60px;
}
@media screen and (max-width: 980px) {
  .lp__special-heading-img::before {
    display: none;
  }
}
.lp__special-heading-img::after {
  content: "";
  position: absolute;
  width: 224px;
  height: 276px;
  background: url("../public/img/balloon-2.png") center/contain no-repeat;
  right: -160px;
  top: 40px;
}
@media screen and (max-width: 980px) {
  .lp__special-heading-img::after {
    display: none;
  }
}
.lp__special-heading-img img {
  width: 100%;
  height: 100%;
}
.lp__special-content {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
@media screen and (max-width: 980px) {
  .lp__special-content {
    grid-template-columns: auto;
    gap: 70px;
  }
}
.lp__special-item {
  position: relative;
  padding: 30px 30px 75px;
  background-color: #fff;
  border: 4px solid #002397;
  border-radius: 4px;
  -webkit-box-shadow: 8px 8px 0 #002397;
          box-shadow: 8px 8px 0 #002397;
}
@media screen and (max-width: 980px) {
  .lp__special-item {
    padding: 12px 14px 50px;
    border-radius: 3px;
    border: 2px solid #002397;
    -webkit-box-shadow: 4px 4px 0 #002397;
            box-shadow: 4px 4px 0 #002397;
  }
}
.lp__special-item p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 980px) {
  .lp__special-item p {
    font-size: 1.4rem;
  }
}
.lp__special-item:nth-child(even) {
  margin-top: 120px;
}
@media screen and (max-width: 980px) {
  .lp__special-item:nth-child(even) {
    margin: 0;
  }
}
.lp__special-item-img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 4px;
}
@media screen and (max-width: 980px) {
  .lp__special-item-img {
    margin-bottom: 15px;
  }
}
.lp__special-item-title {
  position: relative;
  min-height: 120px;
  margin: 0 0 24px -54px;
  padding: 12px 20px 12px 48px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5em;
  -webkit-text-stroke: 4px #002397;
  background-color: #2444b9;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .lp__special-item-title {
    min-height: 80px;
    margin: 0 0 15px -30px;
    padding: 10px 12px 10px 30px;
    font-size: 2rem;
  }
}
.lp__special-item-title span {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 12px 20px 12px 48px;
  -webkit-text-stroke: 0;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__special-item-title span {
    padding: 10px 12px 10px 30px;
  }
}
.lp__special-item-btn {
  position: absolute;
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  background-color: #f4ff2b;
  border: 4px solid #2444b9;
  border-radius: 50%;
  bottom: -35px;
  right: 20px;
}
@media screen and (max-width: 980px) {
  .lp__special-item-btn {
    width: 75px;
    height: 75px;
    border: 2px solid #2444b9;
  }
}
.lp__special-item-btn::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 40px;
  background: url("../public/img/readmor.svg") center/contain no-repeat;
  top: -19px;
  right: -12px;
}
@media screen and (max-width: 980px) {
  .lp__special-item-btn::before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.lp__special-item-btn:hover img {
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(1.2);
          transform: translate(-50%, -50%) rotate(90deg) scale(1.2);
}
@media screen and (max-width: 980px) {
  .lp__special-item-btn:hover img {
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(1);
            transform: translate(-50%, -50%) rotate(90deg) scale(1);
  }
}
.lp__special-item-btn img {
  position: absolute;
  width: 44px;
  height: 34px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .lp__special-item-btn img {
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
            transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
  }
}
.lp__guest {
  position: relative;
  padding: 112px 40px 120px;
  background-color: #2444b9;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lp__guest {
    padding: 80px 2%;
  }
}
.lp__guest::before {
  content: "";
  position: absolute;
  width: 1613px;
  height: 925px;
  background: url("../public/img/confetti.png") center/contain no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 980px) {
  .lp__guest::before {
    width: 100%;
    height: 100%;
    background: url("../public/img/confetti-sp.png") center/contain repeat;
  }
}
.lp__guest-heading-main {
  position: absolute;
  max-width: 1808px;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1808/182;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 980px) {
  .lp__guest-heading-main {
    max-width: 351px;
    width: 100%;
    aspect-ratio: 351/144;
  }
}
.lp__guest-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-items: center;
  gap: 40px 32px;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__guest-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: 40px;
  }
}
@media screen and (min-width: 981px) {
  .lp__guest-content .span2 {
    grid-column: span 2;
  }
}
.lp__guest-item {
  position: relative;
  width: 100%;
  max-width: 584px;
  padding-right: 36px;
}
@media screen and (max-width: 980px) {
  .lp__guest-item {
    width: 100%;
    max-width: 321px;
    margin-inline: auto;
    padding: 0;
  }
}
.lp__guest-img {
  position: relative;
  border: 4px solid #002397;
  border-radius: 4px;
  -webkit-box-shadow: 8px 8px 0 #002397;
          box-shadow: 8px 8px 0 #002397;
  display: block;
}
@media screen and (max-width: 767px) {
  .lp__guest-img {
    border: 2px solid #002397;
    -webkit-box-shadow: 2px 2px 0 #002397;
            box-shadow: 2px 2px 0 #002397;
  }
}
.lp__guest-img-main {
  width: 100%;
}
.lp__guest-imgtxt {
  position: relative;
  display: block;
  max-width: 100%;
  width: 416px;
  height: auto;
  margin: -50px 0 0 auto;
  right: -30px;
}
@media screen and (max-width: 980px) {
  .lp__guest-imgtxt {
    max-width: 248px;
    margin: -25px 0 0 auto;
    right: -10px;
  }
}
.lp__present {
  position: relative;
  padding: 120px 40px;
  background-color: #5ab2e6;
}
@media screen and (max-width: 980px) {
  .lp__present {
    padding: 40px 2% 80px;
  }
}
.lp__present-heading-main {
  position: absolute;
  max-width: 1820px;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1800/307;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__present-heading-main {
    width: 100%;
  }
}
.lp__present-heading {
  position: relative;
  width: 765px;
  height: 120px;
  margin: 0 auto 70px;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .lp__present-heading {
    width: 320px;
    margin: 0 auto 20px;
  }
}
.lp__present-heading::before {
  content: "";
  position: absolute;
  width: 205px;
  height: 205px;
  background: url("../public/img/party.png") center/contain no-repeat;
  top: -75px;
  left: -100px;
}
@media screen and (max-width: 980px) {
  .lp__present-heading::before {
    width: 72px;
    height: 72px;
    top: -10px;
    left: -25px;
  }
}
.lp__present-heading::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  background: url("../public/img/present.png") center/contain no-repeat;
  right: -80px;
  bottom: -40px;
}
@media screen and (max-width: 980px) {
  .lp__present-heading::after {
    width: 48px;
    height: 48px;
    right: 5px;
    bottom: 10px;
  }
}
.lp__present-heading img {
  width: 100%;
  height: 100%;
}
.lp__present-content {
  position: relative;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .lp__present-content {
    grid-template-columns: auto;
    gap: 40px;
  }
}
.lp__present-img {
  width: 100%;
  height: auto;
}
.lp__present-txts {
  position: relative;
  margin-top: 50px;
}
.lp__present-t1 {
  display: block;
  max-width: 100%;
  width: 205px;
  height: auto;
  margin: 0 auto 24px;
}
@media screen and (max-width: 980px) {
  .lp__present-t1 {
    width: 100px;
  }
}
.lp__present-t2 {
  display: block;
  max-width: 100%;
  width: 623px;
  height: auto;
  margin: 0 auto 40px;
}
@media screen and (max-width: 980px) {
  .lp__present-t2 {
    width: 311px;
  }
}
.lp__present-t3 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp__present-t3 {
    font-size: 1.6rem;
  }
}
.lp__present-t3 span {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f4ff2b;
}
@media screen and (max-width: 980px) {
  .lp__present-t3 span {
    font-size: 2.4rem;
  }
}
.lp__present-t3 span.yellow {
  font-size: 2rem;
}
@media screen and (max-width: 980px) {
  .lp__present-t3 span.yellow {
    font-size: 1.6rem;
  }
}
.lp__contents {
  position: relative;
  padding: 120px 56px 160px;
  background: url("../public/img/contents-stars.svg") top center/100% auto repeat-y #2444b9;
}
@media screen and (max-width: 980px) {
  .lp__contents {
    padding: 90px 2% 70px;
    background-image: url("../public/img/contents-stars-sp.svg");
  }
}
.lp__contents--blue {
  background: #2444b9;
}
.lp__contents--pb60 {
  padding-bottom: 60px;
}
.lp__contents-link {
  display: block;
  width: 100%;
}
.lp__contents-heading {
  position: absolute;
  max-width: 1800px;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1800/300;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .lp__contents-heading {
    width: 100%;
  }
}
.lp__contents-heading--big {
  max-width: 1806px;
  aspect-ratio: initial;
}
@media screen and (max-width: 980px) {
  .lp__contents-heading--big {
    width: 94%;
  }
}
.lp__contents-heading--top25 {
  top: 25px;
}
@media screen and (max-width: 980px) {
  .lp__contents-heading--top25 {
    top: 0;
  }
}
.lp__contents-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 144px;
}
@media screen and (max-width: 980px) {
  .lp__contents-wrapper {
    gap: 64px;
  }
}
.lp__contents-contents {
  position: relative;
  max-width: calc(1600px + 8% + 8px);
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  z-index: 5;
}
@media screen and (max-width: 980px) {
  .lp__contents-contents {
    width: 100%;
    padding: 0 2%;
  }
}
.lp__contents-item {
  width: 100%;
  border: 4px solid #fff;
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__contents-item {
    margin-top: 55px;
    border-width: 2px;
  }
}
.lp__contents-item img {
  width: 100%;
  height: auto;
}
.lp__contents-item--no-border {
  border: none;
}
.lp__contents-item--mt140 {
  margin-top: 140px;
}
@media screen and (max-width: 980px) {
  .lp__contents-item--mt140 {
    margin-top: 50px;
  }
}
.lp__kids {
  position: relative;
  padding: 150px 40px 120px;
  background-color: #5ab2e6;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lp__kids {
    padding: 80px 2%;
  }
}
.lp__kids::after {
  content: "";
  position: absolute;
  width: 1760px;
  height: 907px;
  background: url("../public/img/snowflake.png") center/contain no-repeat;
  bottom: 65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__kids::after {
    width: 100%;
  }
}
.lp__kids-dsn {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.lp__kids-dsn::before {
  content: "";
  position: absolute;
  width: 23.3%;
  aspect-ratio: 447/341;
  background: url("../public/img/lantern-01.png") center/contain no-repeat;
  top: 0;
  left: 56px;
}
@media screen and (max-width: 980px) {
  .lp__kids-dsn::before {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-dsn::before {
    width: 117px;
    height: 90px;
  }
}
.lp__kids-dsn::after {
  content: "";
  position: absolute;
  width: 22.8%;
  aspect-ratio: 438/344;
  background: url("../public/img/lantern-02.png") center/contain no-repeat;
  top: 0;
  right: 56px;
}
@media screen and (max-width: 980px) {
  .lp__kids-dsn::after {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__kids-dsn::after {
    width: 114px;
    height: 90px;
  }
}
.lp__kids-heading-main {
  position: absolute;
  max-width: 1808px;
  width: calc(100% - 112px);
  height: auto;
  aspect-ratio: 1808/244;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .lp__kids-heading-main {
    width: 100%;
    max-width: 351px;
    aspect-ratio: 351/186;
  }
}
.lp__kids-title {
  position: relative;
  display: block;
  max-width: 100%;
  width: 660px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .lp__kids-title {
    width: 500px;
  }
}
.lp__kids-title img {
  width: 100%;
}
.lp__kids-content {
  position: relative;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .lp__kids-content {
    margin-top: 60px;
    grid-template-columns: auto;
  }
}
.lp__kids-item {
  position: relative;
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 980px) {
  .lp__kids-item {
    padding-top: 70px;
  }
}
.lp__kids-item:nth-child(even) {
  margin-top: 90px;
}
@media screen and (max-width: 980px) {
  .lp__kids-item:nth-child(even) {
    margin: 0;
  }
}
.lp__kids-item-main {
  position: relative;
  padding: 32px 24px 60px;
  background-color: #fff;
  border: 4px solid #1671fa;
  -webkit-box-shadow: 8px 8px 0 #1671fa;
          box-shadow: 8px 8px 0 #1671fa;
  border-radius: 4px;
  display: block;
}
@media screen and (max-width: 980px) {
  .lp__kids-item-main {
    padding: 12px 14px 65px;
    border: 2px solid #1671fa;
    -webkit-box-shadow: 4px 4px 0 #1671fa;
            box-shadow: 4px 4px 0 #1671fa;
    border-radius: 3px;
  }
}
.lp__kids-item-main p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.lp__kids-dialogue {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__kids-item-img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  border-radius: 4px;
}
@media screen and (max-width: 980px) {
  .lp__kids-item-img {
    margin-bottom: 15px;
  }
}
.lp__kids-item-title {
  width: calc(100% + 48px);
  margin: 0 0 32px -48px;
  padding: 22px 0 22px 60px;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  background-color: #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__kids-item-title {
    width: calc(100% + 25px);
    margin: 0 0 15px -25px;
    padding: 15px 0 15px 25px;
    font-size: 2.4rem;
  }
}
.lp__kids-item-btn {
  position: absolute;
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  background-color: #e483f7;
  border: 4px solid #1671fa;
  border-radius: 50%;
  bottom: -35px;
  right: 20px;
}
@media screen and (max-width: 980px) {
  .lp__kids-item-btn {
    width: 75px;
    height: 75px;
  }
}
.lp__kids-item-btn::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 54px;
  background: url("../public/img/readmor-s2.svg") center/contain no-repeat;
  top: -26px;
  right: -6px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 980px) {
  .lp__kids-item-btn::before {
    -webkit-transform: rotate(90deg) scale(0.8);
            transform: rotate(90deg) scale(0.8);
  }
}
.lp__kids-item-btn img {
  position: absolute;
  width: 34px;
  height: 44px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 980px) {
  .lp__kids-item-btn img {
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
            transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
  }
}
.lp__stage {
  position: relative;
  padding: 100px 0 135px;
  background-color: #5ab2e6;
}
@media screen and (max-width: 980px) {
  .lp__stage {
    padding: 80px 2%;
  }
}
.lp__stage-heading-main {
  position: absolute;
  max-width: 1808px;
  width: calc(100% - 100px);
  height: auto;
  aspect-ratio: 1808/211;
  top: 0;
  left: 49.7%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .lp__stage-heading-main {
    width: 100%;
    max-width: 351px;
    aspect-ratio: 351/188;
  }
}
.lp__stage-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .lp__stage-content {
    gap: 30px;
  }
}
.lp__stage-item {
  width: 1000px;
  max-width: 90%;
  margin-right: auto;
  margin-top: 120px;
  padding: 20px;
  border-radius: 4px;
  border: 5px solid #2444b9;
  -webkit-box-shadow: 8px 8px 0 #2444b9;
          box-shadow: 8px 8px 0 #2444b9;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 980px) {
  .lp__stage-item {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
    padding: 12px 14px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp__stage-item:nth-child(even) {
  margin: 120px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .lp__stage-item:nth-child(even) {
    margin-top: 60px;
  }
}
.lp__stage-txts {
  width: 50%;
  padding: 15px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .lp__stage-txts {
    width: 100%;
    padding: 15px 0;
  }
}
.lp__stage-txts p {
  margin-bottom: auto;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 980px) {
  .lp__stage-txts p {
    margin-bottom: 48px;
  }
}
.lp__stage-item-title {
  position: relative;
  min-height: 95px;
  margin-bottom: 32px;
  padding: 13px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp__stage-item-title {
    min-height: 65px;
    margin-bottom: 15px;
    padding: 15px 10px 15px 0;
    font-size: 20px;
  }
}
.lp__stage-item-title::before {
  content: "";
  position: absolute;
  width: calc(100% + 90px);
  height: 100%;
  background-color: #2444b9;
  border-radius: 4px;
  left: -90px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .lp__stage-item-title::before {
    width: calc(100% + 30px);
    left: -30px;
  }
}
.lp__stage-item-title.fs2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 980px) {
  .lp__stage-item-title.fs2 {
    font-size: 24px;
  }
}
.lp__stage-item-title.fs3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 980px) {
  .lp__stage-item-title.fs3 {
    font-size: 24px;
  }
}
.lp__stage-img {
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lp__stage-img {
    width: 100%;
  }
}
.lp__stage-img img {
  width: 100%;
  height: auto;
}
.lp__hospitality {
  position: relative;
  padding-top: 125px;
  background-color: #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__hospitality {
    padding-top: 90px;
  }
}
.lp__hospitality-heading-main {
  position: absolute;
  max-width: 1920px;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/217;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.lp__hospitality-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media screen and (max-width: 980px) {
  .lp__hospitality-content {
    grid-template-columns: auto;
    gap: 0;
  }
}
.lp__hospitality-item {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 636/400;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__hospitality-item {
    aspect-ratio: 375/240;
  }
}
.lp__hospitality-item--2 {
  background-color: #efefef;
}
@media screen and (max-width: 767px) {
  .lp__hospitality-item--2 .lp__hospitality-img {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .lp__hospitality-item--2 .lp__hospitality-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .lp__hospitality-item--3 {
    aspect-ratio: 375/280;
  }
}
@media screen and (max-width: 767px) {
  .lp__hospitality-item--3 .lp__hospitality-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.lp__hospitality-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
}
.lp__hospitality-img img {
  width: 100%;
  height: 100%;
}
.lp__hospitality-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(45%, transparent), color-stop(60%, rgba(22, 113, 250, 0.3803921569)), to(#1671fa));
  background: linear-gradient(180deg, transparent, transparent 45%, rgba(22, 113, 250, 0.3803921569) 60%, #1671fa 100%);
  top: 0;
  left: 0;
}
.lp__splide {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: visible;
  margin-top: 100px;
}
@media screen and (max-width: 980px) {
  .lp__splide {
    margin-top: 40px;
  }
}
.lp__splide--mt80 {
  margin-top: 80px;
}
@media screen and (max-width: 980px) {
  .lp__splide--mt80 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 980px) {
  .lp__splide--mt80 .splide__arrows {
    top: 210px !important;
  }
}
.lp__splide--mt80 .splide__track {
  padding-top: 43px;
}
@media screen and (max-width: 980px) {
  .lp__splide--mt80 .splide__track {
    padding-top: 35px;
  }
}
.lp__slide {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 24px;
  background-color: #fff;
  border: 4px solid #1671fa;
  border-radius: 10px;
}
@media screen and (max-width: 980px) {
  .lp__slide {
    padding: 12px 9px 20px;
    border-width: 3px;
    border-radius: 3px;
  }
}
.lp__slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9px;
  bottom: -9px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 10px;
  background-color: #1671fa;
}
@media screen and (max-width: 980px) {
  .lp__slide::before {
    right: -6px;
    bottom: -6px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 3px;
  }
}
.lp__slide--skyblue {
  border-color: #5ab2e6;
}
.lp__slide--skyblue::before {
  background-color: #5ab2e6;
}
.lp__slide--skyblue .lp__slide-date {
  background-color: #5ab2e6;
}
.lp__slide-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 12px;
}
.lp__slide-img--mb24 {
  margin-bottom: 24px;
}
.lp__slide-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;
  justify-items: center;
  gap: 8px;
  margin-block: auto;
}
.lp__slide-txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2em;
  color: #002397;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp__slide-txt {
    font-size: 14px;
  }
}
.lp__slide-txt .num {
  font: 700 2.8rem "Barlow Condensed", sans-serif;
  line-height: 1.1428571429em;
}
@media screen and (max-width: 980px) {
  .lp__slide-txt .num {
    font-size: 21px;
  }
}
.lp__slide-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2em;
  color: #1671fa;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp__slide-title {
    font-size: 18px;
  }
}
.lp__slide-title .small {
  font-size: 1.4rem;
}
@media screen and (max-width: 980px) {
  .lp__slide-title .small {
    font-size: 12px;
  }
}
.lp__slide-date {
  position: absolute;
  left: 0;
  bottom: 100%;
  font: 700 1.8rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #1671fa;
  padding: 7px 22px;
  border-radius: 2px;
}
@media screen and (max-width: 980px) {
  .lp__slide-date {
    font-size: 14px;
    padding: 6px 18px;
  }
}
.lp__slide-date .num {
  font-size: 2.8rem;
}
@media screen and (max-width: 980px) {
  .lp__slide-date .num {
    font-size: 22px;
  }
}
.lp__slide-date .note {
  font: 900 1.6rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .lp__slide-date .note {
    font-size: 14px;
  }
}
.lp__oth-event {
  padding-top: 43px !important;
}
@media screen and (min-width: 981px) {
  .lp__oth-event {
    width: 100%;
    max-width: calc(796px + 8%);
    margin-inline: auto !important;
    padding-inline: 4%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}
@media screen and (max-width: 980px) {
  .lp__oth-event {
    padding-top: 32px !important;
  }
}
.lp__oth-event-item {
  position: relative;
  background-color: #fff;
  border: 5px solid #1671fa;
  border-radius: 4px;
  padding: 10px 10px 30px;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-item {
    padding: 8px 6px 20px;
  }
}
.lp__oth-event-item--skyblue {
  border-color: #5ab2e6;
}
.lp__oth-event-item--skyblue .lp__oth-event-date {
  background-color: #5ab2e6;
}
.lp__oth-event-img {
  display: block;
  width: 100%;
  aspect-ratio: 338/224;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-img {
    margin-bottom: 12px;
  }
}
.lp__oth-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: 8px;
  margin-block: auto;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-content {
    gap: 4px;
  }
}
.lp__oth-event-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5em;
  color: #1671fa;
  text-align: center;
  margin-block: auto;
}
.lp__oth-event-txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #1671fa;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-txt {
    font-size: 14px;
  }
}
.lp__oth-event-date {
  position: absolute;
  left: -5px;
  bottom: 100%;
  font: 700 1.8rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #1671fa;
  padding: 7px 22px;
  border-radius: 2px;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-date {
    font-size: 14px;
    padding: 5px 18px;
  }
}
.lp__oth-event-date .num {
  font-size: 2.8rem;
}
@media screen and (max-width: 980px) {
  .lp__oth-event-date .num {
    font-size: 22px;
  }
}

.lp__splide .splide__track,
.js-oth-event-splide .splide__track {
  padding-bottom: 5px;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__track,
  .js-oth-event-splide .splide__track {
    padding-bottom: 3px;
    padding-inline: calc((100vw - 264px) / 2) !important;
  }
}
.lp__splide .splide__slide,
.js-oth-event-splide .splide__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lp__splide .splide__slide::after,
.js-oth-event-splide .splide__slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 68, 185, 0.56);
  pointer-events: none;
}
.lp__splide .splide__slide .lp__slide-date::after,
.js-oth-event-splide .splide__slide .lp__slide-date::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 68, 185, 0.56);
  pointer-events: none;
}
.lp__splide .splide__slide.is-darkening::after,
.js-oth-event-splide .splide__slide.is-darkening::after {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 1;
}
.lp__splide .splide__slide.is-darkening .lp__slide-date::after,
.js-oth-event-splide .splide__slide.is-darkening .lp__slide-date::after {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 1;
}
.lp__splide .splide__slide.is-clear::after,
.js-oth-event-splide .splide__slide.is-clear::after {
  opacity: 0;
}
.lp__splide .splide__slide.is-clear .lp__slide-date::after,
.lp__splide .splide__slide.is-clear .lp__oth-event-date::after,
.js-oth-event-splide .splide__slide.is-clear .lp__slide-date::after,
.js-oth-event-splide .splide__slide.is-clear .lp__oth-event-date::after {
  opacity: 0;
}
.lp__splide .splide__arrows,
.js-oth-event-splide .splide__arrows {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 190px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1528px;
  padding-inline: 40px;
  height: 96px;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__arrows,
  .js-oth-event-splide .splide__arrows {
    top: 170px;
    padding-inline: 16px;
    height: 32px;
  }
}
.lp__splide .splide__arrow svg,
.js-oth-event-splide .splide__arrow svg {
  display: none;
}
.lp__splide .splide__arrow,
.js-oth-event-splide .splide__arrow {
  pointer-events: auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #1671fa;
  background-color: #f4ff2b;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__arrow,
  .js-oth-event-splide .splide__arrow {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }
}
.lp__splide .splide__arrow::after,
.js-oth-event-splide .splide__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 44px;
  height: 38px;
  background: url("../public/img/icons/arrow-bordered.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__arrow::after,
  .js-oth-event-splide .splide__arrow::after {
    width: 17px;
    height: 15px;
  }
}
.lp__splide .splide__arrow:focus,
.js-oth-event-splide .splide__arrow:focus {
  outline: none !important;
}
.lp__splide .splide__arrow.is-focus,
.js-oth-event-splide .splide__arrow.is-focus {
  outline: none !important;
}
.lp__splide .splide__arrow--prev,
.js-oth-event-splide .splide__arrow--prev {
  left: 40px;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__arrow--prev,
  .js-oth-event-splide .splide__arrow--prev {
    left: 16px;
  }
}
.lp__splide .splide__arrow--prev::after,
.js-oth-event-splide .splide__arrow--prev::after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.lp__splide .splide__arrow--next,
.js-oth-event-splide .splide__arrow--next {
  right: 40px;
}
@media screen and (max-width: 980px) {
  .lp__splide .splide__arrow--next,
  .js-oth-event-splide .splide__arrow--next {
    right: 16px;
  }
}

.js-oth-event-splide.splide {
  visibility: visible;
}
.js-oth-event-splide .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .js-oth-event-splide .splide__slide .lp__oth-event-date::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 68, 185, 0.56);
    pointer-events: none;
  }
}
.js-oth-event-splide .splide__slide::after {
  opacity: 0;
}
@media screen and (max-width: 980px) {
  .js-oth-event-splide .splide__slide::after {
    opacity: 1;
  }
}

@-webkit-keyframes bounce {
  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 {
  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;
  }
}
[data-aos=bounce] {
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  opacity: 1;
  will-change: transform;
}

[data-aos=bounce].aos-animate {
  -webkit-animation: bounce 1s both;
          animation: bounce 1s both;
}

@-webkit-keyframes wobble {
  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 {
  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);
  }
}
[data-aos=wobble] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  will-change: transform;
}

[data-aos=wobble].aos-animate {
  -webkit-animation: wobble 0.8s both;
          animation: wobble 0.8s both;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pct {
  display: block;
}
@media screen and (max-width: 980px) {
  .pct {
    display: none;
  }
}

.spt {
  display: none;
}
@media screen and (max-width: 980px) {
  .spt {
    display: block;
  }
}

.container {
  width: 100%;
  padding: 0 4%;
  margin: 0 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%;
  }
}
