/* lp-stampquest */
#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;
}

/** 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);
    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: 370px;
    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;
  }
  .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: #00aec7;
    background: linear-gradient(200deg,#00aec7 0%, #a42af9 100%);
    z-index: -1;
  }
  .contents-bg img {
    position: fixed;
    top: 0;
    left: 0;
    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 .mv-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.lp-mv .title-sub {
  margin: 0;
  background: #00aec7;
  background: linear-gradient(225deg, #00aec7 0%, #a42af9 100%);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0% 100%);
}
.lp-mv .title-main {
  margin: -6.67% 0 0;
}
.lp-mv .chara {
  margin: -2.4% 0 0;
}
.lp-mv .schedule {
  margin: 3.13% 0 0;
}

.lp-mv .title-sub img,
.lp-mv .title-main,
.lp-mv .chara,
.lp-mv .schedule {
  opacity: 0;
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.lp-mv .title-sub img {
  transform: translate(-5%, 10%);
  transition-delay: 0.15s;
}
.lp-mv .title-main {
  transform: scale(0.8, 0.35) translateY(65%);
  transition-delay: 0.3s;
}
.lp-mv .chara {
  transform: scale(0.85) translate(5%, 15%);
  transition-delay: 0.5s;
}
.lp-mv .schedule {
  transform: scale(0.8) translateY(30%);
  transition-delay: 0.7s;
}
body.lp-loaded .lp-mv.active .title-sub img,
body.lp-loaded .lp-mv.active .title-main,
body.lp-loaded .lp-mv.active .chara,
body.lp-loaded .lp-mv.active .schedule {
  opacity: 1;
  transform: none;
}

.lp-intro {
  position: relative;
  padding-top: 14.67%;
  padding-bottom: 23.2%;
  margin-top: -16.8%;
}
.lp-intro .inner {
  position: relative;
}
.lp-intro .text {
  position: relative;
  opacity: 0;
  transform: translate(-15%, 15%);
  z-index: 10;
  transition: opacity .6s .15s var(--easing) ,transform .6s .15s var(--easing);
}
.lp-intro .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity .3s .5s ease ,transform .3s .5s ease;
}
.lp-intro .inner.active .text,
.lp-intro .inner.active .bg {
  transform: none;
  opacity: 1;
}
.lp-intro::before,
.lp-intro::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-intro::before {
  background-color: #409;
  z-index: 1;
}
.lp-intro::after {
  background: #fff;
  background: linear-gradient(149deg, #acdbd7 0%, #e9f8fa 33%, #ffffff 100%);
  z-index: 2;
}
/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  .lp-intro::before {
    clip-path: polygon(0 0, 100% 72px, 100% 100%, 0 100%);
  }
  .lp-intro::after {
    clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
  }
}
/** smartphone **/
@media screen and (max-width: 750px) {
  .lp-intro::before {
    clip-path: polygon(0 0, 100% calc(0% + 16.8vw), 100% 100%, 0 100%);
  }
  .lp-intro::after {
    clip-path: polygon(0 calc(0% + 16.8vw), 100% 0, 100% 100%, 0 100%);
  }
}

.lp-howto {
  position: relative;
  padding-top: 24.4%;
  padding-bottom: 27.73%;
  margin-top: -16.8%;
  z-index: 10;
}
.lp-howto .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #a42af9;
  z-index: -1;
  pointer-events: none;
}
.lp-howto .bg > span {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lp-howto .bg img {
  display: block;
  width: 100%;
}
.lp-howto .bg .obj._first {
  margin-top: 28.26%;
}
.lp-howto .bg .obj._second {
  margin-top: 842.26%;
}
/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  .lp-howto .bg {
    clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
  }
}
/** smartphone **/
@media screen and (max-width: 750px) {
  .lp-howto .bg {
    clip-path: polygon(0 calc(0% + 16.8vw), 100% 0, 100% 100%, 0 100%);
  }
}

.howto-title {
  position: relative;
  margin: 0 0 -7.2%;
}
.howto-title .chara {
  position: absolute;
  width: 29.46%;
  left: 35.46%;
  bottom: 100%;
  margin-bottom: -1.86%;
  opacity: 0;
  transform: translateX(20%);
  transition: opacity .5s .3s var(--easing), transform .5s .3s var(--easing);
}
.howto-title .text {
  display: block;
  width: 41.33%;
  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 {
  margin-bottom: 2.8%;
}
.howto-num1 .title {
  position: relative;
  margin-bottom: -3.8%;
  z-index: 3;
}
.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 {
  margin-bottom: 8.8%;
}
.howto-num2 .title {
  margin: 0 auto 3.2%;
}
.howto-num2 .code {
  margin-bottom: -8.86%;
}
.howto-num2 .code img {
  opacity: 0;
  transform: translate(-20%, 10%);
  transition: opacity .3s .2s ease, transform .3s .2s ease;
}
.howto-num2 .code.active img {
  opacity: 1;
  transform: none;
}
.howto-num2 .scanflow {
  margin: 0;
  padding: 0;
  list-style: none;
}
.howto-num2 .scanflow .flow2 {
  position: relative;
  margin: 1.33% auto 4.26%;
}
.howto-num2 .scanflow .app-bnrs {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  top: 0;
  margin-top: 220.53%;
}
.howto-num2 .scanflow .app-bnrs .bnr-appstore {
  width: 35.73%;
  margin-right: 2.13%;
}
.howto-num2 .scanflow .app-bnrs .bnr-googleplay {
  width: 44.4%;
}
@media (any-hover: hover) {
  .howto-num2 .app-bnrs a img {
    transition: opacity .3s ease-in-out;
  }
  .howto-num2 .app-bnrs a:hover img {
    opacity: .65;
  }
}

.howto-num3 .title {
  margin: 0 auto 6.06%;
}
.howto-num3 .lvup-title {
  position: relative;
  margin-bottom: -3.53%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .8s var(--easing);
}
.howto-num3 .lvup-title.active {
  clip-path: inset(0);
}
.howto-num3 .lpup-img {
  position: relative;
  margin-bottom: 2.67%;
}
.howto-num3 .lpup-img img {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity .5s var(--easing), transform .5s var(--easing);
}
.howto-num3 .lpup-img img:nth-child(n+2) {
  position: absolute;
  left: 0;
  top: 0;
}
.howto-num3 .lpup-img img:nth-child(2) {
  transform: translateX(-5%);
  transition-delay: 0.3s;
}
.howto-num3 .lpup-img img:nth-child(3) {
  transition-delay: 0.6s;
}
.howto-num3 .lpup-img.active img {
  opacity: 1;
  transform: none;
}
.howto-num3 .text-1 {
  margin-bottom: 3.53%;
}
.howto-num3 .text-2 {
  margin-bottom: 10.67%;
}
.howto-num3 .gift {
  width: 80%;
  margin: 0 auto;
}

.lp-more {
  position: relative;
  margin-top: -16.53%;
  padding-top: 16.53%;
  padding-bottom: 10.66%;
  z-index: 10;
}
.lp-more .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lp-more .bg::before,
.lp-more .bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.lp-more .bg::before {
  background-color: #409;
  z-index: 1;
}
.lp-more .bg::after {
  background-color: #4c33bd;
  z-index: 2;
}
.lp-more .inner {
  position: relative;
  z-index: 5;
}
.lp-more .title {
  margin: 0 0 3.46%;
  opacity: 0;
  transform: translate(-10%, 15%);
  transition: opacity .6s var(--easing) ,transform .6s var(--easing);
}
.lp-more .title.active {
  opacity: 1;
  transform: none;
}
.lp-more .list {
  width: 92%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.lp-more .list > li + li {
  margin-top: 3.86%;
}
.lp-more .note {
  margin-top: 1.5em;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  font-feature-settings: "palt";
  line-height: 1.2;
}
/** pc and tablet **/
@media print,screen and (min-width: 751px) {
  .lp-more .bg::before {
    clip-path: polygon(0 0, 100% 72px, 100% 100%, 0 100%);
  }
  .lp-more .bg::after {
    clip-path: polygon(0 72px, 100% 0, 100% 100%, 0 100%);
  }
  .lp-more .note {
    font-size: 11.46px;
  }
}
/** smartphone **/
@media screen and (max-width: 750px) {
  .lp-more .bg::before {
    clip-path: polygon(0 0, 100% calc(0% + 16.53vw), 100% 100%, 0 100%);
  }
  .lp-more .bg::after {
    clip-path: polygon(0 calc(0% + 16.53vw), 100% 0, 100% 100%, 0 100%);
  }
  .lp-more .note {
    font-size: 2.67vw;
  }
}

.lp-footer {
  position: relative;
}
.lp-footer .footer-main {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 9.33%;
  width: 100%;
}
.lp-footer .title {
  margin: 0 auto 2.67%;
}
.lp-footer .footer-btn {
  width: 82.67%;
  margin: 7.73% 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.4);
  }
}