body{
	margin: 0;
	background: url(../img/close_mv_bg@2x.jpg) top center no-repeat #000;
	background-size: 100%;
}
.wrapper{
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.img{
	height: auto;
}
.img-pc{
	width: 520px;
}
.img-sp{
	width: 290px;
	display: none;
}
@media screen and (max-width: 767px){
	body{
		background-image: url(../img/close_mv_bg_sp@2x.jpg);
	}
	.img-pc{
		display: none;
	}
	.img-sp{
		display: block;
	}
}