body {
	position: relative;
	overflow-x: hidden;
}
.page {
    position: absolute;
    left: 50%;
    margin: 0 auto;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);

    /* ↓↓↓ ここにPCの画像サイズを記入してください ↓↓↓ */
    width: 1500px;
}


.page.spVer {
	/* ↓↓↓ ここにSPの画像サイズを記入してください ↓↓↓ */
    width: 760px;
}
.header {
	position: fixed;
	top: 0;
}
.footer {
	position: fixed;
	bottom: 0;
}
.btn {
	position: fixed;
	bottom: 0px;
}
@media screen and (max-width:768px) {
	.page {
		width: 100%;
	}
	.page.spVer {
	    width:380px;
	}
}
