@charset "UTF-8";

.fuwafuwa {
    position: absolute;
    width: clamp(calc(22px/3), calc(22/1440*100vw), 22px);
    height: clamp(calc(19px/3), calc(19/1440*100vw), 19px);
    animation-name: fuwafuwaMove;
    transition: transform 16s ease-in-out;
    animation-iteration-count: infinite;
    pointer-events: none;
    z-index: 0;
  }
  
  @keyframes fuwafuwaMove {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(18px, -22px); }
    50%  { transform: translate(-15px, 20px); }
    75%  { transform: translate(10px, -10px); }
    100% { transform: translate(0px, 0px); }
  
  }

@media screen and (min-width:1441px) {
    .fuwafuwa {
        width: 22px;
        height: 19px;
    }
}