
@charset "UTF-8";

/*リセットcss*/
*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: sans-serif;
}

body{
    min-height: 100vh;
    position: relative;
}



/*フッダー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

footer{
    display: block;
    background-color: #727970;
    font-size: 12px;
    color: aliceblue;
    line-height: 25px;
    position: sticky;
    top: 100%;
}

footer p{
    width: 100%;
    text-align: center;
}



