/* lp-welcomeprogram2026 */
#findGymFixed, #navFixed {
  pointer-events: none;
  opacity: 0;
  z-index: -999em;
  visibility: hidden;
}
#navFixed {
  display: none;
}

/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  .only-sp {
    display: none;
  }
}
/** smartphone **/
@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}

#lpContents {
  position: relative;
  text-align: center;
  clip-path: inset(0);
  background-color: #6e38d5;
  z-index: 1;
  --easing: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
#lpContents * {
  box-sizing: border-box;
}
#lpContents img {
  vertical-align: bottom;
}
#lpContents img[src$="svg"] {
  display: block;
  width: 100%;
  height: auto;
}
#lpContents::before {
  content: "";
  display: block;
  position: fixed;
  left: calc(50% - 25px);
  top: calc(50vh - 25px);
  top: calc(50svh - 25px);
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#fff7eb 94%,#0000) top/6px 6px no-repeat,
    conic-gradient(#0000 30%,#fff7eb);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: loading 1s infinite linear;
  z-index: 10;
}
.lp-main-contents {
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s ease-in-out;
}
@keyframes loading{ 
  100%{transform: rotate(1turn)}
}
body.lp-loaded #lpContents {
  background-color: transparent;
}
body.lp-loaded #lpContents::before {
  display: none;
}
body.lp-loaded .lp-main-contents {
  opacity: 1;
}

.contents-bg {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.contents-bg::before {
  content: "";
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6e38d5;
  background: linear-gradient(200deg,#6e38d5 0%, #591cb7 100%);
  z-index: -1;
}

/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  #lpContents {
    display: flex;
    align-items: flex-start;
  }
  .lp-main-contents {
    width: 430px;
    order: 2;
  }
  .lp-side-contents {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: calc(100vh - 120px); */
    height: 100vh;
    width: calc(50% - 215px);
    opacity: 0;
    transition: opacity .3s ease-in-out;
  }
  body.lp-loaded .lp-side-contents {
    opacity: 1;
  }
  .lp-side-contents_inner {
    width: 88%;
  }
  .side-cp-title {
    max-width: 350px;
    margin: 0 auto;
  }
  .lp-side-contents._left {
    order: 1;
    left: 0;
  }
  .lp-side-contents._right {
    order: 3;
    right: 0;
  }
  .lp-side-contents .qr {
    width: 80%;
    max-width: 180px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
  }
  .lp-side-contents .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }
  .lp-side-contents .bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* animation */
.js-scrView._fadeIn {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
.js-scrView.active._fadeIn {
  opacity: 1;
}
.js-scrView._fadeUp {
  opacity: 0;
  transform: translateY(10vw);
  transition: opacity .5s .15s var(--easing), transform .5s .15s var(--easing);
}
.js-scrView.active._fadeUp {
  opacity: 1;
  transform: none;
}
/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  .js-scrView._fadeUp {
    transform: translateY(50px);
  }
  .js-scrView.active._fadeUp {
    transform: none;
  }
}

.lp-mv {
  position: relative;
}
.lp-mv img {
  display: block;
}
.lp-mv .title-main {
  margin: 0;
  opacity: 0;
  filter: blur(16px);
  transition: opacity .6s ease-in-out, filter .6s ease-in-out;
}
body.lp-loaded .lp-mv.active .title-main {
  opacity: 1;
  filter: none;
}

.lp-intro {
  position: relative;
  background: #ded7ea;
  background: linear-gradient(0deg, #ded7ea 0%, #e9ebf6 100%);
}
.lp-intro .mark {
  position: absolute;
  right: 0;
  top: 0;
  width: 21.46%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity .6s var(--easing) ,transform .6s var(--easing);
  z-index: 1;
}
.lp-intro .mark.active {
  transform: none;
  opacity: 1;
}
.lp-intro .text > * {
  position: relative;
  opacity: 0;
  transition: opacity .6s .3s var(--easing) ,transform .6s .3s var(--easing);
  z-index: 10;
}
.lp-intro .text .q {
  transform: translate(-15%, 15%);
}
.lp-intro .text .a {
  transition-delay: .6s;
  transform: translate(0, 25%);
}
.lp-intro .text .get {
  transition-delay: 1s;
  transform: scale(1.6);
}
.lp-intro .text.active > * {
  transform: none;
  opacity: 1;
}

.lp-howto {
  position: relative;
  padding: 15.2% 0 5.46%;
  background-color: #6e38d5;
  z-index: 10;
}
.lp-howto .bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.howto-title {
  position: relative;
  padding-top: 25.46%;
  margin: 0;
}
.howto-title .chara {
  position: absolute;
  width: 32.8%;
  left: 35.2%;
  top: 0;
  opacity: 0;
  transform: translate(20%, -15%) scale(0.9, 1.1);
  transition: opacity .5s .3s var(--easing), transform .5s .3s var(--easing);
}
.howto-title .text {
  display: block;
  width: 40.4%;
  margin: 0 auto;
  opacity: 0;
  transform: scaleY(0.5) translateY(75%);
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.howto-title.active .chara,
.howto-title.active .text {
  transform: none;
  opacity: 1;
}
.howto-num1 .title {
  margin: 0;
}
.howto-num1 .cont {
  position: relative;
}
.howto-num1 .cont .line-btn {
  position: absolute;
  width: 36.53%;
  top: 0;
  right: 8.86%;
  margin-top: 15.73%;
}
@media (any-hover: hover) {
  .howto-num1 .cont .line-btn a {
    transition: filter .3s ease-in-out;
  }
  .howto-num1 .cont .line-btn a:hover {
    filter: brightness(1.15);
  }
}

.howto-num2 {
  position: relative;
  padding: 3.73% 0 25.6%;
  margin-bottom: -20%;
  z-index: 5;
  background-color: #591cb7;
}
.howto-num2::before,
.howto-num2::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  padding-bottom: 12.8%;
  z-index: -1;
  background-color: #6e38d5;
}
.howto-num2::before {
  top: -1px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.howto-num2::after {
  bottom: -1px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.howto-num2 .title {
  margin: 0 auto 3.2%;
}
.howto-num2 .point-list {
  margin: 0;
  padding: 0;
}
.howto-num2 .point-list > li {
  margin-top: 3.2%;
}

.howto-num3 {
  position: relative;
  z-index: 10;
}
.howto-num3 .title {
  margin: 0;
}
.howto-num3 .present {
  width: 96%;
  margin: 0 auto;
}
.howto-num3 .present-title {
  margin: 0;
  background-color: #591cb7;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
  transform: scale(0.9, 0.2) translateY(80%);
  opacity: 0;
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.howto-num3 .present-title img {
  display: block;
  width: 100%;
}
.howto-num3 .present-title.active {
  opacity: 1;
  transform: none;
}
.howto-num3 .present-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 2.2%;
  background-color: #00aec7;
}
.howto-num3 .present-list > li {
  width: 49.17%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.howto-num3 .present-list > li:nth-of-type(n+3) {
  margin-top: 1.66%;
}
.howto-num3 .present-list.active > li:nth-of-type(2) { transition-delay: .2s; }
.howto-num3 .present-list.active > li:nth-of-type(3) { transition-delay: .4s; }
.howto-num3 .present-list.active > li:nth-of-type(4) { transition-delay: .6s; }
.howto-num3 .present-list.active > li {
  opacity: 1;
  transform: none;
}

.lp-footer {
  position: relative;
}
.lp-footer .footer-main {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 11.6%;
  width: 100%;
}
.lp-footer .title {
  margin: 0 auto 7%;
}
.lp-footer .footer-btn {
  width: 83.2%;
  margin: 7.14% auto 0;
}
@media (any-hover: hover) {
  .lp-footer .footer-btn a {
    transition: filter .3s ease-in-out;
  }
  .lp-footer .footer-btn a:hover {
    filter: brightness(1.15);
  }
}