背景画像をフェードイン
#key {
width: 100%;
height: 599px;
background: url(images/key.jpg) no-repeat center top;
animation: fadein 3s ease-out forwards;
}
@keyframes fadein {
0% {
opacity: 0
}
100% {
opacity: 1
}
}