body {
	font-family: 'NotoSansJP', sans-serif !important;
	font-weight: 400;
}

p{
	font-size: 14px;
	font-size: 1.4rem;
	line-height:1.7142;
}

#wrap{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 174px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}
#wrap footer{
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
    width: 100%;
}
@media only screen and (max-width:767px){
    #wrap{
        padding-bottom: 288px;/*←footerの高さ*/
    }
}