@charset "utf-8";
/*------------------------------------------
　pucca（プッカ） ＜PC / SP用＞ common.css
--------------------------------------------*/
/* ------ ▽ ローディング ▽ ------ */
#loading{
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background: url(/sweets/chocolate/pucca/common/images/bg_character.png), #fee377;
background-repeat: repeat, repeat;
background-position: center top, center center;	
}
#loading img{
position: absolute;
top: calc(50% - 100px);
left: calc(50% - 100px);
-webkit-animation:blink 2s ease-in-out infinite alternate;
-moz-animation:blink 2s ease-in-out infinite alternate;
animation:blink 2s ease-in-out infinite alternate;
}
/* 点滅 */
@-webkit-keyframes blink{
0%{opacity: 0;}
50%{opacity: 1;}
100%{opacity: 1;}
}
@-moz-keyframes blink{
0%{opacity:0;}
50%{opacity:1;}
100%{opacity:1;}
}
@keyframes blink{
0%{opacity:0;}
50%{opacity:1;}
100%{opacity:1;}
}