* {
  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: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  color: #0e1b3c;
  scroll-behavior: smooth;
}

@-webkit-keyframes scroll-hint {
  from {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  to {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
}

@keyframes scroll-hint {
  from {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  to {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
}
.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  height: 70px;
  padding: 0 40px;
  background-color: #0e1b3c;
  border: 1px solid #0e1b3c;
  border-radius: 35px;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button:hover {
  background-color: #fff;
  color: #0e1b3c;
}
.c-button:hover .c-button__icon {
  background-color: #0e1b3c;
}
.c-button:hover .c-button__icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.c-button--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-button--lblue {
  background-color: #00c8ff;
  border-color: #00c8ff;
}
.c-button--lblue:hover {
  color: #00c8ff;
}
.c-button--lblue:hover .c-button__icon {
  background-color: #00c8ff;
}
.c-button__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .c-button__text {
    font-size: 2.16rem;
  }
}
.c-button__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 8px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button__icon img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.c-button-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-button-link:hover .c-button-link__icon {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 1px #0e1b3c;
          box-shadow: inset 0 0 0 1px #0e1b3c;
}
.c-button-link:hover .c-button-link__icon img {
  -webkit-filter: none;
          filter: none;
}
.c-button-link__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #0e1b3c;
}
@media screen and (min-width: 450px) {
  .c-button-link__text {
    font-size: 1.68rem;
  }
}
.c-button-link__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #0e1b3c;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-button-link__icon img {
  width: 9px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.c-heading__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-heading__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  right: -4%;
  width: 260px;
  height: 60px;
  padding-block: 10px;
  background-color: #1e2571;
  -webkit-transform: translate(-50%, -50%) rotate(-2.8deg) skewX(-15deg);
          transform: translate(-50%, -50%) rotate(-2.8deg) skewX(-15deg);
}
@media screen and (min-width: 450px) {
  .c-heading__bg {
    width: 290px;
    height: 70px;
  }
}
.c-heading__en {
  position: relative;
  z-index: 1;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .c-heading__en {
    font-size: 5.8rem;
  }
}
.c-heading__en-first {
  color: #00c8ff;
}
.c-heading__sub {
  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: 6px;
  margin-top: 15px;
}
.c-heading__sub--white .c-heading__jp {
  color: #fff;
}
.c-heading__sub--white img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.c-heading__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 450px) {
  .c-heading__icon {
    width: 19px;
    height: 19px;
  }
}
.c-heading__jp {
  color: #1e2571;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .c-heading__jp {
    font-size: 1.68rem;
  }
}

.c-scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 136px;
  height: 80px;
  padding: 10px 14px 9px;
  background-color: rgba(79, 79, 79, 0.8);
  border-radius: 8px;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
  .c-scroll-hint {
    display: none;
  }
}
.c-scroll-hint.is-hidden {
  opacity: 0;
}
.c-scroll-hint__inner {
  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;
  gap: 3px;
  width: 108px;
  height: 61px;
}
.c-scroll-hint__icon {
  width: 39px;
  height: 40px;
  -webkit-animation: scroll-hint 1.2s ease-in-out infinite alternate;
          animation: scroll-hint 1.2s ease-in-out infinite alternate;
}
.c-scroll-hint__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.lp-header {
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: #fff;
  width: 100%;
  min-width: 375px;
  padding: 10px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .lp-header {
    max-width: 450px;
  }
}
@media screen and (min-width: 450px) {
  .lp-header {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .lp-header {
    display: none;
  }
}
.lp-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.lp-header__logo {
  width: 40px;
  height: 40px;
  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-header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 24px;
  cursor: pointer;
}
.lp-header__hamburger span.line {
  width: 100%;
  height: 2px;
  background-color: #1e2571;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.lp-header__hamburger.is-open span.line:nth-child(1) {
  -webkit-transform: translateY(3px) rotate(30deg);
          transform: translateY(3px) rotate(30deg);
}
.lp-header__hamburger.is-open span.line:nth-child(2) {
  -webkit-transform: translateY(-3px) rotate(-30deg);
          transform: translateY(-3px) rotate(-30deg);
}
.lp-header__hamburger span.label {
  font-family: "Oswald", sans-serif;
  color: #1e2571;
  font-size: 1.2rem;
}
.lp-header__menu {
  position: absolute;
  top: 60px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 24px 32px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.lp-header__menu.is-open {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.lp-header__nav {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.lp-header__nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-block: 16px;
  border-bottom: 1px solid #d9d9d9;
  -webkit-transition: border-bottom-color 0.3s ease;
  transition: border-bottom-color 0.3s ease;
}
.lp-header__nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00c8ff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.lp-header__nav-item:hover {
  border-bottom-color: transparent;
}
.lp-header__nav-item:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.lp-header__nav-item:hover .lp-header__nav-arrow {
  background-color: #00c8ff;
}
.lp-header__nav-item:hover .lp-header__nav-arrow img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.lp-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.lp-header__nav-jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.lp-header__nav-en {
  font-family: "Oswald", sans-serif;
  color: #00c8ff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
}
.lp-header__nav-arrow {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-left: auto;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #00c8ff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lp-header__btn {
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lp-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lp-footer__section {
  width: 100%;
  min-width: 375px;
  padding: 16px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .lp-footer__section {
    max-width: 450px;
  }
}
.lp-footer__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  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-footer__sns {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp-footer__sns-item {
  width: 50px;
  aspect-ratio: 1/1;
  padding: 10px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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 (min-width: 450px) {
  .lp-footer__sns-item {
    width: 60px;
  }
}
.lp-footer__sns-item:hover {
  opacity: 0.8;
}
.lp-footer__sns-icon {
  width: 30px;
  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-footer__copyright {
  margin-top: 24px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.lp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp__side {
  display: none;
}
@media screen and (min-width: 450px) {
  .lp__side {
    position: sticky;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100vh;
    overflow: hidden;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 37, 113, 0.3);
  }
}
.lp__side-left-content {
  display: none;
}
@media screen and (min-width: 450px) {
  .lp__side-left-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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    width: 350px;
    height: 100%;
  }
}
.lp__side-left-logo {
  display: none;
}
@media screen and (min-width: 768px) {
  .lp__side-left-logo {
    position: absolute;
    top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15vw;
  }
}
@media screen and (min-width: 1200px) {
  .lp__side-left-logo {
    position: static;
    top: unset;
    width: 100%;
    aspect-ratio: 1;
  }
}
.lp__side-left-ticket {
  display: none;
}
@media screen and (min-width: 1200px) {
  .lp__side-left-ticket {
    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;
    gap: 16px;
    width: 248px;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-left-ticket-badge {
    width: 240px;
    height: 88px;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-left-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: 100%;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-left-cta-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-left-cta-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32px;
    height: 32px;
  }
}
.lp__side-nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .lp__side-nav {
    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;
    width: 340px;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-item:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-jp {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-en {
    color: #00c8ff;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 2;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-icon {
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}
@media screen and (min-width: 450px) {
  .lp__side-nav-icon img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.lp__main {
  width: 100%;
  min-width: 375px;
  padding: 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 60px;
}
@media screen and (min-width: 450px) {
  .lp__main {
    max-width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .lp__main {
    margin-top: 0;
  }
}
.lp__mv {
  height: auto;
}
.lp__section {
  scroll-margin-top: 60px;
  padding-block: 70px;
}
.lp__section-inner {
  width: 100%;
  min-width: 375px;
  padding: 0 4%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .lp__section-inner {
    max-width: 450px;
  }
}
.lp__section-inner--nopad {
  padding: 0;
}
.lp__section-inner--pad8 {
  padding: 0 8%;
}
.lp__splide-arrows {
  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: 24px;
  margin-top: 16px;
}
.lp__splide-arrows--spaced {
  margin-bottom: 40px;
}
.lp__splide-pagelabel {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .lp__splide-pagelabel {
    font-size: 1.44rem;
    letter-spacing: 0.2em;
  }
}
.lp__splide-pagelabel--white {
  color: #fff;
}
.lp__splide-arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #00c8ff;
  border-radius: 50%;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (min-width: 450px) {
  .lp__splide-arrow {
    width: 48px;
    height: 48px;
  }
}
.lp__splide-arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url("/files/user/static/asset/2627-guide/public/img/icons/arrow-lblue.svg") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 450px) {
  .lp__splide-arrow::before {
    width: 13px;
    height: 13px;
  }
}
.lp__splide-arrow:hover {
  opacity: 0.8;
}
.lp__splide-arrow--prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lp__splide-arrow--filled {
  background-color: #6ba5f2;
  border: none;
}
.lp__splide-arrow--filled::before {
  background-image: url("/files/user/static/asset/2627-guide/public/img/icons/arrow-dblue.svg");
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.lp__reason {
  position: relative;
}
@media screen and (min-width: 450px) {
  .lp__reason {
    margin-top: -30px;
    padding-top: 90px;
  }
}
.lp__reason-deco {
  position: absolute;
  z-index: 1;
  top: -80px;
  left: 50%;
  width: 95%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 450px) {
  .lp__reason-deco {
    top: -90px;
  }
}
.lp__reason-splide {
  position: relative;
  margin-top: 32px;
}
.lp__reason-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #fff;
  border: 2px solid #00c8ff;
}
.lp__reason-card-media {
  width: 100%;
  aspect-ratio: 16/9;
  padding: 10px 9px 0;
}
.lp__reason-card-body {
  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;
  gap: 8px;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 16px;
}
@media screen and (min-width: 450px) {
  .lp__reason-card-body {
    padding-inline: 19px;
  }
}
.lp__reason-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 100%;
}
.lp__reason-card-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #00c8ff;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__reason-card-num {
    font-size: 2.4rem;
  }
}
.lp__reason-card-title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .lp__reason-card-title {
    font-size: 2.16rem;
  }
}
.lp__reason-card-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__reason-card-text {
    font-size: 1.68rem;
  }
}
.lp__ticket {
  position: relative;
  z-index: 1;
  background-color: #1868d4;
}
.lp__ticket-bg-deco {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.6;
}
.lp__ticket-label-wrap {
  position: relative;
  gap: 40px;
  width: 100%;
  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;
  width: 100%;
  min-width: 375px;
  padding: 40px 0 25px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .lp__ticket-label-wrap {
    max-width: 450px;
  }
}
.lp__ticket-label {
  position: relative;
  margin-top: -30px;
  font-size: 1.8rem;
}
.lp__ticket-label::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 28px;
  height: 24px;
  background: url("/files/user/static/asset/2627-guide/public/img/lp/ticket-label-deco.svg") no-repeat center/contain;
}
.lp__ticket-label-deco {
  width: 70px;
}
.lp__ticket-splide {
  margin-top: -65px;
}
.lp__ticket-card {
  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;
  gap: 16px;
  width: 312px;
  padding-block: 30px 24px;
  background-color: #fff;
}
@media screen and (min-width: 450px) {
  .lp__ticket-card {
    padding-block: 40px 30px;
  }
}
.lp__ticket-card-step {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 98px;
  height: 28px;
  font-family: "Oswald", sans-serif;
  color: #f8eb00;
  font-size: 1.6rem;
}
@media screen and (min-width: 450px) {
  .lp__ticket-card-step {
    gap: 6px;
  }
}
.lp__ticket-card-step::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 50%;
  right: -4%;
  width: 100%;
  height: 10px;
  padding-block: 10px;
  background-color: #1e2571;
  -webkit-transform: translate(-50%, -50%) rotate(-0.1deg) skewX(-15deg);
          transform: translate(-50%, -50%) rotate(-0.1deg) skewX(-15deg);
}
@media screen and (min-width: 450px) {
  .lp__ticket-card-step::before {
    height: 18px;
  }
}
.lp__ticket-card-step span.number {
  padding-bottom: 4px;
  font-size: 2.1rem;
}
@media screen and (min-width: 450px) {
  .lp__ticket-card-step span.number {
    padding-bottom: 7px;
    font-size: 2.8rem;
  }
}
.lp__ticket-card-media {
  position: relative;
  width: 291px;
  height: 332px;
  margin-top: 8px;
}
@media screen and (min-width: 450px) {
  .lp__ticket-card-media {
    margin-top: 16px;
  }
}
.lp__ticket-card-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: #eee;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp__ticket-card-phone {
  position: relative;
  z-index: 1;
  width: 180px;
  margin-inline: auto;
}
.lp__ticket-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__ticket-card-title {
    font-size: 2.16rem;
  }
}
.lp__seat {
  position: relative;
  z-index: 1;
  background-color: #eee;
}
.lp__seat-bg-deco {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__seat-splide {
  position: relative;
  margin-top: 32px;
}
.lp__seat-card {
  --seat-accent: #6d3df2;
  position: relative;
  width: 311px;
  padding: 20px 10px 0;
  background-color: #fff;
  border: 2px solid #00c8ff;
}
.lp__seat-card--violet {
  --seat-accent: #6d3df2;
}
.lp__seat-card--pink {
  --seat-accent: #ff69d2;
}
.lp__seat-card--green {
  --seat-accent: #90bb48;
}
.lp__seat-card--purple-be {
  --seat-accent: #be3afa;
}
.lp__seat-card--green-6b {
  --seat-accent: #6bb65b;
}
.lp__seat-card-tag {
  position: relative;
  z-index: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 270px;
  padding: 4px 16px;
  margin-inline: auto;
  background-color: #fff;
  border: 2px solid var(--seat-accent);
  border-radius: 23px;
  color: var(--seat-accent);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__seat-card-tag {
    font-size: 2.16rem;
  }
}
.lp__seat-card-tag::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 14px solid var(--seat-accent);
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}
.lp__seat-card-tag::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 12px solid #fff;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.lp__seat-card-media {
  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: -20px auto 0;
}
.lp__seat-card-photo {
  width: 100%;
  aspect-ratio: 16/9;
}
.lp__seat-card-map {
  position: relative;
  width: 100%;
  height: 193px;
}
.lp__seat-card-row {
  padding-block: 4px;
  border-bottom: 1px solid #d9d9d9;
}
.lp__seat-card-row--last {
  padding-bottom: 16px;
  border-bottom: none;
}
.lp__seat-card-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__seat-card-label {
    font-size: 1.92rem;
  }
}
.lp__seat-card-value {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__seat-card-value {
    font-size: 1.68rem;
  }
}
.lp__seat-card-text {
  font-size: 1.4rem;
  line-height: 1.7;
}
.lp__sched {
  position: relative;
  z-index: 1;
}
.lp__sched-inner {
  padding-left: 3%;
}
.lp__sched-bg-deco {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__sched-blocks {
  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-top: 32px;
}
.lp__sched-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.lp__sched-block:not(:last-of-type) {
  padding-bottom: 24px;
}
@media screen and (min-width: 450px) {
  .lp__sched-block:not(:last-of-type) {
    padding-bottom: 38.4px;
  }
}
.lp__sched-block-timeline {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
}
.lp__sched-block-timeline::after {
  content: "";
  position: absolute;
  top: 59px;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: calc(100% - 35px);
  border-left: 2px dashed #b0b0b0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__sched-block-timeline--end::after {
  content: none;
}
.lp__sched-block-marker {
  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;
  width: 14px;
  height: 51px;
  overflow: hidden;
}
.lp__sched-block-marker img {
  display: block;
  width: 51px;
  height: 14px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.lp__sched-block-marker--end img {
  width: 14px;
  height: 51px;
  -webkit-transform: none;
          transform: none;
}
.lp__sched-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp__sched-badge {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  height: 34px;
}
.lp__sched-badge::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 96%;
  height: 100%;
  padding-block: 5px;
  background-color: #1e2571;
  -webkit-transform: translate(-50%, -50%) skewX(-15deg);
          transform: translate(-50%, -50%) skewX(-15deg);
}
.lp__sched-badge-label {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__sched-badge-label {
    font-size: 1.44rem;
  }
}
.lp__sched-badge-time {
  margin-bottom: 6px;
  margin-right: 2px;
  color: #f8eb00;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.lp__sched-badge-suffix {
  color: #f8eb00;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .lp__sched-badge-suffix {
    font-size: 1.44rem;
  }
}
.lp__sched-badge-suffix--lg {
  font-size: 1.8rem;
}
@media screen and (min-width: 450px) {
  .lp__sched-badge-suffix--lg {
    font-size: 2.16rem;
  }
}
.lp__sched-block-title {
  margin-top: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #0e1b3c;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .lp__sched-block-title {
    font-size: 2.16rem;
  }
}
.lp__sched-block-media {
  width: 100%;
  aspect-ratio: 16/9;
}
.lp__sched-block-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__sched-block-text {
    font-size: 1.68rem;
  }
}
.lp__sched-mascot {
  position: relative;
  width: 311px;
  height: 179px;
  margin-inline: auto;
}
@media screen and (min-width: 450px) {
  .lp__sched-mascot {
    width: 373px;
    height: 212px;
  }
}
.lp__sched-mascot-lightning {
  position: absolute;
  left: 0;
  top: 23px;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 450px) {
  .lp__sched-mascot-lightning {
    top: 27px;
    width: 38px;
    height: 38px;
  }
}
.lp__sched-mascot-lightning img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.lp__sched-mascot-info {
  position: absolute;
  left: 17px;
  top: 58px;
  width: 138px;
}
@media screen and (min-width: 450px) {
  .lp__sched-mascot-info {
    left: 20px;
    top: 70px;
    width: 165px;
  }
}
.lp__sched-mascot-label {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.lp__sched-mascot-badge {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 138px;
  margin-top: 15px;
  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-mascot-badge-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  right: 2px;
  width: 100%;
  height: 60px;
  padding-block: 10px;
  background-color: #1e2571;
  -webkit-transform: translate(-50%, -50%) rotate(-2.8deg) skewX(-15deg);
          transform: translate(-50%, -50%) rotate(-2.8deg) skewX(-15deg);
}
.lp__sched-mascot-kana {
  width: 133px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.lp__sched-mascot-name {
  width: 133px;
  color: #00c8ff;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.lp__sched-mascot-name-rest {
  color: #fff;
}
.lp__sched-mascot-media {
  position: absolute;
  left: 173px;
  top: 0;
  width: 100px;
  height: 177px;
}
@media screen and (min-width: 450px) {
  .lp__sched-mascot-media {
    left: 208px;
    width: 120px;
    height: 212px;
  }
}
.lp__sched-mascot-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
}
.lp__sched-mascot-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
.lp__sched-goods {
  width: 100%;
  height: 171px;
}
.lp__sched-player-wrap {
  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: 8px;
  padding-top: 24px;
}
.lp__sched-player-callout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  margin-bottom: -45px;
}
.lp__sched-player-callout-figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 57px;
  height: 101px;
  margin-top: -5px;
}
.lp__sched-player-callout-speech {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 10px 15px;
  color: #00c8ff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__sched-player-callout-speech {
    font-size: 1.68rem;
  }
}
.lp__sched-player-callout-speech::before, .lp__sched-player-callout-speech::after {
  content: "";
  position: absolute;
  background-repeat: none;
  background-size: contain;
}
.lp__sched-player-callout-speech::before {
  bottom: 0;
  left: 0;
  width: 8px;
  height: 10px;
  background-image: url("/files/user/static/asset/2627-guide/public/img/lp/sched-spark-sm.svg");
}
.lp__sched-player-callout-speech::after {
  top: 0;
  right: 0;
  width: 20px;
  height: 21px;
  background-image: url("/files/user/static/asset/2627-guide/public/img/lp/sched-spark-lg.svg");
}
.lp__sched-player-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}
.lp__sched-splash {
  position: relative;
}
.lp__sched-splash-text {
  position: absolute;
  width: 120px;
  left: calc(50% - 60px);
  top: 37%;
  color: #f8eb00;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
.lp__sched-splash-exclaim {
  position: absolute;
  display: block;
  width: 26px;
  bottom: -8px;
  right: -17px;
  color: #f8eb00;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  -webkit-transform: rotate(12.04deg);
          transform: rotate(12.04deg);
}
.lp__sched-game {
  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;
}
.lp__sched-game-title {
  padding-bottom: 5px;
  border-bottom: 1px solid #0e1b3c;
  color: #0e1b3c;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__sched-game-title {
    font-size: 2.16rem;
  }
}
.lp__sched-game-photo {
  width: 100%;
  height: 175px;
}
.lp__sched-quarter {
  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;
}
.lp__sched-quarter-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 14px;
  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-quarter-box {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30%;
  height: 65px;
  background-color: #00c8ff;
}
@media screen and (min-width: 450px) {
  .lp__sched-quarter-box {
    height: 78px;
  }
}
.lp__sched-quarter-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 20px;
  height: 14px;
  background: url("/files/user/static/asset/2627-guide/public/img/lp/sched-quarter-arrow-blue.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp__sched-quarter-box--white {
  background-color: #fff;
  border: 1px solid #00c8ff;
}
.lp__sched-quarter-box--white::after {
  background: url("/files/user/static/asset/2627-guide/public/img/lp/sched-quarter-arrow-white.svg") no-repeat center/contain;
}
.lp__sched-quarter-box--no-arrow::after {
  content: none;
}
.lp__sched-quarter-label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.23em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .lp__sched-quarter-label {
    font-size: 1.68rem;
  }
}
.lp__sched-quarter-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.lp__sched-quarter-num {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 450px) {
  .lp__sched-quarter-num {
    font-size: 3.6rem;
  }
}
.lp__sched-quarter-unit {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 450px) {
  .lp__sched-quarter-unit {
    font-size: 1.68rem;
  }
}
.lp__sched-halftime {
  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;
}
.lp__sched-halftime-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 76px;
  padding: 7px;
  background-color: #fff;
  border: 2px solid #1e2571;
}
.lp__sched-halftime-banner-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 30px;
}
.lp__sched-halftime-banner-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #1e2571;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  word-break: keep-all;
}
.lp__sched-halftime-num {
  font-size: 2.3rem;
  letter-spacing: 0.07em;
}
.lp__sched-halftime-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lp__sched-halftime-lightning {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.lp__sched-halftime-lightning--left {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.lp__sched-halftime-event-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #00c8ff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.lp__sched-halftime-event-big {
  font-size: 1.5rem;
}
.lp__sched-halftime-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
.lp__sched-halftime-card {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  gap: 8px;
}
.lp__sched-halftime-card-media {
  width: 100%;
  aspect-ratio: 1/1;
}
.lp__sched-halftime-card-label {
  padding: 2px 8px;
  background-color: #00c8ff;
  border-radius: 24px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 450px) {
  .lp__sched-halftime-card-label {
    font-size: 1.44rem;
  }
}
.lp__sched-end-photos {
  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;
}
.lp__sched-end-photo {
  width: 100%;
  height: 175px;
}
.lp__sched-end-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__sched-end-text {
    font-size: 1.68rem;
  }
}
.lp__player {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.lp__player-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp__player-splide {
  position: relative;
  margin-top: 32px;
}
.lp__player-card {
  position: relative;
  background-color: #eee;
}
.lp__player-card-media {
  width: 100%;
  aspect-ratio: 1/1;
}
.lp__player-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
}
.lp__player-placeholder {
  position: absolute;
  top: 136px;
  left: 50%;
  width: 160px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #717171;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.lp__qna {
  background-color: #d9d9d9;
}
.lp__qna-list {
  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-top: 32px;
}
.lp__qna-item {
  padding: 8px 16px;
  background-color: #fff;
  border: 2px solid #1e2571;
  border-radius: 8px;
}
@media screen and (min-width: 450px) {
  .lp__qna-item {
    padding: 10px 20px;
  }
}
.lp__qna-item.is-open .lp__qna-body {
  margin-top: 8px;
  padding-top: 8px;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 450px) {
  .lp__qna-item.is-open .lp__qna-body {
    margin-top: 10px;
    padding-top: 10px;
  }
}
.lp__qna-item.is-open .lp__qna-toggle::after {
  display: none;
}
.lp__qna-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.lp__qna-q-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.lp__qna-icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.056em;
}
@media screen and (min-width: 450px) {
  .lp__qna-icon {
    font-size: 2.16rem;
  }
}
.lp__qna-icon--q {
  background-color: #1e2571;
  color: #fff;
}
.lp__qna-icon--a {
  border: 2px solid #1e2571;
  color: #1e2571;
}
.lp__qna-q-text {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .lp__qna-q-text {
    font-size: 1.92rem;
  }
}
.lp__qna-toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.lp__qna-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid #1e2571;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp__qna-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid #1e2571;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.lp__qna-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  gap: 8px;
  height: 0;
  border-top: 1px solid #d9d9d9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: height 0.3s ease, opacity 0.25s ease;
  transition: height 0.3s ease, opacity 0.25s ease;
}
.lp__qna-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.lp__qna-a-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__qna-a-text {
    font-size: 1.68rem;
  }
}
.lp__access {
  padding-block: 70px 80px;
}
.lp__access-venue {
  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-top: 32px;
}
.lp__access-venue-name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .lp__access-venue-name {
    font-size: 1.92rem;
  }
}
.lp__access-venue-address {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .lp__access-venue-address {
    font-size: 1.68rem;
  }
}
.lp__access-map {
  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-top: 8px;
}
.lp__access-map-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (min-width: 450px) {
  .lp__access-map-img {
    height: 240px;
  }
}
.lp__access-map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.lp__access-map-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #1e2571;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 450px) {
  .lp__access-map-label {
    font-size: 1.68rem;
  }
}
.lp__access-map-pin {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 25px;
}
@media screen and (min-width: 450px) {
  .lp__access-map-pin {
    width: 24px;
    height: 30px;
  }
}
.lp__access-map-url {
  color: #1e2571;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: underline;
}
@media screen and (min-width: 450px) {
  .lp__access-map-url {
    font-size: 1.44rem;
  }
}
.lp__access-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.lp__access-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp__access-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.lp__access-item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 450px) {
  .lp__access-item-icon {
    width: 36px;
    height: 36px;
  }
}
.lp__access-item-title {
  color: #1e2571;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .lp__access-item-title {
    font-size: 1.92rem;
  }
}
.lp__access-item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .lp__access-item-text {
    font-size: 1.68rem;
  }
}
.lp__access-item-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: none;
}
@media screen and (min-width: 450px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 450px) {
  .sp {
    display: none;
  }
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #eee;
}

.bg-blue {
  background-color: #3e87e9;
}

.bg-lblue {
  background-color: #00c8ff;
}

.bg-dblue {
  background-color: #1e2571;
}

.bg-dblue2 {
  background-color: #181e5a;
}

.bg-yellow {
  background-color: #f8eb00;
}

.bg-purple {
  background-color: #8a4694;
}

.text-white {
  color: #fff;
}

.text-lblue {
  color: #00c8ff;
}

.text-blue {
  color: #3e87e9;
}

.text-dblue {
  color: #1e2571;
}
