@charset "UTF-8";
/*キラッと光るボタン:オレンジ*/
.wf-roundedmplus1c { font-family: "Rounded Mplus 1c";font-weight: 800; }

/*kirabutton03*/
.kirabutton03{
    display: block;
    width: 70%;
    margin: 20px auto;
    border-bottom: 8px solid #993B30;
    border-radius: 10px;
    background: linear-gradient(#FF9500, #FF5E3A);
    background-color: #FF9500;
    color: #ffffff;
    padding: 20px 10px;
    font-size:30px;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}
.kirabutton03:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 30px;
    height: 200px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 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,1)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
    animation: KiraKira3 3s infinite linear;
    -webkit-animation: KiraKira3 3s infinite linear;
    -moz-animation: KiraKira3 3s infinite linear;
}
@keyframes KiraKira3 {
    0% {left: -30%;}
    20% {left: 120%;}
    100% {left: 120%;}
}
@-webkit-keyframes KiraKira3 {
    0% {left: -30%;}
    20% {left: 120%;}
    100% {left: 120%;}
}
@-moz-keyframes KiraKira3 {
    0% {left: -30%;}
    20% {left: 120%;}
    100% {left: 120%;}
}
@media only screen and (max-width: 480px) {
.kirabutton03{
    width: 90%;
    font-size:24px;
    }
}
/*キラッと光るボタン:オレンジEND*/

/* ふわふわ動くボタン */

.btnAnime01 {
    -webkit-animation-name:btnAnime02;
    -webkit-animation-duration:1s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease;
    
    -moz-animation-name:btnAnime02;
    -moz-animation-duration:1s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:ease;
}
@-webkit-keyframes btnAnime02 {
    0% {-webkit-transform:translate(0, 0);}
    50% {-webkit-transform:translate(0, -8px);}
    100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes btnAnime02 {
    0% {-moz-transform:translate(0, 0);}
    50% {-moz-transform:translate(0, -8px);}
    100% {-moz-transform:translate(0, 0);}
}
/* ふわふわ動くボタン */