@charset 'utf-8';

.ani {
  opacity: 0;
}

.ani.move.fadein{
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}




.ani.move.zoomin {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.ani.move.slidein {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}



/* 光るボタン */
.s-btn1 a {
    display: block;
    /*width: 50%;
    background: #2ca9e1;
    box-shadow: 0 3px 0 0 #0095d9;
    text-align: center;
    padding: 10px;
    background: #2ca9e1;
    color: #ffffff;*/
    text-decoration: none;
    margin-right: auto;
    margin-left: auto;
    /*border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;*/
    font-weight: bold;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.s-btn1 a::before {
    content: '';
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    animation-delay:0s; 
    animation: s-btn1 4s ease-in-out infinite;
    display: inline-block;
}

s-btn1 a:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}

@-webkit-keyframes s-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



