/* -----------------------
  point02
----------------------- */
.point02 {
  position: relative;
  overflow: hidden;
}

.point02 .loop{
  top: min(calc(70/ 750 * 100vw), 70px);
  z-index: 2;
}

.point02 .loop > p {
  flex-shrink: 0;
  width: min(calc(1255/ 750 * 100vw), 1255px);
}


.point02::before,
.point02::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: 0;
}

.point02::before {
  background: url(../img/point02_bg_b.png) no-repeat top center/ 100%;
}

.point02.is-anim::before {
  opacity: 0;
  transition: opacity 1.4s ease 2.4s;
}

.point02::after {
  background: url(../img/point02_bg_a.png) no-repeat top center/ 100%;
  clip-path: inset(100% 0 0 0);
  opacity: 0; 
  visibility: hidden;  
}

.point02.is-anim::after {
  opacity: 1;
  visibility: visible;
}

.point02_a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.point02_pic .point02_pic li {
  width: min(calc(580/750 * 100vw), 580px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.point02_support {
  position: absolute;
  width: min(calc(360/750 * 100vw), 360px);
  top: min(calc(3/750 * 100vw), 3px);
  left: 25%;
  transform: translateX(-50%);
  z-index: 2;
  animation: support_rotate 8s linear infinite;
}


  @keyframes support_rotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
  }

.point02_circle li{
  z-index: -1;
}

.point02_circle li:nth-child(1) {
  position: absolute;
  bottom: min(calc(60/750 * 100vw), 60px);
  right: min(calc(320/750 * 100vw), 320px);
  width: min(calc(70/750 * 100vw), 70px);
}

.point02_circle li:nth-child(2) {
  position: absolute;
  bottom: min(calc(88/750 * 100vw), 88px);
  left: max(calc(-45/750 * 100vw), -45px);
  width: min(calc(200/750 * 100vw), 200px);
}

.point02_circle li:nth-child(3) {
  position: absolute;
  top: max(calc(-45/750 * 100vw), -45px);
  right: min(calc(62/750 * 100vw), 62px);
  width: min(calc(144/750 * 100vw), 144px);
}

.point02_circle li:nth-child(4) {
  position: absolute;
  bottom: max(calc(-90/750 * 100vw), -90px);
  right: min(calc(68/750 * 100vw), 68px);
  width: min(calc(290/750 * 100vw), 290px);
}

@keyframes p02-bgWipeUp {
  0% {
    clip-path: inset(100% 0 0 0)
  }

  100% {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes p02-sectionIn {
  0% {
    opacity: 0;
    transform: translateY(12px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes p02-floatSoft {
  0% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-6px) scale(1.02)
  }

  100% {
    transform: translateY(0) scale(1)
  }
}

@keyframes p02-numSlideIn {
  0% {
    transform: translateX(40vw);
    opacity: 0
  }

  100% {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes p02-ttlReveal {
  0% {
    clip-path: inset(0 0 100% 0)
  }

  100% {
    clip-path: inset(0 0 0 0)
  }
}

@keyframes p02-ttlHide {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  100% {
    opacity: 0;
    transform: translateY(-8px)
  }
}

.point02 .point_ttl img {
  display: block;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path, opacity, transform;
}

.point02 .point_num>p:first-child img {
  transform: translateX(40vw);
  opacity: 0;
}

.point02.is-anim::after {
  animation: p02-bgWipeUp 0.9s cubic-bezier(.2, .8, .2, 1) 1.5s forwards;
}

.point02.is-anim .point02_a {
  animation: p02-sectionIn 0.7s ease 1.5s forwards;
  pointer-events: auto;
}


.point02.is-anim .point_num>p:first-child img {
  animation: p02-numSlideIn .8s cubic-bezier(.2, .8, .2, 1) 0s forwards;
}

.point02.is-anim .point_ttl img {
  animation: p02-ttlReveal 0.8s cubic-bezier(.2, .8, .2, 1) 0.5s forwards,
    p02-ttlHide 0.6s ease 3s forwards;
}

.point02.is-anim .point02_circle li:nth-child(1) {
  animation: p02-floatSoft 3.2s ease-in-out 0s infinite;
  z-index: 2;
}

.point02.is-anim .point02_circle li:nth-child(2) {
  animation: p02-floatSoft 3.2s ease-in-out .4s infinite;
}

.point02.is-anim .point02_circle li:nth-child(3) {
  animation: p02-floatSoft 3.2s ease-in-out .8s infinite;
}

.point02.is-anim .point02_circle li:nth-child(4) {
  animation: p02-floatSoft 3.2s ease-in-out 1.2s infinite;
}

/* 戻るアニメーション */
@keyframes p02-resetBg {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

.point02.is-reset::after {
  opacity: 1;
  visibility: visible;
  animation: p02-resetBg 0.6s cubic-bezier(.4,.0,.2,1) forwards;
}

.point02.is-reset .point_num>p:first-child img {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: translateX(40vw);
  opacity: 0;
}

.point02.is-reset .point_ttl img {
  transition: clip-path 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translateY(12px);
}
