@charset "UTF-8";
* {
  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: #000;
  scroll-behavior: smooth;
  min-width: 976px;
  overflow-x: hidden;
}
@media screen and (max-width: 641px) {
  html {
    min-width: 100%;
  }
}

body {
  /* stylelint-disable */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.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;
}

.title {
  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;
  color: #0041c0;
  text-align: center;
}
@media screen and (max-width: 1170px) {
  .title {
    position: relative;
    z-index: 1;
  }
}
.title--deco {
  position: relative;
  margin-bottom: 55px;
}
@media screen and (max-width: 641px) {
  .title--deco {
    margin-bottom: 30px;
  }
}
.title--deco::after {
  content: "";
  width: 140px;
  height: 5px;
  background-color: #0041c0;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 641px) {
  .title--deco::after {
    width: 100px;
    height: 3px;
  }
}
.title__text-jp-wrap {
  margin-top: 26px;
}
@media screen and (max-width: 641px) {
  .title__text-jp-wrap {
    margin-top: 12px;
  }
}
.title__text-jp {
  display: block;
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 641px) {
  .title__text-jp {
    font-size: 22px;
  }
}
.title__text-en-wrap {
  margin-top: 4px;
}
.title__text-en {
  margin-top: 4px;
  font-size: 9.4rem;
  font-family: "Jost", sans-serif;
  line-height: 0.8888888889em;
}
@media screen and (max-width: 641px) {
  .title__text-en {
    font-size: 40px;
  }
}
.title--green {
  color: #00a479;
}
.title--white {
  color: #fff;
}
.title__subtitle {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4230769231em;
}
@media screen and (max-width: 641px) {
  .title__subtitle {
    font-size: 18px;
  }
}
.title__subtitle--white {
  color: #fff;
}
.title__icon {
  max-width: 100px;
  max-height: 100px;
}
.title__jp, .title__en {
  font-weight: 700;
}
.title__jp {
  font-size: 2.4rem;
}
@media screen and (max-width: 641px) {
  .title__jp {
    font-size: 18px;
  }
}
.title__en {
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
}
@media screen and (max-width: 641px) {
  .title__en {
    font-size: 24px;
  }
}

.button {
  border: 5px solid #fff;
  padding-block: 22.5px;
  padding-right: 4.5%;
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  background: #0041c0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 641px) {
  .button {
    margin-inline: auto;
    padding-block: 14.5px;
    padding-right: 14.5%;
    width: 100%;
    max-width: 280px;
    font-size: 18px;
  }
}
.button::after {
  content: "";
  position: absolute;
  width: 14.4%;
  aspect-ratio: 72/16;
  margin: auto;
  display: block;
  top: 50%;
  right: 4.4%;
  background: url("../public/img/icons/arrow.png") no-repeat 0 0/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: inherit;
  transition: inherit;
}
@media screen and (max-width: 641px) {
  .button::after {
    right: 6.7%;
    width: 42px;
    height: 10px;
    background-image: url("../public/img/icons/arrow-sp.png");
  }
}
.button--orange {
  background: #ff8400;
  padding-right: 0;
}
.button--orange::after {
  content: none;
}
.button:hover {
  opacity: 0.8 !important;
}
.button:hover::after {
  -webkit-transform: translate(-15%, -50%);
          transform: translate(-15%, -50%);
}

.button-group {
  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: 20px;
}
@media screen and (max-width: 641px) {
  .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.button-group__item {
  width: 100%;
  max-width: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.heading {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 8px;
  color: #0041c0;
  font-size: 2.6rem;
}
.heading__caption {
  font-size: 1.3rem;
  font-weight: 400;
}
.heading__title {
  font-size: inherit;
}
.heading--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.heading--no-border {
  border: none;
}

.lp-footer {
  width: 100%;
}
.lp-footer__upper {
  padding: 50px 0 37px;
  background-color: #000;
}
@media screen and (max-width: 641px) {
  .lp-footer__upper {
    padding: 10.667vw 0 9.333vw;
  }
}
@media screen and (max-width: 641px) {
  .lp-footer__upper-inner {
    padding: 0 4.267vw;
  }
}
.lp-footer__sns {
  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: 63px;
}
@media screen and (max-width: 641px) {
  .lp-footer__sns {
    gap: 51px;
  }
}
.lp-footer__sns li a {
  display: block;
  -webkit-transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  height: 32px;
}
.lp-footer__sns li a:hover {
  opacity: 0.8;
}
.lp-footer__company {
  margin-top: 36px;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5555555556em;
  font-weight: 700;
}
@media screen and (max-width: 641px) {
  .lp-footer__company {
    margin-top: 38px;
    font-size: 15px;
    line-height: 1.6em;
  }
}
.lp-footer__company-en {
  margin-top: 4px;
  font-size: 1.4rem;
  font-family: "Barlow", sans-serif;
}
.lp-footer__logo a {
  display: block;
  -webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.lp-footer__lower {
  padding: 15px 0 19px;
  background-color: #eee;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower {
    padding-block: 21px 24px;
  }
}
.lp-footer__lower-inner {
  max-width: 1280px;
  padding: 0 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  color: #777;
  position: relative;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-inner {
    padding: 0 4.267vw;
    font-size: 10px;
    line-height: 1.8181818182em;
  }
}
.lp-footer__lower-sns, .lp-footer__lower-sns-list, .lp-footer__lower-links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1em;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-sns, .lp-footer__lower-sns-list, .lp-footer__lower-links-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-sns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-sns-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.lp-footer__lower-locale a, .lp-footer__lower-links-item a, .lp-footer__lower-sns__item a {
  color: #666;
  -webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.lp-footer__lower-locale a:hover, .lp-footer__lower-links-item a:hover, .lp-footer__lower-sns__item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.lp-footer__lower-links {
  margin-top: 9px;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-links {
    margin-top: 5px;
  }
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-links-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0;
  }
}
.lp-footer__lower-locale {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 20px;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-locale {
    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;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 10px;
  }
}
.lp-footer__lower-locale::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%2015.347A7.333%207.333%200%201%201%208%20.68a7.333%207.333%200%200%201%200%2014.667ZM8%201.68a6.333%206.333%200%201%200%206.334%206.334A6.34%206.34%200%200%200%208%201.68Z%22%20fill%3D%22%23666%22%2F%3E%3Cpath%20d%3D%22M8%2015.347c-1.9%200-3.333-3.153-3.333-7.333S6.107.68%208%20.68c1.894%200%203.334%203.154%203.334%207.334S9.907%2015.347%208%2015.347ZM8%201.68c-1.106%200-2.34%202.6-2.34%206.334%200%203.733%201.234%206.333%202.34%206.333%201.107%200%202.34-2.6%202.34-6.333C10.34%204.28%209.107%201.68%208%201.68Z%22%20fill%3D%22%23666%22%2F%3E%3Cpath%20d%3D%22M14.48%205.333H1.533v1H14.48v-1ZM14.481%209.666H1.508v1H14.48v-1Z%22%20fill%3D%22%23666%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-locale::before {
    display: inline-block;
    left: auto;
    right: 53.333vw;
    width: 16px;
    height: 16px;
  }
}
.lp-footer__lower-copyright {
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 641px) {
  .lp-footer__lower-copyright {
    margin-top: 10px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.lp-footer__lower-sns-ttl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  pointer-events: none;
}
.header__logo-wrap {
  padding: 10px 26px 30px;
  background: #fed800;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: auto;
}
@media screen and (max-width: 641px) {
  .header__logo-wrap {
    padding: 9px 12px;
  }
}
.header__logo {
  display: block;
  width: 130px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 641px) {
  .header__logo {
    width: 56px;
  }
}
.header__logo:hover .header__logo-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__logo-img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger-text {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
}
.header .header__hamburger {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 20;
  width: 90px;
  height: 90px;
  background: #0041c0;
  pointer-events: auto;
}
@media screen and (max-width: 641px) {
  .header .header__hamburger {
    width: 65px;
    height: 65px;
    gap: 7px;
  }
}
.header .header__hamburger::after {
  content: "MENU";
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 641px) {
  .header .header__hamburger::after {
    font-size: 12px;
    letter-spacing: normal;
    line-height: 1em;
  }
}
.header .header__hamburger.active::after {
  content: "CLOSE";
}
.header .header__hamburger .header__hamburger__line {
  position: relative;
  width: 40px;
  height: 35px;
}
@media screen and (max-width: 641px) {
  .header .header__hamburger .header__hamburger__line {
    width: 28px;
    height: 23px;
  }
}
.header .header__hamburger .header__hamburger__line span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.header .header__hamburger .header__hamburger__line span::before,
.header .header__hamburger .header__hamburger__line span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}
.header .header__hamburger .header__hamburger__line span::before {
  top: -12px;
}
@media screen and (max-width: 641px) {
  .header .header__hamburger .header__hamburger__line span::before {
    top: -9px;
  }
}
.header .header__hamburger .header__hamburger__line span::after {
  top: 12px;
}
@media screen and (max-width: 641px) {
  .header .header__hamburger .header__hamburger__line span::after {
    top: 9px;
  }
}
.header .header__hamburger.active .header__hamburger__line span {
  background-color: transparent;
}
.header .header__hamburger.active .header__hamburger__line span::before,
.header .header__hamburger.active .header__hamburger__line span::after {
  top: 0;
  background-color: #fff;
}
.header .header__hamburger.active .header__hamburger__line span::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.header .header__hamburger.active .header__hamburger__line span::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fed800;
  -webkit-transition: visibility, opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: visibility, opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.header__nav.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.header__nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 66px;
  margin: 0 auto;
  padding: 0 152px 0 69px;
  max-width: 1200px;
}
@media screen and (max-width: 1199px) {
  .header__nav-container {
    padding: 0 7.92% 0 3.59%;
    max-width: 100%;
  }
}
@media screen and (max-width: 641px) {
  .header__nav-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 0;
  }
}
.header__nav-logo {
  display: block;
  width: 333px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1199px) {
  .header__nav-logo {
    width: 27.75vw;
    min-width: 250px;
  }
}
@media screen and (max-width: 641px) {
  .header__nav-logo {
    width: 55.73%;
    min-width: auto;
    padding-left: 8%;
  }
}
.header__nav-lists {
  margin-top: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 59px;
}
@media screen and (max-width: 1199px) {
  .header__nav-lists {
    margin-top: 15.42%;
    gap: 4.92%;
  }
}
@media screen and (max-width: 641px) {
  .header__nav-lists {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0 18.67% 0 13.6%;
  }
}
@media screen and (max-width: 374px) {
  .header__nav-lists {
    padding: 0 10.92% 0 7.96%;
  }
}
.header__nav-list {
  border-left: 7px solid #0041c0;
  padding-left: 18px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 641px) {
  .header__nav-list:first-child {
    padding-bottom: 14px;
  }
}
.header__nav-item:not(:last-child) {
  margin-bottom: 45px;
}
@media screen and (max-width: 641px) {
  .header__nav-item:not(:last-child) {
    margin-bottom: 14px;
  }
}
.header__nav-link {
  font-weight: 700;
}
.header__nav-link span {
  display: block;
  line-height: 1em;
  white-space: nowrap;
}
.header__nav-item-en {
  color: #fff;
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  padding-bottom: 8px;
}
@media screen and (max-width: 641px) {
  .header__nav-item-en {
    font-size: 11px;
    padding-bottom: 5px;
  }
}
.header__nav-item-jp {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #0041c0;
}
@media screen and (max-width: 641px) {
  .header__nav-item-jp {
    font-size: 20px;
  }
}

.decor__item {
  position: absolute;
  overflow: hidden;
}
.decor__item > div {
  width: 100%;
  height: 100%;
}

.cta {
  position: fixed;
  top: 565px;
  right: 14px;
  width: 369px;
  font-size: 2.4rem;
  -webkit-transition: 0.3s ease, 1s ease right;
  transition: 0.3s ease, 1s ease right;
  letter-spacing: 0.11em;
  height: 115px;
  z-index: 9;
}
@media screen and (max-width: 1080px) {
  .cta {
    width: 290px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 641px) {
  .cta {
    right: 26px;
    bottom: 0;
    margin-right: -26px;
    font-size: 17px;
    width: 230px;
    top: 540px;
  }
}
.cta::after {
  content: none;
}
.cta::before {
  content: "";
  position: absolute;
  width: 23.8709677419%;
  aspect-ratio: 74/46;
  margin: auto;
  display: block;
  top: 0;
  left: -28px;
  background: url("../public/img/cta/ticket.png") no-repeat 0 0/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.cta:hover {
  opacity: 1 !important;
  -webkit-transform: scale(1.04) !important;
          transform: scale(1.04) !important;
}
.cta:hover::before {
  -webkit-transform: rotate(-10deg) translateY(-20px);
          transform: rotate(-10deg) translateY(-20px);
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
}
@-webkit-keyframes slide-in {
  from {
    right: -35vw;
  }
  to {
    right: 14px;
  }
}
@keyframes slide-in {
  from {
    right: -35vw;
  }
  to {
    right: 14px;
  }
}
.cta.bottom {
  top: calc(100vh - 130px);
}
@media screen and (max-width: 641px) {
  .cta.bottom {
    top: calc(100vh - 78px);
  }
}
.cta.hide {
  right: -100%;
}
.cta__picture {
  display: block;
}
.cta__img {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-mv__container {
  padding: 14px;
}
@media screen and (max-width: 641px) {
  .lp-mv__container {
    padding-top: 0;
  }
}
.lp-mv__scroll {
  position: absolute;
  right: 0;
  height: 100%;
  width: 90px;
}
@media screen and (min-width: 642px) {
  .lp-mv__scroll {
    bottom: 0;
    background: #fed800;
  }
}
@media screen and (max-width: 641px) {
  .lp-mv__scroll {
    right: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 258px;
    top: 0;
  }
}
.lp-mv__scroll-container {
  padding-bottom: 10px;
  width: 100%;
  background: #fff;
  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;
}
@media screen and (max-width: 641px) {
  .lp-mv__scroll-container {
    padding: 0 10px 12px;
    height: 100%;
  }
}
@media screen and (max-width: 330px) {
  .lp-mv__scroll-container {
    padding-inline: 5px;
  }
}
.lp-mv__scroll-line-wrap {
  margin-top: 194px;
  height: 34px;
  width: 1px;
  overflow: hidden;
}
@media screen and (max-width: 641px) {
  .lp-mv__scroll-line-wrap {
    margin-block: auto 0;
  }
}
.lp-mv__scroll-line {
  height: 0;
  width: 100%;
  background: #ff8400;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}
@-webkit-keyframes scroll {
  35% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes scroll {
  35% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.lp-mv__scroll-text {
  margin-top: 6px;
  color: #ff8400;
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 641px) {
  .lp-mv__scroll-text {
    margin-top: 8px;
    font-size: 12px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.lp-mv__tagline {
  font-size: 4.6rem;
  color: #00a479;
  font-weight: 700;
  text-align: center;
  display: block;
}
@media screen and (max-width: 641px) {
  .lp-mv__tagline {
    margin-top: 10px;
    font-size: 26px;
    line-height: 1.2692307692em;
  }
}
.lp-mv__info {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
.lp-mv__info > *:first-child {
  width: 19.65%;
}
.lp-mv__info > *:nth-child(2) {
  width: 56.48%;
}
.lp-mv__info > *:nth-child(3) {
  width: 23.89%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info > * {
    width: 100% !important;
  }
}
@media screen and (max-width: 641px) {
  .lp-mv__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp-mv__info::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  display: block;
  width: 90px;
  height: 136px;
  background: #f2a1a6;
}
@media screen and (max-width: 641px) {
  .lp-mv__info::after {
    content: none;
  }
}
.lp-mv__info-decor {
  position: absolute;
}
.lp-mv__info-decor--tr {
  top: 0;
  right: 0;
}
.lp-mv__info-decor--tr .lp-mv__info-decor-item {
  width: 16px;
  height: 108px;
  right: 0;
}
.lp-mv__info-decor--br {
  right: -14px;
  bottom: 14px;
}
.lp-mv__info-decor--br .lp-mv__info-decor-item {
  width: 60px;
  height: 28px;
  right: 0;
}
.lp-mv__info-image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-wrap {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
.lp-mv__info-image-wrap::before {
  content: "";
  display: block;
  position: absolute;
  background: no-repeat 0 0/cover;
}
.lp-mv__info-image-wrap--left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-wrap--left {
    position: absolute;
    top: 96%;
    z-index: 1;
    left: -14px;
  }
}
.lp-mv__info-image-wrap--left .lp-mv__info-image {
  width: 100%;
  max-width: 233px;
  height: 218px;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-wrap--left .lp-mv__info-image {
    width: 132px;
    height: 124px;
  }
}
.lp-mv__info-image-wrap--right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-wrap--right {
    margin-top: -12px;
    margin-left: auto;
    width: 228px !important;
    padding-right: 16px;
  }
}
.lp-mv__info-image-wrap--right .lp-mv__info-image {
  width: 212px;
  height: 170px;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-wrap--right .lp-mv__info-image {
    width: 100%;
    height: 120px;
    background-color: #fed800;
  }
}
.lp-mv__info-image-left-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  max-width: 233px;
  top: -20px;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-left-decor {
    top: 0;
  }
}
.lp-mv__info-image-left-decor-item:first-child {
  width: 20.6896551724%;
  height: 186px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-left-decor-item:first-child {
    width: 28px;
    height: 124px;
    left: 132px;
    top: 0;
  }
}
.lp-mv__info-image-left-decor-item:nth-child(2) {
  width: 25.8620689655%;
  height: 60px;
  top: 0;
  left: 20.6896551724%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-left-decor-item:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 0;
    left: 160px;
  }
}
.lp-mv__info-image-left-decor-item:nth-child(3) {
  width: 12.9310344828%;
  height: 90px;
  top: 60px;
  left: 46.5517241379%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-left-decor-item:nth-child(3) {
    width: 24px;
    height: 74px;
    top: 50px;
    left: 210px;
  }
}
.lp-mv__info-image-left-decor-item:nth-child(4) {
  width: 8.6206896552%;
  height: 20px;
  top: 60px;
  left: 63.7931034483%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-left-decor-item:nth-child(4) {
    width: 132px;
    height: 50px;
    left: 0;
    top: 100%;
  }
}
.lp-mv__info-image-left-decor-item:nth-child(5) {
  width: 12.9310344828%;
  height: 232px;
  top: 80px;
  right: 0;
}
.lp-mv__info-image-right-decor {
  position: absolute;
  width: 100px;
  height: 100%;
  right: 180px;
  top: 0;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-right-decor {
    top: -8px;
    right: 100%;
    width: 120px;
    height: 84px;
  }
}
.lp-mv__info-image-right-decor-item:first-child {
  width: 41.1764705882%;
  height: 72px;
  bottom: 0;
  left: 0;
}
.lp-mv__info-image-right-decor-item:nth-child(2) {
  width: 19.6078431373%;
  height: 20px;
  bottom: 102px;
  left: 21.568627451%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-right-decor-item:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
  }
}
.lp-mv__info-image-right-decor-item:nth-child(3) {
  width: 29.4117647059%;
  height: 170px;
  top: 0;
  left: 41.1764705882%;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-right-decor-item:nth-child(3) {
    width: 20px;
    height: 20px;
    top: unset;
    bottom: 0;
    right: 64px;
  }
}
.lp-mv__info-image-right-decor-item:nth-child(3) > div {
  background: #fed800;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-right-decor-item:nth-child(3) > div {
    background: #ff8400;
  }
}
.lp-mv__info-image-right-decor-item:nth-child(4) {
  width: 58.8235294118%;
  height: 60px;
  bottom: 42px;
  right: 0;
}
@media screen and (max-width: 641px) {
  .lp-mv__info-image-right-decor-item:nth-child(4) {
    width: 44px;
    height: 44px;
    right: 0;
    bottom: 20px;
  }
}
.lp-mv__info-texts {
  padding: 46px 0 66px 54px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #00a479;
  line-height: 1.875em;
  margin-inline: auto;
  max-width: 720px;
}
@media screen and (max-width: 1280px) {
  .lp-mv__info-texts {
    margin-inline: auto 0;
    padding-left: 9px;
  }
}
@media screen and (max-width: 1080px) {
  .lp-mv__info-texts {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 641px) {
  .lp-mv__info-texts {
    padding: 16px 11px 46px 16px;
    max-width: 400px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.875em;
  }
}

.lp-enjoy {
  padding-top: 125px;
  background: #f2a1a6;
}
@media screen and (max-width: 641px) {
  .lp-enjoy {
    padding-top: 194px;
  }
}
.lp-enjoy::before, .lp-enjoy::after {
  content: "";
  position: absolute;
  display: block;
  background: no-repeat 0 0/cover;
  z-index: 2;
}
.lp-enjoy::before {
  width: 18.08%;
  max-width: 217px;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("../public/img/enjoy/border-left2.png");
}
@media screen and (max-width: 641px) {
  .lp-enjoy::before {
    top: 172px;
    width: 21.87%;
    max-width: 82px;
    aspect-ratio: 82/73;
    background-image: url("../public/img/enjoy/border-left-sp.png");
    height: auto;
  }
}
.lp-enjoy::after {
  width: 15%;
  max-width: 180px;
  top: 175px;
  right: 0;
  height: calc(100% - 175px);
  background-image: url("../public/img/enjoy/border-right2.png");
}
@media screen and (max-width: 641px) {
  .lp-enjoy::after {
    top: 160px;
    width: 17.33%;
    max-width: 65px;
    aspect-ratio: 65/230;
    background-image: url("../public/img/enjoy/border-right-sp.png");
    height: auto;
  }
}
.lp-enjoy__box-decor-tl {
  top: 181px;
  left: 89px;
}
.lp-enjoy__box-decor-ml {
  top: 685px;
  left: 24px;
}
.lp-enjoy__box-decor-tr {
  top: 200px;
  right: 59px;
  z-index: 2;
}
.lp-enjoy__box-decor-mr {
  top: 740px;
  right: 30px;
  z-index: 1;
}
.lp-enjoy__container {
  margin: 0 auto;
  max-width: 755px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 641px) {
  .lp-enjoy__container {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
.lp-enjoy__title-icon {
  height: 59px;
}
@media screen and (max-width: 641px) {
  .lp-enjoy__title-icon {
    height: 52px;
  }
}
.lp-enjoy__subtitle {
  margin-top: 34px;
}
@media screen and (max-width: 641px) {
  .lp-enjoy__subtitle {
    margin-top: 12px;
  }
}
.lp-enjoy__list {
  /* padding-block: 70px; */
  padding-block: 70px 187px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 35px;
}
@media screen and (max-width: 641px) {
  .lp-enjoy__list {
    /* padding-top: 35px; */
    padding-block: 35px 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.lp-enjoy__item {
  position: relative;
  color: #fff;
  width: calc(50% - 18px);
}
@media screen and (max-width: 641px) {
  .lp-enjoy__item {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.lp-enjoy__item-title {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: "Jost", sans-serif;
  font-size: 3rem;
  z-index: 1;
  text-shadow: 0 0 10px rgba(20, 20, 20, 0.3);
}
.lp-enjoy__item-image {
  overflow: hidden;
  border-radius: 145px;
}
@media screen and (max-width: 641px) {
  .lp-enjoy__item-image {
    width: 120%;
    max-width: 402px;
  }
}
.lp-enjoy__item-info {
  margin-top: 28px;
  margin-inline: auto;
  max-width: 324px;
}
.lp-enjoy__item-par {
  font-size: 1.8rem;
  line-height: 1.4444444444em;
  font-weight: 500;
}
.lp-enjoy__item-note {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  font-weight: 400;
}
.lp-enjoy__note {
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  bottom: 20px;
  color: #fff;
}

.lp-watch {
  padding-block: 162px 80px;
}
@media screen and (max-width: 641px) {
  .lp-watch {
    padding-block: 58px 44px;
  }
}
.lp-watch::before, .lp-watch::after {
  content: "";
  top: 343px;
  position: absolute;
  display: block;
  background: no-repeat 0 0/cover;
}
@media screen and (max-width: 641px) {
  .lp-watch::before, .lp-watch::after {
    content: none;
  }
}
.lp-watch::before {
  left: 0;
  width: 209px;
  height: 3054px;
  background-image: url("../public/img/watch/border-left.png");
}
.lp-watch::after {
  right: 0;
  width: 180px;
  height: 2517px;
  background-image: url("../public/img/watch/border-right.png");
}
.lp-watch__decor {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 641px) {
  .lp-watch__decor {
    width: 170px;
    top: -20px;
  }
}
.lp-watch__decor--tl {
  left: 0;
}
.lp-watch__decor--tr {
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.lp-watch__box-decor-tl {
  top: 325px;
  left: 80px;
}
.lp-watch__box-decor-tr {
  top: 349px;
  right: 59px;
  z-index: 1;
}
.lp-watch__box-decor-ml {
  top: 795px;
  left: 21px;
}
.lp-watch__box-decor-ml2 {
  bottom: 532px;
  left: 21px;
}
.lp-watch__box-decor-bl {
  bottom: 110px;
  left: 110px;
}
.lp-watch__box-decor-bl2 {
  bottom: -12px;
  left: 30px;
}
.lp-watch__container {
  margin: 0 auto;
  max-width: 880px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 641px) {
  .lp-watch__container {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
@media screen and (max-width: 641px) {
  .lp-watch__container {
    padding-inline: 2.5%;
  }
}
.lp-watch__title-text-en {
  font-size: 8.6rem;
}
@media screen and (max-width: 641px) {
  .lp-watch__title-text-en {
    font-size: 35px;
  }
}
.lp-watch__title-icon {
  height: 50px;
}
@media screen and (max-width: 641px) {
  .lp-watch__title-icon {
    height: 44px;
  }
}
.lp-watch__subtitle {
  margin-top: 30px;
}
@media screen and (max-width: 641px) {
  .lp-watch__subtitle {
    margin-top: 22px;
  }
}
.lp-watch__perf {
  margin-top: 95px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #0041c0), color-stop(75%, #0041c0), color-stop(75%, transparent));
  background: linear-gradient(to bottom, transparent 40%, #0041c0 40%, #0041c0 75%, transparent 75%);
  z-index: 1;
}
@media screen and (max-width: 641px) {
  .lp-watch__perf {
    margin-top: 30px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(28%, transparent), color-stop(28%, #0041c0), color-stop(80%, #0041c0), color-stop(80%, transparent));
    background: linear-gradient(to bottom, transparent 28%, #0041c0 28%, #0041c0 80%, transparent 80%);
  }
}
.lp-watch__perf-title {
  font-size: 3.6rem;
  text-align: center;
  color: #0041c0;
}
@media screen and (max-width: 641px) {
  .lp-watch__perf-title {
    font-size: 24px;
  }
}
.lp-watch__perf-video {
  margin: 16px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 640px;
  height: 460px;
}
@media screen and (max-width: 641px) {
  .lp-watch__perf-video {
    width: 100%;
    max-width: 275px;
    aspect-ratio: 720/1280;
    height: auto;
  }
}
.lp-watch__perf-video div {
  background: #f49d1a;
}

.lp-watch-banner-wrap {
  background: #0041c0;
  padding-top: 60px;
}
@media screen and (max-width: 641px) {
  .lp-watch-banner-wrap {
    padding-top: 25px;
  }
}
.lp-watch-banner-head {
  font-family: "Jost", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 641px) {
  .lp-watch-banner-head {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.lp-watch-banner__tagline-wrap {
  padding-block: 22px;
  text-align: center;
  background: #0041c0;
}
@media screen and (max-width: 641px) {
  .lp-watch-banner__tagline-wrap {
    padding-block: 18px;
  }
}
.lp-watch-banner__tagline {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
@media screen and (max-width: 641px) {
  .lp-watch-banner__tagline {
    font-size: 24px;
  }
}
.lp-watch-banner__image-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lp-players {
  padding-block: 140px 280px;
}
@media screen and (max-width: 641px) {
  .lp-players {
    padding-block: 80px;
  }
}
.lp-players__wrapper {
  margin: 0 auto;
  max-width: 860px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 641px) {
  .lp-players__wrapper {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
.lp-players__container {
  padding: 100px 227px 82px 65px;
  background: #fed800;
  height: 2624px;
}
@media screen and (max-width: 641px) {
  .lp-players__container {
    padding: 50px 15px 110px;
    height: auto;
  }
}
.lp-players__container::before {
  content: "";
  position: absolute;
  right: 97%;
  display: block;
  height: 280px;
  background: #0041c0;
  z-index: 1;
  width: 50vw;
}
@media screen and (max-width: 641px) {
  .lp-players__container::before {
    width: 30vw;
  }
}
.lp-players__container::before {
  top: -162px;
}
@media screen and (max-width: 641px) {
  .lp-players__container::before {
    top: -80px;
    width: 40px;
    height: 152px;
  }
}
.lp-players__container::after {
  content: '';
  width: 143px;
  height: 285px;
  background: url('../public/img/players/border-bottom-left.png') center / cover no-repeat;
  position: absolute;
  top: 100%;
  right: 103%;
}
@media screen and (max-width: 641px) {
  .lp-players__container::after {
    display: none;
  }
}
.lp-players__title-en {
  position: absolute;
  top: -26px;
  right: -82px;
  font-size: 13.7rem;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #0041c0;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: block;
}
@media screen and (max-width: 641px) {
  .lp-players__title-en {
    font-size: 48px;
    top: -10px;
    right: -22px;
    z-index: 2;
  }
}
.lp-players__intro {
  position: absolute;
  top: -48px;
}
@media screen and (max-width: 641px) {
  .lp-players__intro {
    padding-left: 17px;
    top: -24px;
  }
}
.lp-players__title-jp {
  font-size: 5.6rem;
  color: #0041c0;
}
@media screen and (max-width: 641px) {
  .lp-players__title-jp {
    font-size: 28px;
  }
}
.lp-players__subtitle {
  margin-top: 30px;
  font-size: 2.4rem;
  line-height: 1.5833333333em;
  font-weight: 700;
  color: #0041c0;
}
@media screen and (max-width: 641px) {
  .lp-players__subtitle {
    margin-top: 8px;
    font-size: 16px;
  }
}
.lp-players__member-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 106px 145px;
}
@media screen and (max-width: 641px) {
  .lp-players__member-list {
    grid-template-columns: 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-right: 35px;
    gap: 76px;
  }
}
.lp-players__member {
  position: relative;
  width: 265px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 642px) {
  .lp-players__member:nth-child(even) {
    top: 233px;
  }
}
.lp-players__member-link {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lp-players__member-link::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  top: 38px;
  right: -40px;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
.lp-players__member-link:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.lp-players__member-texts {
  padding: 8px 8px 8px 14px;
  color: #fff;
  font-family: "Jost", sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
@media screen and (max-width: 641px) {
  .lp-players__member-texts {
    padding-block: 11px 5px;
  }
}
.lp-players__member-pos {
  font-size: 2.7rem;
  font-weight: 700;
}
.lp-players__member-name {
  font-size: 3.8rem;
}
.lp-players__member-name--fs35 {
  font-size: 3.5rem;
}
.lp-players__member-name--fs34 {
  font-size: 3.4rem;
}
.lp-players__member-name--fs30 {
  font-size: 3rem;
}
.lp-players__member-name--fs28 {
  font-size: 2.8rem;
}
.lp-players__member-name--fs27 {
  font-size: 2.7rem;
}
.lp-players__member-image {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.lp-players__button {
  position: absolute;
  bottom: -48px;
  right: -36px;
}
@media screen and (max-width: 641px) {
  .lp-players__button {
    left: 0;
    right: 0;
    bottom: -22px;
  }
}

.lp-ticket {
  margin-block: 100px;
}
@media screen and (max-width: 641px) {
  .lp-ticket {
    margin-bottom: 50px;
  }
}
.lp-ticket::before, .lp-ticket::after {
  content: "";
  position: absolute;
  display: block;
  background: no-repeat 0 0/cover;
}
.lp-ticket::before {
  top: 800px;
  left: 0;
  width: 51px;
  height: 947px;
  background-image: url("../public/img/ticket/border-left.png");
}
@media screen and (max-width: 641px) {
  .lp-ticket::before {
    width: 30px;
    height: 100px;
    background-image: none;
    background-color: #0041c0;
    top: -100px;
  }
}
.lp-ticket::after {
  top: 74px;
  right: 0;
  width: 120px;
  height: 1600px;
  background-image: url("../public/img/ticket/border-right.png");
}
@media screen and (max-width: 1170px) {
  .lp-ticket::after {
    top: 30px;
  }
}
@media screen and (max-width: 641px) {
  .lp-ticket::after {
    top: -30px;
    width: 27px;
    height: 188px;
    background-image: url("../public/img/ticket/border-right-sp.png");
  }
}
.lp-ticket__container {
  z-index: 1;
}
@media screen and (max-width: 641px) {
  .lp-ticket__container {
    padding-inline: 2.5%;
  }
}
.lp-ticket__title-icon {
  width: 55px;
  height: 65px;
}
@media screen and (max-width: 641px) {
  .lp-ticket__title-icon {
    width: 40px;
    height: 48px;
  }
}
@media screen and (max-width: 641px) {
  .lp-ticket__title-text-en {
    font-size: 35px;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 330px) {
  .lp-ticket__title-text-en {
    font-size: 30px;
  }
}
.lp-ticket__subtitle {
  margin: 45px 0 65px;
}
@media screen and (max-width: 641px) {
  .lp-ticket__subtitle {
    margin: 30px 0 35px;
  }
}
.lp-ticket__stadium {
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 641px) {
  .lp-ticket__stadium {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
.lp-ticket__stadium-image {
  padding: 60px 20px 100px;
}
@media screen and (max-width: 641px) {
  .lp-ticket__stadium-image {
    padding: 10px 0 50px;
  }
}
.lp-ticket__price-section {
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 641px) {
  .lp-ticket__price-section {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
.lp-ticket__price-wrap {
  margin-block: 35px 45px;
  overflow: auto;
}
@media screen and (max-width: 641px) {
  .lp-ticket__price-wrap {
    margin-block: 25px 30px;
  }
  .lp-ticket__price-wrap::before {
    content: "※横にスライドして閲覧出来ます。";
    display: none;
    margin-bottom: 5px;
    font-size: 2.9333vw;
  }
}
@media screen and (max-width: 641px) {
  .lp-ticket__price-container {
    width: 1000px;
  }
}
.lp-ticket__button-note {
  padding: 10px 5px 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 641px) {
  .lp-ticket__button-note {
    padding-top: 5px;
    margin: 0 auto 20px;
    max-width: 280px;
    font-size: 12px;
  }
}
.lp-ticket__button-note-link {
  color: #0054ac;
  text-decoration: underline;
  text-underline-position: under;
  -webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.lp-timeline {
  padding-block: 80px;
  background: #00a479;
}
@media screen and (max-width: 641px) {
  .lp-timeline {
    padding-block: 46px;
  }
}
.lp-timeline::before, .lp-timeline::after {
  content: "";
  top: 0;
  width: 180px;
  position: absolute;
  display: block;
  background: no-repeat 0 0/cover;
}
.lp-timeline::before {
  left: 0;
  height: 1100px;
  background-image: url("../public/img/timeline/border-left.png");
}
@media screen and (max-width: 641px) {
  .lp-timeline::before {
    width: 64px;
    height: calc(100% - 80px);
    background-image: url("../public/img/timeline/border-left-sp.png");
  }
}
.lp-timeline::after {
  right: 0;
  height: 1170px;
  background-image: url("../public/img/timeline/border-right.png");
}
@media screen and (max-width: 641px) {
  .lp-timeline::after {
    width: 45px;
    height: calc(100% - 45px);
    background-image: url("../public/img/timeline/border-right-sp.png");
  }
}
.lp-timeline__container {
  margin: 0 auto;
  max-width: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 641px) {
  .lp-timeline__container {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
@media screen and (max-width: 641px) {
  .lp-timeline__container {
    padding-inline: 2.667%;
  }
}
.lp-timeline__title-icon {
  width: 54px;
}
@media screen and (max-width: 641px) {
  .lp-timeline__title-icon {
    width: 48px;
  }
}
.lp-timeline__table {
  margin: 80px auto 0;
  max-width: 810px;
}
@media screen and (max-width: 641px) {
  .lp-timeline__table {
    margin-top: 24px;
    width: 100%;
    max-width: 382px;
  }
}
.lp-timeline__table-note {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 641px) {
  .lp-timeline__table-note {
    font-size: 16px;
    margin-top: 15px;
    padding-inline: 2.667%;
  }
}
.lp-timeline__table-note::after {
  content: '';
  width: 30px;
  height: 190px;
  background-color: #fed800;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  transform: translate(-50%);
  z-index: -1;
}
@media screen and (max-width: 641px) {
  .lp-timeline__table-note::after {
    display: none;
  }
}
.lp-timeline__caption {
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  display: block;
}
@media screen and (max-width: 641px) {
  .lp-timeline__caption {
    font-size: 12px;
    padding-right: 10px;
  }
}

.lp-goods {
  padding-block: 100px;
  background: #fed800;
}
@media screen and (max-width: 641px) {
  .lp-goods {
    padding-block: 50px;
  }
}
.lp-goods::before, .lp-goods::after {
  content: "";
  top: 0;
  height: 1393px;
  position: absolute;
  display: block;
  background: no-repeat 0 0/cover;
}
.lp-goods::before {
  left: 0;
  width: 100px;
  background-image: url("../public/img/goods/border-left.png");
}
@media screen and (max-width: 641px) {
  .lp-goods::before {
    width: 52px;
    height: 125px;
    background-image: url("../public/img/goods/border-left-sp.png");
  }
}
.lp-goods::after {
  right: 0;
  width: 90px;
  background-image: url("../public/img/goods/border-right.png");
}
@media screen and (max-width: 641px) {
  .lp-goods::after {
    width: 55px;
    height: 100px;
    background-image: url("../public/img/goods/border-right-sp.png");
  }
}
.lp-goods__container {
  margin: 0 auto;
  max-width: 600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 641px) {
  .lp-goods__container {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
@media screen and (max-width: 641px) {
  .lp-goods__title-icon {
    width: 36px;
  }
}
@media screen and (min-width: 641px) {
  .lp-goods__title-text-en {
    font-size: 9.4rem;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 641px) {
  .lp-goods__title-text-en {
    margin-bottom: 25px;
  }
}
.lp-goods__subtitle {
  margin-top: 30px;
}
@media screen and (max-width: 641px) {
  .lp-goods__subtitle {
    margin: 24px 0 37px;
  }
}
.lp-goods__item-list {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 83px;
}
@media screen and (max-width: 641px) {
  .lp-goods__item-list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.lp-goods__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lp-goods__item:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.lp-goods__item-image-wrap {
  margin-inline: auto;
  width: 280px;
  aspect-ratio: 280/260;
  position: relative;
}
.lp-goods__item-image-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  right: -20px;
  border-radius: 20px;
  background: #ff8400;
}
.lp-goods__item-image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.lp-goods__item-name {
  margin-top: 35px;
  font-size: 1.7rem;
  line-height: 1.2941176471em;
  text-align: center;
  white-space: nowrap;
  min-height: 40px;
}
@media screen and (max-width: 641px) {
  .lp-goods__item-name {
    font-size: 17px;
    min-height: 0;
  }
}
.lp-goods__item-price {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  display: block;
}
@media screen and (max-width: 641px) {
  .lp-goods__item-price {
    margin-top: 10px;
    font-size: 14px;
  }
}
.lp-goods__item-price--big {
  padding-right: 0.1em;
  font-size: 2.9rem;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 641px) {
  .lp-goods__item-price--big {
    font-size: 29px;
  }
}
.lp-goods__button {
  margin: 40px auto 0;
}

.lp-access {
  padding-block: 100px;
}
@media screen and (max-width: 641px) {
  .lp-access {
    padding-block: 50px;
  }
}
.lp-access__title {
  margin-top: 73px;
}
@media screen and (max-width: 641px) {
  .lp-access__title {
    margin-top: 50px;
  }
}
.lp-access__container {
  margin: 0 auto;
  max-width: 923px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 641px) {
  .lp-access__container {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
.lp-access__image {
  width: 100%;
  aspect-ratio: 1043/541;
}
.lp-access__map {
  margin: 0 auto;
  max-width: 923px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
@media screen and (max-width: 641px) {
  .lp-access__map {
    padding-inline: 5.34%;
    max-width: 100%;
  }
}
@media screen and (max-width: 641px) {
  .lp-access__map {
    padding-inline: 0;
    margin: 30px 0 35px;
    height: 310px;
  }
}
.lp-access__map iframe {
  width: 100%;
  aspect-ratio: 1040/310;
}
@media screen and (max-width: 641px) {
  .lp-access__map iframe {
    height: 100%;
    aspect-ratio: 1/1;
  }
}
.lp-access__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 26px 20px;
  border-bottom: solid 1px #d5dcde;
}
@media screen and (max-width: 641px) {
  .lp-access__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.lp-access__info-list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 24px;
  width: 206px;
  font-size: 1.8rem;
}
.lp-access__info-list dd {
  padding-top: 12px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 641px) {
  .lp-access__info-list dd {
    font-size: 15px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.lp-access__info-list:first-of-type {
  border-top: solid 1px #d5dcde;
}
.lp-access__info {
  margin-top: 50px;
}
@media screen and (max-width: 641px) {
  .lp-access__info {
    margin-top: 35px;
  }
}
.lp-access__note {
  padding: 10px 5px 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 641px) {
  .lp-access__note {
    padding-top: 5px;
    font-size: 12px;
  }
}
.lp-access__note-link {
  color: #0054ac;
  text-decoration: underline;
  text-underline-position: under;
  -webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.wkpp__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: 700 3.6rem "Jost", sans-serif;
  line-height: 1em;
  color: #0041c0;
}
@media screen and (max-width: 641px) {
  .wkpp__heading {
    font-size: 24px;
  }
}
.wkpp__heading::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 100%;
  height: 6px;
  background-color: #0041c0;
}
@media screen and (max-width: 641px) {
  .wkpp__heading::after {
    height: 3px;
  }
}
.wkpp__heading.mx-auto {
  margin-inline: auto;
}
.wkpp-enjoy__banner {
  position: relative;
  padding-inline: 80px 90px;
  background: #f2a1a6;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner {
    padding: 43px 15px 0 46px;
    z-index: 1;
  }
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner::after {
    content: '';
    width: 53px;
    height: 178px;
    background: url('../public/img/watch/border-right-sp.png') center / cover no-repeat;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 140px;
    background: #fff;
  }
}
.wkpp-enjoy__banner-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 642px) {
  .wkpp-enjoy__banner-right {
    width: 90px;
    height: 100%;
    background: #ff8400;
  }
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner-right {
    bottom: -20px;
  }
}
.wkpp-enjoy__banner-wrapper {
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner-wrapper {
    width: 100%;
  }
}
.wkpp-enjoy__banner-image {
  display: block;
  height: 200px;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__banner-image {
    height: 115px;
  }
}
.wkpp-enjoy__video {
  position: relative;
  padding-inline: 85px;
  background-color: #f2a1a6;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video {
    padding-inline: 20px;
  }
}
.wkpp-enjoy__video-corner {
  position: absolute;
  width: 85px;
  height: 130px;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-corner {
    width: 20px;
    height: 20px;
  }
}
.wkpp-enjoy__video-corner--top-left {
  top: 0;
  left: 0;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-corner--top-left {
    background: #1da479;
  }
}
.wkpp-enjoy__video-corner--top-right {
  top: 0;
  right: 0;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-corner--top-right {
    background: #fff;
  }
}
.wkpp-enjoy__video-corner--bottom-left {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-corner--bottom-left {
    background: #fff;
  }
}
.wkpp-enjoy__video-corner--bottom-right {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-corner--bottom-right {
    background: #1da479;
  }
}
.wkpp-enjoy__video-content {
  width: 100%;
  display: none;
}
.wkpp-enjoy__video-content::before, .wkpp-enjoy__video-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  background-color: #fed800;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__video-content::before, .wkpp-enjoy__video-content::after {
    height: 20px;
  }
}
.wkpp-enjoy__video-player {
  display: block;
  height: min(56.3%, 580px);
  margin: 0 auto;
  width: 100%;
  max-width: 1030px;
}
.wkpp-enjoy__title-en {
  padding-bottom: 13px;
}
@media screen and (max-width: 641px) {
  .wkpp-enjoy__title-en {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 642px) {
  .wkpp-players__forward, .wkpp-players__back {
    padding-left: 30px;
  }
}
.wkpp-players__forward {
  padding-top: 40px;
}
@media screen and (max-width: 641px) {
  .wkpp-players__forward {
    padding-top: 30px;
  }
}
.wkpp-players__back {
  padding-top: 300px;
}
@media screen and (max-width: 641px) {
  .wkpp-players__back {
    padding-top: 90px;
  }
}
.wkpp-players__heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 641px) {
  .wkpp-players__heading {
    padding-left: 17px;
  }
}
.wkpp-ticket__table {
  width: 100%;
  background: #bebebe;
  /* border-collapse: collapse; */
  border-spacing: 1px;
  border: 0;
  font-size: 1.6rem;
  color: #111c2d;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 641px) {
  .wkpp-ticket__table {
    font-size: 14px;
  }
}
.wkpp-ticket__table .w245 {
  width: 245px;
  min-width: 200px;
}
.wkpp-ticket__table-header {
  width: 100%;
  height: 81px;
  background: #0041c0;
  color: #fff;
}
.wkpp-ticket__table-header th {
  padding-block: 3px;
}
.wkpp-ticket__table-w96 {
  width: 96px;
}
.wkpp-ticket__table-w667 {
  width: 667px;
}
.wkpp-ticket__table-body th {
  min-width: 268px;
  border-bottom: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width: 641px) {
  .wkpp-ticket__table-body th {
    min-width: 186px;
  }
}
.wkpp-ticket__table-body th.bg-yellow {
  background: #d4c201;
  color: #0c0c0c;
}
.wkpp-ticket__table-body th.bg-blue {
  background: #203864;
}
.wkpp-ticket__table-body th.bg-coral {
  background: #eb6c75;
}
.wkpp-ticket__table-body th.bg-lavender {
  background: #b0b0d7;
}
.wkpp-ticket__table-body th.bg-sky {
  background: #00a0df;
}
.wkpp-ticket__table-body th.bg-gold {
  background: #f49d1a;
}
.wkpp-ticket__table-body th.bg-moss {
  background: #50b341;
}
.wkpp-ticket__table-body th.bg-purple {
  background: #7061a2;
}
.wkpp-ticket__table-body th.bg-green {
  background: #009c5b;
}
.wkpp-ticket__table-body th.bg-orange {
  background: #ea600b;
}
.wkpp-ticket__table-body td {
  min-width: 96px;
  background: #fff;
  padding-block: 10.5px;
}
.wkpp-ticket__table-body td a {
  color: #ef4444;
  text-decoration: underline;
}
.wkpp-ticket__table-notes {
  padding-inline: 20px;
  font-size: 1.4rem;
  color: #111c2d;
  line-height: 20px;
  text-align: left;
}
.wkpp-ticket__table-notes li {
  position: relative;
  padding-left: 15px;
}
.wkpp-ticket__table-notes li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.wkpp-ticket__table-notes li.dots::before {
  content: "・";
}
.wkpp-ticket__table-notes li a {
  color: #e85a5a;
  font-weight: 400;
}
.wkpp-ticket__table-footer {
  padding: 8px 20px;
}
.wkpp-ticket__poster {
  display: block;
  margin: 70px auto 0;
  width: min(80%, 960px);
  -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 641px) {
  .wkpp-ticket__poster {
    margin-top: 50px;
    width: 100%;
  }
}
.wkpp-ticket__poster:hover {
  opacity: 0.8 !important;
}
.wkpp-ticket__poster-image, .wkpp-ticket__poster-image img {
  display: block;
}
.wkpp-tab {
  margin-inline: auto;
  width: min(97.33%, 880px);
}
@media screen and (max-width: 641px) {
  .wkpp-tab {
    width: 100%;
  }
}
.wkpp-tab__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
}
.wkpp-tab__button {
  cursor: pointer;
  width: 100%;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #0041c0;
  font: 700 2.4rem "Jost", sans-serif;
  color: #fed800;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s 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 (max-width: 641px) {
  .wkpp-tab__button {
    height: 42px;
    font-size: 18px;
  }
}
.wkpp-tab__button.active {
  border-top: 1px solid #0041c0;
  border-bottom-color: transparent;
  color: #0041c0;
}
.wkpp-tab__button:not(:last-child) {
  border-right: 1px solid #0041c0;
}
.wkpp-tab__content {
  display: none;
  width: 100%;
}
.wkpp-tab__content.active {
  display: block;
  padding-top: 80px;
}
@media screen and (max-width: 641px) {
  .wkpp-tab__content.active {
    padding-top: 30px;
  }
}
.wkpp-watch__poster-picture {
  display: block;
  margin-bottom: 40px;
  -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 641px) {
  .wkpp-watch__poster-picture {
    margin-bottom: 30px;
  }
}
.wkpp-watch__poster-info {
  padding-inline: 13px;
  font-size: 1.8rem;
  line-height: 1.8888888889em;
}
@media screen and (max-width: 641px) {
  .wkpp-watch__poster-info {
    padding-inline: 10px;
    font-size: 16px;
    line-height: 1.625em;
  }
}
.wkpp-watch__pickup {
  padding-top: 85px;
}
@media screen and (max-width: 641px) {
  .wkpp-watch__pickup {
    padding-top: 30px;
  }
}
.wkpp-watch__pickup-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 641px) {
  .wkpp-watch__pickup-list {
    grid-template-columns: 100%;
    gap: 20px;
    margin: 35px 10px 0;
  }
}
.wkpp-watch__pickup-picture {
  display: block;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 286/180;
}
@media screen and (max-width: 641px) {
  .wkpp-watch__pickup-picture {
    margin-bottom: 8px;
    aspect-ratio: 335/189;
  }
}
.wkpp-watch__pickup-desc {
  font-size: 1.8rem;
  line-height: 1.8888888889em;
}
@media screen and (max-width: 641px) {
  .wkpp-watch__pickup-desc {
    font-size: 16px;
    line-height: 1.625em;
  }
}

.hero {
  width: 100%;
  background: #fed800;
}
.hero-header {
  position: relative;
  padding: 14px;
  overflow: hidden;
  width: 100%;
}
.hero-header__decor-left-top {
  position: absolute;
  top: 14px;
  left: 181px;
  width: 29px;
  height: 165px;
  background: #00a479;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-left-top {
    top: 80px;
    left: 0;
    width: 28px;
    height: 65px;
  }
}
.hero-header__decor-left-middle {
  position: absolute;
  top: 179px;
  left: 14px;
  width: 50px;
  height: 147px;
  background: #00a479;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-left-middle {
    display: none;
  }
}
.hero-header__decor-left-bottom {
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 64px;
  height: 170px;
  background: #ff8400;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-left-bottom {
    width: 14px;
    height: 175px;
  }
}
.hero-header__decor-top {
  position: absolute;
  top: 14px;
  right: 47px;
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero-header__decor-top-green {
  width: 46px;
  height: 133px;
  background: #00a479;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-top-green {
    width: 30px;
    height: 86px;
  }
}
.hero-header__decor-top-orange {
  width: 30px;
  height: 133px;
  background: #ff8400;
}
@media screen and (max-width: 641px) {
  .hero-header__decor-top-orange {
    width: 19px;
    height: 86px;
  }
}
.hero-header__wrapper {
  position: relative;
  z-index: 1;
  margin: -88px auto 0;
  padding: 28px 25px;
  width: calc(100% - 192px);
  background: #fed800;
}
@media screen and (max-width: 641px) {
  .hero-header__wrapper {
    margin-top: -176px;
    padding: 0;
    width: calc(100% - 25px);
    background: transparent;
    margin-bottom: -3px;
  }
}
.hero__video {
  display: block;
  margin-inline: auto;
  width: calc(100% - 100px);
  min-height: 482px;
  height: calc(100vh - 205px);
  height: calc(100svh - 205px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1062px) {
  .hero__video {
    height: calc(100vh - 271px);
    height: calc(100svh - 271px);
  }
}
@media screen and (max-width: 975px) {
  .hero__video {
    max-height: 482px;
  }
}
@media screen and (max-width: 641px) {
  .hero__video {
    width: 100%;
    height: 526px;
    max-height: unset;
  }
}
@media screen and (max-width: 641px) {
  .hero__video {
    height: calc(100vh - 118px);
    height: calc(100svh - 118px);
  }
}
@media screen and (max-width: 508px) {
  .hero__video {
    height: calc(100vh - 151px);
    height: calc(100svh - 151px);
  }
}
.hero__logo-wrapper {
  position: absolute;
  top: -154px;
  left: calc(100% - 153px);
}
@media screen and (max-width: 641px) {
  .hero__logo-wrapper {
    top: -43px;
    left: calc(50% + 21px);
    width: 50%;
  }
}
.hero__logo {
  display: block;
  width: 165px;
}
@media screen and (max-width: 641px) {
  .hero__logo {
    width: 136px;
  }
}
.hero__callout-wrapper {
  position: absolute;
  top: -158px;
}
@media screen and (min-width: 642px) {
  .hero__callout-wrapper {
    right: 153px;
  }
}
@media screen and (max-width: 641px) {
  .hero__callout-wrapper {
    top: -46px;
    left: calc(50% - 142px);
    width: 50%;
  }
}
.hero__callout {
  padding-block: 30px;
  width: 314px;
  height: 128px;
  background: url("../public/img/mv/callout.png") no-repeat;
  background-size: contain;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #006937;
  text-align: center;
}
@media screen and (max-width: 641px) {
  .hero__callout {
    padding-block: 18px 25px;
    width: 172px;
    height: 69px;
    font-size: 9px;
  }
}
.hero__callout span {
  font-size: 2.4rem;
  line-height: 1em;
}
@media screen and (max-width: 641px) {
  .hero__callout span {
    font-size: 13px;
  }
}
.hero__date {
  font-size: 0;
  gap: 35px;
  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: 642px) and (max-width: 975px) {
  .hero__date {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 641px) {
  .hero__date {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.hero__date-item {
  display: block;
}
@media screen and (max-width: 641px) {
  .hero__date-item {
    padding-inline: 15px;
    width: 100%;
    background: #fed800;
  }
}
@media screen and (max-width: 641px) {
  .hero__date-item--two, .hero__date-item--three {
    grid-row-start: 3;
    padding-block: 13px;
  }
}
@media screen and (max-width: 641px) {
  .hero__date-item--two {
    margin-top: -2px;
  }
}
.hero__date-item--three {
  position: relative;
}
@media screen and (max-width: 641px) {
  .hero__date-item--three {
    margin-top: -2px;
    margin-left: -1px;
    width: calc(100% + 1px);
  }
}
.hero__date-item img {
  display: block;
  height: 99px;
}
@media screen and (max-width: 641px) {
  .hero__date-item img {
    width: auto;
    max-width: 100%;
    height: 48px !important;
  }
}
@media screen and (max-width: 641px) {
  .hero__date-item--year {
    padding-block: 16px 12px;
  }
}
.hero__date-item--year img {
  width: 27px;
  height: auto !important;
}
@media screen and (max-width: 641px) {
  .hero__date-item--year img {
    width: 47px;
  }
}
@media screen and (max-width: 641px) {
  .hero__date-item--one {
    z-index: 2;
    margin-top: -1px;
    grid-row-start: 2;
  }
}
.hero__date-item--one img {
  height: 98px;
}
.hero__date-decor {
  position: absolute;
  top: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 641px) {
  .hero__date-decor {
    display: none;
  }
}
.hero__date-decor--left {
  right: 100%;
}
.hero__date-decor--right {
  left: 100%;
}
.hero__date-decor div {
  width: 29px;
}

.overflow {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.pc {
  display: block;
}
@media screen and (max-width: 641px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 641px) {
  .sp {
    display: block;
  }
}

.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.relative {
  position: relative;
}

.palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.nowrap {
  white-space: nowrap;
}

.anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}
@media screen and (max-width: 641px) {
  .anchor {
    top: -63px;
  }
}
@media screen and (max-width: 641px) {
  .anchor--sp-120 {
    top: -120px;
  }
}

.bg-white {
  background: #fff;
}

.bg-orange {
  background: #ff8400;
}

.bg-green {
  background: #00a479;
}

.bg-yellow {
  background: #fed800;
}

.bg-pink {
  background: #f2a1a6;
}

.aos-animate {
  --base: 0.5s;
}
@media screen and (min-height: 850px) {
  .aos-animate.mv-aos-custom-delay-pc {
    -webkit-transition-delay: var(--base);
            transition-delay: var(--base);
  }
}
@media screen and (min-height: 850px) {
  .aos-animate.mv-aos-custom-delay {
    -webkit-transition-delay: var(--base);
            transition-delay: var(--base);
  }
}
@media screen and (max-width: 641px) {
  .aos-animate.mv-aos-custom-delay {
    -webkit-transition-delay: var(--base);
            transition-delay: var(--base);
  }
}

.splide__slide {
  width: 300px !important;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 641px) {
  .splide__slide {
    width: 150px !important;
  }
}

.lp-partner {
  margin-block: 70px 100px;
}
@media screen and (max-width: 641px) {
  .lp-partner {
    margin-block: 40px 70px;
  }
}
.lp-partner__img-wrap {
  width: 400px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 641px) {
  .lp-partner__img-wrap {
    width: 335px;
  }
}
.lp-partner__img {
  width: 100%;
  height: 240px;
  border-radius: 63px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 641px) {
  .lp-partner__img {
    height: 189px;
    border-radius: 40px;
    margin-bottom: 15px;
  }
}
.lp-partner__img-caption {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0041c0;
  display: block;
  text-align: center;
}

.lp-event__list {
  width: 100%;
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  gap: 50px 60px;
}
@media screen and (max-width: 641px) {
  .lp-event__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}
.lp-event__list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp-event__item {
  width: 100%;
  max-width: 398px;
}
@media screen and (max-width: 641px) {
  .lp-event__item {
    max-width: 335px;
  }
}
.lp-event__img {
  width: 100%;
  height: 290px;
  border-radius: 21px;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 641px) {
  .lp-event__img {
    height: 190px;
  }
}
.lp-event__img--soon {
  margin-block: 20px 25px;
  border: 1px solid #000;
}
.lp-event__img--border {
  border: 1px solid #000;
}
.lp-event__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 15px;
  margin-block: 20px 25px;
  padding-inline: 20px 15px;
}
@media screen and (max-width: 641px) {
  .lp-event__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-block: 10px 20px;
  }
}
.lp-event__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #0041c0;
  border-radius: 50%;
  font: 700 2.4rem "Jost", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 641px) {
  .lp-event__num {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.lp-event__title {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 641px) {
  .lp-event__title {
    font-size: 18px;
  }
}
.lp-event__desc {
  font-size: 1.8rem;
  line-height: 1.4444444444em;
}
@media screen and (max-width: 641px) {
  .lp-event__desc {
    font-size: 16px;
    line-height: 1.625em;
  }
}
