/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 06 2024 | 20:58:14 */
/** 大きいボタンをキラキラさせる */
.btn-wrap.big a{
  display: block;
  position: relative;
  overflow: hidden;
}
.btn-wrap.big a:after{
  content: "";
  display: block;
  width: 30px; height: 200px;
  position: absolute;
  left: -30%; top: 50%;
  background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255, .8) 50%,rgba(255,255,255,0) 100%);
  background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,.8)),color-stop(100%,rgba(255,255,255,0)));
  transform: rotate(45deg) translateY(-60%);
  -webkit-transform: rotate(45deg) translateY(-60%);
  animation: shine 3s infinite linear;
  -webkit-animation: shine 3s infinite linear;
}
@keyframes shine {
  0% { left: -30%; }
  25% { left: 130%; }
  100% { left: 130%; }
}
@-webkit-keyframes shine {
  0% { left: -30%; }
  25% { left: 130%; }
  100% { left: 130%; }
}