
html{
    width: 100%;
	height: 100%;
	touch-action: manipulation;/*ダブルタップでの拡大無効*/

    outline:1px solid red;
}

body {
    width: 100%;
    margin: 0;
    font-family: -apple-system;
    background: #f5f8fa;
    overflow-y: scroll;
}



/*===================================================================================================
## コンテナ
===================================================================================================*/
.container{
    width: 100%;
}



/*===================================================================================================
## フッター
===================================================================================================*/

#footer{
    position: relative;
    bottom:0px;
    width:100%;
    height: 55px;
    background-color: rgb(223, 223, 223);
    align-items: center;
    padding-top: 20px;
    z-index: 100;
}
#footer #copyright{
    text-align: center;
    font-size: 15px;
}

#footer #contact{
    text-align: center;
    font-size: 15px;
}

