@charset "utf-8";
/* CSS Document */

/* 点滅 */
.blinking{
/*    -webkit-animation:blink 0.8s ease-in-out infinite alternate;
    -moz-animation:blink 0.8s ease-in-out infinite alternate;
    animation:blink 0.8s ease-in-out infinite alternate;*/
    -webkit-animation:background-change 2.0s linear infinite;
    -moz-animation:background-change 2.0s linear infinite;
    animation: background-change 2.0s linear infinite;
}
/*
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
*/
@-webkit-keyframes background-change {
    0%,100% {
        background-color:#ff0000;
    }
    30%,70% {
        background-color:#ed6d00;
    }
}
@-moz-keyframes background-change{
    0%,100% {
        background-color:#ff0000;
    }
    30%,70% {
        background-color:#ed6d00;
    }
}
@keyframes background-change{
    0%,100% {
        background-color:#ff0000;
    }
    30%,70% {
        background-color:#ed6d00;
    }
}