/*-----------------------------------------
**
** POP UP / NOTE
**
-----------------------------------------*/
html,body {
	background: url(../img/bg.jpg) top center;
	background-size: cover;
	background-attachment: fixed;
	color: #000;
	font-size: 12px;
	position: relative;
	min-height: 100%;
}
#wrap {
	width: 100%;
	padding: 90px 50px 50px;
}
.__inner {
	width: 100%;
	height: 100%;
	position: relative;
	border: solid 4px #000;
	padding: 30px;
}
.__head {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
	float: none;
}
.__head > img {
	width: 32%;
	border: solid 4px #000;
	box-sizing: border-box;
	margin-right: 2%;
	float: left;
}
h2 {
	margin: 0;
	display: inline-block;
	width: 45%;
	position: relative;
	min-height: 50px;
}
h2 img{
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
p{
	font-weight: 500;
	display: block;
	margin: 0;
}

@media screen and (max-width:640px) {
	html,body {
		background: url(../img/bg_sp.jpg) top center;
		background-size: cover;
		background-attachment: fixed;
	}
	#wrap {
		padding: 0;
	}
	.__inner {
		border: none;
		padding: 85px 5% 5%;
		letter-spacing: -.4em;
		height: auto;
	}
	.__head {
		width: 100%;
		height: auto;
		margin-bottom: 30px;
		position: relative;
	}
	.__head > img {
		width: 90%;
		margin: 0 auto;
		display: block;
		float: none;
		margin-top: 30px;
	}
	h2 {
		width: 100%;
	}
	h2 img{
		width: 100%;
	}
	p{
		display: inline-block;
		width: 100%;
		margin-left: 0;
		letter-spacing: normal;
	}
}

