/*-----------------------------------------
**
** POP UP / NOTE
**
-----------------------------------------*/
html,body {
	background: #BFB500;
	color: #FFF100;
	position: relative;
	/*height: 100%;*/
	min-height: inherit;
}
#wrap{
	padding: 10% 5%;
	margin: 5% 7%;
	height: 100%;
	background: #000;
}
._photo{
	display: block;
	float: left;
	width: 230px;
}
._photo img{
	width: 100%;
}
._photo + ._name{
	margin-left: 260px;
}
h1{
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-style: italic;
	text-align: left;
	font-size: 50px;
	width: 100%;
}
h2 {
	font-family: YakuHanJP, 'Noto Sans Japanese', 'Nunito', sans-serif;
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	margin: 30px 0;
	font-style: normal;
}
._photo + ._name + ._text{
	margin-left: 260px;
}
@media screen and (max-width:640px) {
	html,body {
		background: #000;
	}
	div[class*="cast-"]{
		background: none;
	}
	#wrap{
		margin: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: left;
		padding: 15% 5%;
	}
	._photo{
		width: 40%;
		float: none;
	}
	._photo img{
		width: 100%;
	}
	._photo + ._name{
		margin-left: auto;
		width: 55%;
	}
	._text,
	._photo + ._name + ._text{
		display: block;
		width: 100%;
		padding: 0;
		margin: 5% auto 10%;
	}
	h1{
		font-size: 30px;
	}
	h2 {
		font-size: 14.5px;
		margin-bottom: 0;
	}
}


