/*　全体共通-----------------------------------------------------*/
body{
	font-family:"Noto Sans JP",sans-serif;
	/*font-family: "Kaisei Decol", serif;*/
}

/*　ヘッダー　---------------------------------------------------*/
header{
	color:#ffffff;
	/*background-color:#8ECC9B;*/
	background-color:#8fcc9c
	/*background-color:rgb(255 0 0);*/
}
header .CHeader{
	/*display:flex;*/
	/*justify-content:space-between;*/
	/*justify-content:space-around;*/
	width:90%;
	margin:0 auto;
	max-width:1280px;
	padding:20px;

	display:flex;
	align-items:center;
}
header img{
	width:500px;
	height:100px;
}
/*header .logo{
	font-size:30px;
	font-weight:900;
	text-shadow: 3px 4px 3px rgb(61 70 70)
}*/
header p{
	font-size:20px;
	font-weight:500;
	color:#5653ed;
	margin-left:50px;
}
@media only screen and (max-width:960px){/*スマホ対応*/
	/*header{
		background-color:rgb(60 60 60);
	}*/
	header .CHeader{
		/*width:90%;
		margin:0 auto;*/
		display:inline-block;
		/*text-align:center;*/
		/*justify-content:center;*/
	}
	header img{
		width:100%;
		margin-left:20px;
	}
}











