/*-----------------------------------------
**
** POP UP / NOTE
**
-----------------------------------------*/
html,body {
	background: url(../img/bg.jpg) top center;
	background-size: cover;
	background-attachment: fixed;
	color: #000;
	font-size: 14px;
	position: relative;
}
#wrap {
	width: 100%;
}
#close{
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2;
	width: 80px;
}
.__inner {
	width: 100%;
	height: 100%;
	padding: 50px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
h2 {
	margin-bottom: 5%;
}
h2 img{
	height:20px;
}
.photo{
	width: 100%;
	text-align: center;
	margin-bottom: 5%;
}
.photo img{
	width: 48.5%;
}
.photo img:nth-child(2){
	margin-left: 2%;
}
p{
	font-weight: 700;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
@media screen and (max-width:640px) {
	html,body {
		background: url(../img/bg_sp.jpg) top center;
		background-size: 100% auto;
		background-attachment: fixed;
	}
	.__inner {
		padding: 75px 5% 5%;
	}
	h2 img{
		height:auto;
		width: 100%;
	}
	.photo img:nth-child(2){
		margin-left: 0;
		margin-top: 2%;
	}
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	.photo img{
		width: 100%;
	}
}



















