@charset "UTF-8";
/* google font */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

html, body{height: 100%;width: 100%;font-size: 62.5%;background-color: #FFFFFF;background: #FFFFFF;
	background: url("../img/bg_ptn.jpg");
    background-position: center top;
    background-repeat: repeat;
    background-size: 250px 250px;}/*font size 62.5%=10px 1.0rem=10px*/

#cast_container {
	width: 100%;
	height: auto;
	
}

ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-around;
	padding: 5%;
	list-style: none;
	font-size: 1.5rem;
	line-height: 1.7em;
	letter-spacing: 0.1em;
	font-weight: 300;
}

ul li#cast_l {
	width: 50%;
	padding-right: 3%;
}

ul li#cast_l img {
	width: 100%;
}

ul li#cast_r {
	width: 100%;
}

ul li#cast_r p {
	width: 100%;
	margin: 0 0 20px 0;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	line-height: 2.0em;
	color: #333333;
	font-weight: 400;
}

ul li#cast_r h1 br {
	display: none;
}

ul li#cast_r h1 {
	font-size: 1.7rem;
	font-weight: 600;
	padding-bottom: 20px;
	color: #80522c;
}

ul li#cast_r h2 {
	font-size: 1.5rem;
	font-weight: 500;
	padding-bottom: 20px;
	color: #80522c;
}

@media screen and (max-width:717px){
	ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-around;
		padding: 5%;
		list-style: none;
		font-size: 1.5rem;
		line-height: 1.7em;
		letter-spacing: 0.1em;
		font-weight: 300;
		margin-top: 50px;
	}

	ul li#cast_l {
		width: 100%;
		padding: 0;
	}
	
	ul li#cast_r {
		width: 100%;
		padding: 5%;
	}
	
	ul li#cast_r h1 br {
	display: block;
}

}