@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Sono:wght@600&display=swap');/*Google Fonts Sono*/

/* フッター */
#Footer{
    position: sticky;
    z-index: 999;
    top: 930px;
    left: auto;
    width: 1200px;
    height: 25px;
    color: #4dabff;
    text-align: center;
    font-size: x-small;
	background: rgba(255,255,255,0.9);
	display: grid;
    place-items: center;
    transition: all 1.0s;
}
#Footer:hover{
	color: #ffffff;
    background: rgba(0,0,0,0.7);
}