body{
    background-color: #FFF;
}
   
div.notfind {
    position:fixed;
    top:0;
    left:0;
    /*display:none;*/
    background:#fff;
    align-items:center;
    justify-content:center;
    width:100vw;
    height:100vh;
    z-index:999999;
}
div.notfind p {
	margin: 0;
	padding: 0;
	border: 0;
    vertical-align: bottom;
    max-width:400px;
    width:90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align:center;
    font-size:12px;
    font-family:'Helvetica Neue','Helvetica','Hiragino Sans','Hiragino Kaku Gothic ProN','Arial','Yu Gothic','Meiryo', sans-serif;
    align-items:center;
}


.fadeIn {
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@media screen and (max-width:480px){
    div.notfind img {width:70%;}
}
