@charset "utf-8";

/*PC用*/
@media screen and (min-width: 641px) {
  article {
    /* background: url(https://gigaplus.makeshop.jp/yanagiyaec/lp_assets/kinkagayaki/images/bg.mp4)no-repeat top center; 
    background-size: cover; */
  }



  article {
    background: #c6f5ff;
    background-size: 400% 400%;
    animation: GradientBackground 10s ease infinite;
  }

  @keyframes GradientBackground {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  video {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0 auto;
  }


}