/*@include keyframes(movebg){
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 465px;
    }
}
body{ background:url("../img/festa_bg.png") repeat #fff;
@include animation(movebg 5s linear infinite);
	@media screen and (max-width: 749px){background-size: contain;}
}*/
@-webkit-keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
@-moz-keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
@keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
#pc_menu li a:hover img, .contents-area nav a:hover img, figure a:hover img, #page-top a:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  -moz-animation: flash 1.5s;
  animation: flash 1.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }
