/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 13 2026 | 01:01:46 */
.stamp-in{
  opacity: 0;
  transform: scale(0.98) rotate(-0.1deg);
  transform-origin: center;
  transition: none;
  will-change: transform, opacity;
}

.stamp-in.is-show{
  animation: stampPop 0.9s cubic-bezier(1,1,1,1) forwards;
}

/* 遅延を受け取る変数 */
.stamp-in.is-show{
  animation:
    stampPop 0.9s cubic-bezier(1,1,1,1) forwards;
  animation-delay: var(--stamp-delay, 0s);
}

@keyframes stampPop{
  0%{
    opacity:0;
    transform:scale(0.98) rotate(-0.1deg);
  }
  55%{
    opacity:1;
    transform:scale(1) rotate(0deg);
  }
  75%{
    transform:scale(0.98) rotate(0.1deg);
  }
  100%{
    opacity:1;
    transform:scale(1) rotate(0deg);
  }
}