/*サブページ共通css*/

/*振り分けで必要になる物*/
@media only screen and (min-width: 641px) {

/*大タイトル*/
.subp_title{
	width:1480px;
	margin:0 auto 60px;
}

/*中タイトル*/
/*mainのkanoko_1と共通*/
.subp_subtitle{
	width:1480px;
	margin:0 auto 50px;
	font-size:30px;
	line-height:1.5em;
}

/*テキスト*/
/*mainのkanoko_2と共通*/
.subp_text{
	width:1480px;
	margin:0 auto 70px;
	font-size:13px;
	line-height:1.8em;
}

/*センターに画像置くだけの物*/
.subp_center{
	width:1480px;
	margin:0 auto 70px;
}


}


@media only screen and (max-width: 640px) {
/*スマホ用のcssを記述*/



/*大タイトル*/
.subp_title{
	width:100vw;
	margin:0 auto 40px;
}

/*中タイトル*/
/*mainのkanoko_1と共通*/
/**/
.subp_subtitle{
	width:90vw;
	margin:0 auto 40px;
	font-size:1.1em;
	line-height:1.5em;
}

/*テキスト*/
/*mainのkanoko_2と共通*/
.subp_text{
	width:90vw;
	margin:0 auto 40px;
	font-size:0.8em;
	line-height:1.8em;
}

/*センターに画像置くだけの物*/
.subp_center{
	width:90vw;
	margin:0 auto 70px;
}







}