@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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

img,
picture {
  display: block;
}

::before,
::after {
  pointer-events: none;
}

/* stylelint-disable scss/dollar-variable-colon-space-before */
/* stylelint-enable scss/dollar-variable-colon-space-before */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #111c2d;
  scroll-behavior: smooth;
}
@supports (-webkit-touch-callout: none) {
  html {
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
}

.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  pointer-events: none;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.header__logo {
  width: 160px;
  height: 160px;
  background: #0056a8;
  pointer-events: 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;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 56px;
    height: 56px;
  }
}
.header__logo img {
  margin-left: -6px;
  width: 124px;
  height: 132px;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    margin-left: -2px;
    width: 42px;
    height: 44.5px;
  }
}
.header__menu-btn {
  position: relative;
  width: 96px;
  height: 96px;
  background: #0056a8;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .header__menu-btn {
    width: 56px;
    height: 56px;
  }
}
.header__menu-btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 32px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__menu-btn span {
    width: 24px;
  }
}
.header__menu-btn span:nth-child(1) {
  top: 32px;
}
@media screen and (max-width: 767px) {
  .header__menu-btn span:nth-child(1) {
    top: 12px;
  }
}
.header__menu-btn span:nth-child(2) {
  top: 42px;
}
@media screen and (max-width: 767px) {
  .header__menu-btn span:nth-child(2) {
    top: 20px;
  }
}
.header__menu-btn span:nth-child(3) {
  top: 52px;
}
@media screen and (max-width: 767px) {
  .header__menu-btn span:nth-child(3) {
    top: 28px;
  }
}
.header__menu-btn.active span:nth-child(1),
.header__menu-btn.active span:nth-child(3) {
  top: 42px;
}
@media screen and (max-width: 767px) {
  .header__menu-btn.active span:nth-child(1),
  .header__menu-btn.active span:nth-child(3) {
    top: 20px;
  }
}
.header__menu-btn.active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.active span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.header__menu-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Cinzel Decorative", serif;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .header__menu-text {
    font-size: 10px;
    bottom: 8px;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 960px;
  max-height: 100vh;
  width: 100%;
  background: #003a7b;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: 835px;
  }
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.header__nav-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
  padding-block: 214px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__nav-content {
    gap: 48px;
    padding-block: 80px 64px;
  }
}
.header__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .header__nav-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.header__nav-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: 48px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    gap: 16px;
  }
}
.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;
  position: relative;
  padding-left: 30px;
  width: 313px;
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    padding-left: 23px;
    width: 215px;
  }
}
.header__nav-link span.en {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Cinzel Decorative", serif;
  color: #d5bd8e;
}
@media screen and (max-width: 767px) {
  .header__nav-link span.en {
    font-size: 12px;
  }
}
.header__nav-link span.jp {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__nav-link span.jp {
    font-size: 16px;
  }
}
.header__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 12px;
  background: url("../public/icon/arrow-right.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-link:hover::before {
  left: 3px;
}
.header__buttons {
  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: 16px;
}
@media screen and (max-width: 767px) {
  .header__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.footer {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding-block: 96px 40px;
  background: #111c2d;
  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;
}
.footer__deco {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 240px;
  pointer-events: none;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1264px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__deco {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__deco {
    height: 120px;
  }
}
.footer__deco-object {
  width: 250px;
  aspect-ratio: 250/240;
  -webkit-animation: step-rotate 3s steps(1) infinite;
          animation: step-rotate 3s steps(1) infinite;
}
@media screen and (max-width: 767px) {
  .footer__deco-object {
    width: 125px;
  }
}
.footer__deco-object::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../public/icon/snowflake.svg") no-repeat center/contain;
  pointer-events: none;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.footer__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;
}
.footer__text {
  text-align: center;
  color: #e5e7eb;
}
.footer__text p.jp {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__text p.jp {
    font-size: 20px;
  }
}
.footer__text p.en {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__text p.en {
    font-size: 12px;
  }
}

.button {
  width: 294px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 32px;
  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;
}
.button span {
  position: relative;
}
.button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 7px;
  height: 12px;
  background: url("../public/icon/arrow-right.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover span::after {
  right: -18px;
}
.button--white {
  color: #003a7b;
  background: #fff;
}
.button--blue {
  color: #fff;
  background: #003a7b;
  -webkit-box-shadow: 0 5px 0 #d5bd8e;
          box-shadow: 0 5px 0 #d5bd8e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button--blue {
    font-size: 14px;
  }
}
.button--blue span::after {
  right: -23px;
}
.button--blue:hover span::after {
  right: -26px;
}
.button--blue:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 0 0 #d5bd8e;
          box-shadow: 0 0 0 #d5bd8e;
}

.heading {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  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;
}
.heading--blue .heading__en .letter:nth-of-type(odd) {
  color: #003a7b;
}
.heading--blue .heading__en .letter:nth-of-type(even) {
  color: #327488;
}
.heading--blue .heading__jp {
  color: #003a7b;
}
.heading--beige .heading__en .letter:nth-child(odd) {
  color: #d5bd8e;
}
.heading--beige .heading__en .letter:nth-child(even) {
  color: #dcd89f;
}
.heading--beige .heading__jp {
  color: #fff;
}
.heading__deco::before {
  content: "";
  display: block;
  margin-inline: auto;
  width: 118.55px;
  height: 50px;
  background: url("../public/icon/heading-deco.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .heading__deco::before {
    width: 60px;
    height: 25px;
  }
}
.heading__en {
  font: 700 6.4rem "Cinzel Decorative", serif;
  line-height: 1.1875em;
  text-align: center;
  padding-inline: 10px;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 40px;
    line-height: 1.4em;
  }
}
.heading__jp {
  margin-top: 16px;
  font: 700 2.4rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .heading__jp {
    margin-top: 8px;
    font-size: 20px;
  }
}

.section {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5em;
}
.section__head, .section__content, .section__deco {
  width: 100%;
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1264px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .section__head, .section__content, .section__deco {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .section__head--sp-wide, .section__content--sp-wide, .section__deco--sp-wide {
    padding-inline: 32px;
  }
}
.section__head {
  margin-bottom: 4.8rem;
}
.section__head-hl {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.5em;
  text-align: center;
  color: #003a7b;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .section__head-hl {
    font-size: 2.4rem;
    line-height: 1.6666666667em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.section__head-text {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6666666667em;
  text-align: center;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .section__head-text {
    font-size: 1.4rem;
    line-height: 1.7142857143em;
  }
}
.section__deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  height: 240px;
  pointer-events: none;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .section__deco {
    height: 120px;
  }
}
.section__deco-object {
  width: 250px;
  aspect-ratio: 250/240;
  -webkit-animation: step-rotate 3s steps(1) infinite;
          animation: step-rotate 3s steps(1) infinite;
}
@media screen and (max-width: 767px) {
  .section__deco-object {
    width: 125px;
  }
}
.section__deco-object::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../public/icon/snowflake.svg") no-repeat center/contain;
  pointer-events: none;
}
.section:nth-child(2n+1) .section__deco {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.list-bullet {
  width: 100%;
}
.list-bullet > li {
  position: relative;
  padding-left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .list-bullet > li {
    padding-left: 1.2rem;
  }
}
.list-bullet > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list-circle {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}
.list-circle > li {
  counter-increment: step;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.list-circle > li::before {
  content: counter(step, circled-decimal);
}

@counter-style circled-decimal {
  system: fixed;
  symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩";
}
.lp {
  overflow: hidden;
}

.lp-mv__banner {
  width: 100%;
  aspect-ratio: 1920/960;
}
@media screen and (max-width: 767px) {
  .lp-mv__banner {
    aspect-ratio: 375/666;
  }
}

.lp-partner {
  position: relative;
  padding-block: 64px 96px;
}
.lp-partner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 660.09px;
  height: 588.71px;
  background: url("../public/img/deco-left.svg") no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp-partner::before {
    width: 187.5px;
    height: 167.22px;
  }
}
.lp-partner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 663.1px;
  height: 595.35px;
  background: url("../public/img/deco-right.svg") no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp-partner::after {
    width: 187.5px;
    height: 168.34px;
  }
}
.lp-partner__image {
  margin: 48px auto 16px;
}
.lp-partner__image--placeholder {
  width: 568px;
  height: 128px;
}
@media screen and (max-width: 767px) {
  .lp-partner__image--placeholder {
    width: 100%;
    height: auto;
  }
}
.lp-partner__text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.lp-event {
  padding-block: 64px 96px;
  background: repeating-linear-gradient(135deg, #003a7b 0, #003a7b 27px, #002e61 27px, #002e61 56px);
}
@media screen and (max-width: 767px) {
  .lp-event__head {
    padding-inline: 0;
    margin-bottom: 3.5rem;
  }
}
.lp-event__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  margin-block: 3rem 4rem;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .lp-event__notice {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-event__splide {
    padding-bottom: 3.2rem;
  }
}
.lp-event__splide, .lp-event__splide-track {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lp-event__splide, .lp-event__splide-track {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.lp-event__splide-page {
  width: 8px;
  height: 8px;
  background: #e5e7eb;
  opacity: 1 !important;
  -webkit-transform: initial !important;
          transform: initial !important;
}
.lp-event__splide-page.is-active {
  background: #0083f5;
}
.lp-event__list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem 2.4rem;
}
@media screen and (max-width: 1080px) {
  .lp-event__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp-event__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    grid-template-columns: initial;
    gap: 1.6rem;
  }
}
.lp-event__item {
  margin-inline: auto;
  padding-top: 65px;
  width: 100%;
  max-width: 588px;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
@media screen and (max-width: 767px) {
  .lp-event__item {
    max-width: 279px;
    padding-top: 33px;
    display: block;
  }
}
.lp-event__item-heading {
  width: 100%;
  height: 80px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  background: #0083f5;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-event__item-heading {
    height: initial;
    min-height: 56px;
    font-size: 1.6rem;
    line-height: 1.625em;
  }
}
.lp-event__item-heading::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  height: 65px;
  aspect-ratio: 158/65;
  background: url("../public/img/event-ribbon.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-event__item-heading::before {
    height: 33px;
  }
}
.lp-event__item-image, .lp-event__item-content {
  width: calc(100% - 28px);
  margin-inline: auto;
  background: #0083f5;
}
@media screen and (max-width: 767px) {
  .lp-event__item-image, .lp-event__item-content {
    width: calc(100% - 32px);
  }
}
.lp-event__item-image {
  aspect-ratio: 560/346;
}
.lp-event__item-content {
  padding: 32px 16px;
}
@media screen and (max-width: 767px) {
  .lp-event__item-content {
    padding: 24px 16px;
  }
}
.lp-event__item-desc {
  font-size: 1.6rem;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp-event__item-desc {
    font-size: 1.4rem;
    line-height: 1.7142857143em;
  }
}
.lp-event__item-info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  color: #fff;
  width: 100%;
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .lp-event__item-info {
    font-size: 1.2rem;
    line-height: 1.6666666667em;
  }
}
.lp-event__info-title {
  font-weight: 700;
}
.lp-event__info-row dt,
.lp-event__info-row dd {
  display: inline;
}

.lp-sched {
  padding-block: 6.4rem 37.1rem;
  background: #111c2d;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-sched {
    padding-bottom: 20.4rem;
  }
}
.lp-sched__deco {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 27.5rem;
  background: url("../public/img/sched-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp-sched__deco {
    height: 10.8rem;
    background-image: url("../public/img/sched-bg-sp.jpg");
  }
}
.lp-sched__prog {
  margin: auto;
  max-width: 830px;
}
.lp-sched__prog-row {
  width: 100%;
  display: grid;
  grid-template-columns: 16.2rem 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  color: #e5e7eb;
  padding-block: 2.4rem;
  border-bottom: 2px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, #c9d1d4 0, #c9d1d4 2px, transparent 2px, transparent 14px) 1;
     border-image: repeating-linear-gradient(to right, #c9d1d4 0, #c9d1d4 2px, transparent 2px, transparent 14px) 1;
}
@media screen and (max-width: 767px) {
  .lp-sched__prog-row {
    grid-template-columns: 9.2rem 1fr;
    gap: 1.4rem;
  }
}
.lp-sched__prog-row:first-child {
  border-top: 2px solid transparent;
}
.lp-sched__prog-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
}
.lp-sched__time-label {
  font: 700 3.2rem/1 "Cinzel Decorative", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .lp-sched__time-label {
    font-size: 2rem;
  }
}
.lp-sched__time-label::before {
  content: "";
  display: block;
  width: 2.4rem;
  aspect-ratio: 1/1;
  background: url("../public/icon/star.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-sched__time-label::before {
    width: 1.6rem;
  }
}
.lp-sched__time-marker {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .lp-sched__time-marker {
    font-size: 1.2rem;
  }
}
.lp-sched__prog-event {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .lp-sched__prog-event {
    font-size: 2rem;
    line-height: 1.5em;
  }
}
.lp-sched__event-note {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .lp-sched__event-note {
    margin-top: 8px;
    display: block;
    font-size: 1.2rem;
    line-height: 1.6666666667em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.lp-players {
  padding-block: 6.6rem 9.6rem;
}
@media screen and (max-width: 767px) {
  .lp-players {
    padding-top: 6.4rem;
  }
}
.lp-players__banner {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200/563;
  background: #e5e7eb;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp-players__banner {
    aspect-ratio: 343/429;
  }
}
.lp-players__list {
  margin-top: 4.8rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 294px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1280px) {
  .lp-players__list {
    grid-template-columns: repeat(2, 294px);
  }
}
@media screen and (max-width: 767px) {
  .lp-players__list {
    grid-template-columns: repeat(2, minmax(167px, 294px));
  }
}
.lp-players__item {
  aspect-ratio: 1/1;
  background: #e5e7eb;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp-players__item:hover .lp-players__item-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.lp-players__item-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lp-players__item-info {
  color: #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;
  font-size: 1.4rem;
  text-align: center;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-players__item-info {
    font-size: 1.2rem;
    padding: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lp-players__info-pos {
    line-height: 1.5em;
  }
}
.lp-players__info-name {
  -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;
}
.lp-players__name-jp {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .lp-players__name-jp {
    font-size: 2rem;
  }
}
.lp-players__item-marker {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  background: #000;
  padding: 4px 9px;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  color: #ffe101;
  max-width: calc(100% - 32px);
}
@media screen and (max-width: 767px) {
  .lp-players__item-marker {
    top: 8px;
    left: 8px;
    padding-inline: 4px;
    font-size: 1.2rem;
    line-height: 1.6666666667em;
    max-width: calc(100% - 16px);
  }
}
.lp-players__button {
  margin-top: 4.8rem;
  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-ticket {
  position: relative;
  padding-block: 5.7rem 9.6rem;
  border-left: 40px solid #a6d2e5;
  border-right: 40px solid #a6d2e5;
  background: repeating-linear-gradient(135deg, #fff 0, #fff 27px, #f2f8fc 27px, #f2f8fc 56px);
}
@media screen and (max-width: 767px) {
  .lp-ticket {
    border-left-width: 8px;
    border-right-width: 8px;
    padding-top: 9.6rem;
  }
}
.lp-ticket__arena {
  width: 100%;
  max-width: 83rem;
  aspect-ratio: 830/632;
  margin-inline: auto;
}
.lp-ticket__sheet {
  margin-top: 4.8rem;
  width: calc(100% + 64px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-ticket__sheet {
    width: calc(100% + 32px);
  }
}
.lp-ticket__sheet-message {
  display: none;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .lp-ticket__sheet-message {
    display: block;
  }
}
.lp-ticket__sheet-table {
  width: 100%;
  padding: 2.4rem 32px;
  margin-inline: auto;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 767px) {
  .lp-ticket__sheet-table {
    padding-inline: 25px;
  }
}
.lp-ticket__sheet-table::-webkit-scrollbar {
  display: none;
}
.lp-ticket__sheet-note {
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  width: 100%;
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1264px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp-ticket__sheet-note {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp-ticket__sheet-note {
    padding-inline: 32px;
    font-size: 1.2rem;
    line-height: 1.6666666667em;
  }
}
.lp-ticket__table {
  width: 100%;
  min-width: 1200px;
  background: #fff;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 10px 20px rgba(0, 58, 123, 0.1);
          box-shadow: 0 10px 20px rgba(0, 58, 123, 0.1);
}
.lp-ticket__table tr {
  min-height: 4rem;
}
.lp-ticket__table tr:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
.lp-ticket__table th,
.lp-ticket__table td {
  padding: 8px 2.4rem;
}
.lp-ticket__table th {
  color: #fff;
  text-align: center;
}
.lp-ticket__table td:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}
.lp-ticket__table a {
  color: #ef4444;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-ticket__table a:hover {
  opacity: 0.7;
}
.lp-ticket__table-thead {
  background: #0054ac;
}
.lp-ticket__table-thead th:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}
.lp-ticket__table-row--note {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lp-ticket__table-row--note td {
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}
.lp-ticket__table-row--terrace th {
  background: #d4c201;
  color: #111c2d;
}
.lp-ticket__table-row--pitch th {
  background: #203864;
}
.lp-ticket__table-row--sss th {
  background: #eb6c75;
}
.lp-ticket__table-row--ss th {
  background: #b0b0d7;
}
.lp-ticket__table-row--s th {
  background: #00a0df;
}
.lp-ticket__table-row--a th {
  background: #f49d1a;
}
.lp-ticket__table-row--b th {
  background: #50b341;
}
.lp-ticket__table-row--family th {
  background: #7061a2;
}
.lp-ticket__table-row--pwd th {
  background: #009c5b;
}
.lp-ticket__table-row--pwd-south th {
  background: #ea600b;
}
.lp-ticket__pitch {
  margin-top: 4.8rem;
}
.lp-ticket__pitch-heading {
  font-weight: 700;
  font-size: 2.4rem;
  color: #003a7b;
}
@media screen and (max-width: 767px) {
  .lp-ticket__pitch-heading {
    font-size: 2rem;
  }
}
.lp-ticket__pitch-content {
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  margin-top: 2.7rem;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-ticket__pitch-content {
    padding-inline: 16px;
    font-size: 1.2rem;
    line-height: 1.6666666667em;
  }
}
.lp-ticket__button {
  margin-top: 4.8rem;
  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-discount {
  padding-top: 11.3rem;
}
@media screen and (max-width: 767px) {
  .lp-discount {
    padding-top: 6.4rem;
  }
}
.lp-discount__head {
  margin-bottom: 2.4rem;
}
.lp-discount__head-text {
  margin-top: 5.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-discount__head-text {
    margin-top: 4.8rem;
    font-size: 1.4rem;
    line-height: 1.7142857143em;
  }
}
.lp-discount__head-text--bold {
  font-weight: 700;
}
.lp-discount__head-text--blue {
  color: #003a7b;
}
.lp-discount__image {
  width: 100%;
  aspect-ratio: 1200/563;
}
@media screen and (max-width: 767px) {
  .lp-discount__image {
    aspect-ratio: 343/429;
  }
}
.lp-discount__button-wrap {
  margin-top: 4.8rem;
  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-discount__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.lp-discount__button span::after {
  top: auto;
  right: 0;
  position: relative;
  -webkit-transform: none;
          transform: none;
}
.lp-discount__button:hover span::after {
  right: -3px;
}

.lp-invi {
  padding-block: 6.4rem 9.6rem;
}
.lp-invi__head {
  margin-bottom: 2.4rem;
}
.lp-invi__head-text {
  margin-top: 4.8rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp-invi__head-text {
    font-size: 1.4rem;
    line-height: 1.7142857143em;
  }
}
.lp-invi__image {
  width: 100%;
  aspect-ratio: 2;
}
@media screen and (max-width: 767px) {
  .lp-invi__image {
    aspect-ratio: 311/415;
  }
}
.lp-invi__button {
  margin-top: 4.8rem;
  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-watch {
  padding-block: 6.4rem 12.2rem;
  background: #003a7b;
}
@media screen and (max-width: 767px) {
  .lp-watch {
    padding-bottom: 9.6rem;
  }
}
.lp-watch__head {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .lp-watch__head {
    margin-bottom: 4.8rem;
  }
}
.lp-watch__slider-image {
  width: 100%;
  height: 356px;
}
@media screen and (max-width: 767px) {
  .lp-watch__slider-image {
    height: 140px;
  }
}
.lp-watch__banner-head-hl {
  margin-block: 2.4rem;
}
.lp-watch__perf {
  margin-top: 9.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf {
    margin-top: 4.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-watch__perf-head, .lp-watch__perf-content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-head, .lp-watch__perf-content {
    width: 100%;
  }
}
.lp-watch__perf-head-content {
  margin-inline: auto 4rem;
  padding-top: 6.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-head-content {
    margin: auto;
    padding: 0;
  }
}
.lp-watch__perf-heading::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../public/icon/star.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-heading::before {
    width: 1.6rem;
  }
}
.lp-watch__perf-heading-en {
  font-size: 2.4rem;
  color: #d5bd8e;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-heading-en {
    font-size: 2rem;
  }
}
.lp-watch__perf-head-hl {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-content {
    margin-top: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lp-watch__perf-video {
  width: 100%;
  max-width: 275px;
  aspect-ratio: 275/490;
}
@media screen and (max-width: 767px) {
  .lp-watch__perf-video {
    margin: auto;
  }
}

.lp-access {
  padding-block: 18.3rem 9.6rem;
}
@media screen and (max-width: 767px) {
  .lp-access {
    padding-top: 6.4rem;
  }
}
.lp-access__head {
  margin-bottom: 2.4rem;
}
.lp-access__head-hl {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-access__head-hl {
    display: none;
  }
}
.lp-access__head-hl-icon {
  width: 36px;
  aspect-ratio: 36/48;
}
.lp-access__map {
  margin-top: 2.4rem;
  width: 100%;
  aspect-ratio: 1200/400;
}
@media screen and (max-width: 767px) {
  .lp-access__map {
    aspect-ratio: 1;
  }
}
.lp-access__info {
  margin: 4.8rem auto 0;
  max-width: 830px;
}
.lp-access__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 0;
  border-bottom: 2px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, #003a7b 0, #003a7b 2px, transparent 2px, transparent 14px) 1;
     border-image: repeating-linear-gradient(to right, #003a7b 0, #003a7b 2px, transparent 2px, transparent 14px) 1;
}
@media screen and (max-width: 767px) {
  .lp-access__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-access__info-list:first-child {
  border-top: 2px solid transparent;
}
.lp-access__info-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: 8px;
  width: 206px;
}
@media screen and (max-width: 767px) {
  .lp-access__info-dt {
    width: auto;
  }
}
.lp-access__info-heading {
  color: #003a7b;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-access__info-heading {
    font-size: 2rem;
  }
}
.lp-access__info-icon {
  width: 32px;
  aspect-ratio: 1;
}
.lp-access__info-dd {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lp-access__info-dd {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143em;
  }
}
.lp-access__note-link {
  color: #478fff;
  text-decoration: underline;
  text-underline-position: under;
}

.overflow {
  overflow: hidden;
}

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

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

.container {
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1264px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 16px;
  }
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.blue7 {
  color: #7bd7ff;
}

.inline-block {
  display: inline-block;
}

.anchor {
  position: relative;
  top: -200px;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -86px;
  }
}

.snow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  width: 100vw;
  height: 100dvh;
}
.snow-container .snow span, .snow-container .snow::before, .snow-container .snow::after {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #f2f8fc;
  text-align: center;
}
.snow-container .snow span {
  display: block;
}
.snow-container .snow::before, .snow-container .snow::after {
  content: "❄";
}
.snow-container .snow.small {
  font-size: 1.92rem;
  opacity: 1;
}
.snow-container .snow.small span {
  -webkit-animation: fall-small 7s linear infinite;
          animation: fall-small 7s linear infinite;
}
.snow-container .snow.small::before {
  left: -30%;
  -webkit-animation: fall-small 9s linear infinite;
          animation: fall-small 9s linear infinite;
}
.snow-container .snow.small::after {
  left: 30%;
  -webkit-animation: fall-small 7s linear infinite;
          animation: fall-small 7s linear infinite;
}
.snow-container .snow.medium {
  font-size: 2.24rem;
  opacity: 0.8;
}
.snow-container .snow.medium span {
  left: 10%;
  -webkit-animation: fall-medium 8s linear infinite;
          animation: fall-medium 8s linear infinite;
}
.snow-container .snow.medium::before {
  left: -40%;
  -webkit-animation: fall-medium 10s linear infinite;
          animation: fall-medium 10s linear infinite;
}
.snow-container .snow.medium::after {
  left: 40%;
  -webkit-animation: fall-medium 6s linear infinite;
          animation: fall-medium 6s linear infinite;
}
.snow-container .snow.large {
  font-size: 2.56rem;
  opacity: 0.6;
}
.snow-container .snow.large span {
  left: -10%;
  -webkit-animation: fall-large 5s linear infinite;
          animation: fall-large 5s linear infinite;
}
.snow-container .snow.large::before {
  left: -35%;
  -webkit-animation: fall-large 6s linear infinite;
          animation: fall-large 6s linear infinite;
}
.snow-container .snow.large::after {
  left: 35%;
  -webkit-animation: fall-large 7s linear infinite;
          animation: fall-large 7s linear infinite;
}

@-webkit-keyframes fall-small {
  0% {
    top: -20px;
  }
  3%, 7% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  18%, 22% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  38%, 42% {
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  58%, 62% {
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  78%, 82% {
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  100% {
    top: calc(100% + 20px);
  }
}

@keyframes fall-small {
  0% {
    top: -20px;
  }
  3%, 7% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  18%, 22% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  38%, 42% {
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  58%, 62% {
    -webkit-transform: translateX(-13px);
            transform: translateX(-13px);
  }
  78%, 82% {
    -webkit-transform: translateX(13px);
            transform: translateX(13px);
  }
  100% {
    top: calc(100% + 20px);
  }
}
@-webkit-keyframes fall-medium {
  0% {
    top: -200px;
  }
  3%, 7% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  18%, 22% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  38%, 42% {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
  58%, 62% {
    -webkit-transform: translateX(-18px);
            transform: translateX(-18px);
  }
  78%, 82% {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
  100% {
    top: calc(100% + 20px);
  }
}
@keyframes fall-medium {
  0% {
    top: -200px;
  }
  3%, 7% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  18%, 22% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  38%, 42% {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
  58%, 62% {
    -webkit-transform: translateX(-18px);
            transform: translateX(-18px);
  }
  78%, 82% {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
  100% {
    top: calc(100% + 20px);
  }
}
@-webkit-keyframes fall-large {
  0% {
    top: -300px;
  }
  3%, 7% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  18%, 22% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  38%, 42% {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
  58%, 62% {
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
  78%, 82% {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
  100% {
    top: calc(100% + 20px);
  }
}
@keyframes fall-large {
  0% {
    top: -300px;
  }
  3%, 7% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  18%, 22% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  38%, 42% {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
  58%, 62% {
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
  78%, 82% {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
  100% {
    top: calc(100% + 20px);
  }
}
[data-aos=text-expand] {
  letter-spacing: -0.5em;
  -webkit-filter: blur(12px);
          filter: blur(12px);
  opacity: 0;
}
[data-aos=text-expand].aos-animate {
  -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

[data-aos=fade-in] {
  opacity: 0;
}
[data-aos=fade-in].aos-animate {
  -webkit-animation: fade-in 1.5s ease-in-out forwards;
          animation: fade-in 1.5s ease-in-out forwards;
}

@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    letter-spacing: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    letter-spacing: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes step-rotate {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@keyframes step-rotate {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon {
    top: 123px !important;
  }
}