@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
html,
body {
  overflow-x: hidden;
}

.p-tutorial {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1000px;
  margin-inline: auto;
  /* margin-block-start: 160px; */
  transform-origin: top left;
}
.p-tutorial__section {
  background-color: #eee;
  opacity: 0;
  width: 100%;
}
.p-tutorial__section.is-active {
  opacity: 1;
}
.p-tutorial__section:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.p-tutorial__section img {
  width: 100%;
  height: auto;
}
.p-tutorial__section img:nth-of-type(2) {
  position: absolute;
  inset: 0;
}

.is-active .flash-twice {
  animation: flash 1s ease-in-out 1;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-tutorial-bubble {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  border-radius: 9.6px;
  padding: 14.4px;
  opacity: 0;
  pointer-events: none;
  font-family: "Noto Sans JP", sans-serif;
  border: 2px solid #854de1;
}
.p-tutorial-bubble.is-active {
  opacity: 1;
  pointer-events: all;
  transition-property: opacity;
  transition-duration: 1s;
  transition-delay: 0.6s;
  transition-timing-function: ease;
}
.p-tutorial-bubble.is-01 {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 21.6px;
}
.p-tutorial-bubble.is-02 {
  top: 46%;
  right: 23.2%;
}
.p-tutorial-bubble.is-03 {
  top: 20.5%;
  right: 16.5%;
}
.p-tutorial-bubble.is-04 {
  top: 23%;
  right: 25%;
}
.p-tutorial-bubble.is-05 {
  top: 49%;
  right: 28%;
}
.p-tutorial-bubble.is-06 {
  top: 51%;
  right: 17%;
}
.p-tutorial-bubble.is-07 {
  top: 33%;
  right: 33%;
}
.p-tutorial-bubble.is-08 {
  top: 53%;
  right: 33%;
}
.p-tutorial-bubble.is-09 {
  top: 54%;
  right: 12.5%;
}
.p-tutorial-bubble.is-10 {
  top: 72%;
  right: 2%;
}
.p-tutorial-bubble.is-11 {
  top: 31%;
  right: 10%;
}
.p-tutorial-bubble.is-12 {
  top: 39%;
  right: 21%;
}
.p-tutorial-bubble.is-13 {
  top: 28%;
  right: 7%;
}
.p-tutorial-bubble.is-14 {
  top: 39%;
  right: 18%;
}
.p-tutorial-bubble.is-15 {
  top: 49%;
  right: 11%;
}
.p-tutorial-bubble.is-16 {
  top: 58%;
  right: 1%;
}
.p-tutorial-bubble.is-17 {
  top: 39%;
  right: 5%;
}
.p-tutorial-bubble.is-18 {
  top: 68%;
  right: 10%;
}
.p-tutorial-bubble.is-19 {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 21.6px;
}
.p-tutorial-bubble__title.is-large {
  text-align: center;
  font-size: 21.6px;
  color: #854de1;
}
.p-tutorial-bubble__title.is-color-black {
  color: #333;
}
.p-tutorial-bubble__note {
  line-height: 1.4;
}
.p-tutorial-bubble__note.is-large {
  margin-block-start: 9.6px;
  font-size: 16.8px;
  text-align: center;
}
.p-tutorial-bubble__note.is-medium {
  font-size: 14.4px;
}
.p-tutorial-bubble__button {
  font: inherit;
	color: inherit;
	background: none;
	border: none;
	border-radius: 0;
	appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #854de1;
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 100%;
  transition: all 0.2s ease;
}
.p-tutorial-bubble__button:hover {
  opacity: 0.5;
}
.p-tutorial-bubble__button img {
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  width: 5px;
}
.p-tutorial-bubble__button.is-large {
  margin-block-start: 14.4px;
  font-size: 12px;
  margin-inline: auto;
  height: 38.4px;
  max-width: 145.8px;
}
.p-tutorial-bubble__button.is-medium {
  font-size: 10.8px;
  height: 31.2px;
  max-width: 94.8px;
  width: 100%;
}
.p-tutorial-bubble__button__return {
  font: inherit;
	color: inherit;
	background: none;
	border: none;
	border-radius: 0;
	appearance: none;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.8px;
}
.p-tutorial-bubble__button__return img {
  width: 5px;
}
.p-tutorial-bubble__button__return:hover {
  opacity: 0.5;
}
.p-tutorial-bubble__button__list {
  margin-block-start: 9.6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-tutorial-bubble .c-arrow {
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 2px solid #854de1;
  border-bottom: 2px solid #854de1;
  border-bottom-right-radius: 2px;
  position: absolute;
  background-color: #fff;
}
.p-tutorial-bubble .c-arrow.is-bottom-center {
  bottom: -6.69px;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}
.p-tutorial-bubble .c-arrow.is-light-center {
  top: 50%;
  left: -6.5px;
  translate: 0 -50%;
  rotate: 135deg;
}
.p-tutorial-bubble .c-arrow.is-right-center {
  top: 50%;
  right: -6.7px;
  translate: 0 -50%;
  rotate: -45deg;
}
.p-tutorial-bubble .c-arrow.is-bottom-right {
  bottom: -6.6px;
  right: 56px;
  rotate: 45deg;
}

.p-tutorial-pointer {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: calc(infinity * 1px);
  background-color: #a9e14d;
  transition-property: top right;
  transition-duration: 1s;
  transition-delay: 0.2s;
  transition-timing-function: ease;
}
.p-tutorial-pointer.is-step-02 {
  top: 67.5%;
  right: 35.6%;
}
.p-tutorial-pointer.is-step-03 {
  top: 29.5%;
  right: 38.2%;
}
.p-tutorial-pointer.is-step-04 {
  top: 32%;
  right: 51%;
}
.p-tutorial-pointer.is-step-05 {
  top: 58.2%;
  right: 59.4%;
}
.p-tutorial-pointer.is-step-06 {
  top: 59.8%;
  right: 38%;
}
.p-tutorial-pointer.is-step-07 {
  top: 42.1%;
  right: 30.7%;
}
.p-tutorial-pointer.is-step-08 {
  top: 64.6%;
  right: 30.2%;
}
.p-tutorial-pointer.is-step-09 {
  top: 66.1%;
  right: 32.2%;
}
.p-tutorial-pointer.is-step-10 {
  top: 93%;
  right: 8%;
}
.p-tutorial-pointer.is-step-11 {
  top: 40.1%;
  right: 33.3%;
}
.p-tutorial-pointer.is-step-12 {
  top: 47.9%;
  right: 42.4%;
}
.p-tutorial-pointer.is-step-13 {
  top: 40.5%;
  right: 30.9%;
}
.p-tutorial-pointer.is-step-14 {
  top: 47.8%;
  right: 42.5%;
}
.p-tutorial-pointer.is-step-15 {
  top: 70.4%;
  right: 19.2%;
}
.p-tutorial-pointer.is-step-16 {
  top: 83.4%;
  right: 7%;
}
.p-tutorial-pointer.is-step-17 {
  top: 49.7%;
  right: 30.2%;
}
.p-tutorial-pointer.is-step-18 {
  top: 90.4%;
  right: 20.4%;
}
.p-tutorial-pointer.is-step-19 {
  opacity: 0;
}
.p-tutorial-pointer.is-step-02 {
  animation: fade02 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-02::before {
  animation: pointer-pulse02 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-03 {
  animation: fade03 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-03::before {
  animation: pointer-pulse03 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-04 {
  animation: fade04 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-04::before {
  animation: pointer-pulse04 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-05 {
  animation: fade05 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-05::before {
  animation: pointer-pulse05 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-06 {
  animation: fade06 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-06::before {
  animation: pointer-pulse06 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-07 {
  animation: fade07 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-07::before {
  animation: pointer-pulse07 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-08 {
  animation: fade08 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-08::before {
  animation: pointer-pulse08 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-09 {
  animation: fade09 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-09::before {
  animation: pointer-pulse09 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-10 {
  animation: fade10 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-10::before {
  animation: pointer-pulse10 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-11 {
  animation: fade11 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-11::before {
  animation: pointer-pulse11 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-12 {
  animation: fade12 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-12::before {
  animation: pointer-pulse12 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-13 {
  animation: fade13 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-13::before {
  animation: pointer-pulse13 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-14 {
  animation: fade14 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-14::before {
  animation: pointer-pulse14 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-15 {
  animation: fade15 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-15::before {
  animation: pointer-pulse15 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-16 {
  animation: fade16 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-16::before {
  animation: pointer-pulse16 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-17 {
  animation: fade17 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-17::before {
  animation: pointer-pulse17 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer.is-step-18 {
  animation: fade18 0.2s ease-out;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}
.p-tutorial-pointer.is-step-18::before {
  animation: pointer-pulse18 1.2s ease-out;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.p-tutorial-pointer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: calc(infinity * 1px);
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  border: 1px solid #a9e14d;
}

@keyframes pointer-pulse02 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse03 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade03 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse04 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade04 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse05 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade05 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse06 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade06 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse07 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade07 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse08 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade08 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse09 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade09 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse10 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade10 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse11 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade11 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse12 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse13 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade13 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse14 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade14 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse15 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade15 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse16 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade16 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse17 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade17 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pointer-pulse18 {
  0% {
    scale: 1;
    opacity: 1;
  }
  70% {
    scale: 1.7;
    opacity: 0;
  }
  100% {
    scale: 1.8;
    opacity: 0;
  }
}
@keyframes fade18 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */
