@charset "UTF-8";


body{
	counter-reset: q;
}

h2{
	margin-bottom: 40px;
}
h2 img{
	margin-bottom: 30px;
}

h3{
	color: #007dc9;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 5px;
}
h3:before{
	counter-increment: q;
	content: "Ｑ" counter(q) ".";
}

article{
	margin: 0 0 50px;
}

p{
	text-align: left;
	font-size: 19px;
	line-height: 1.7;
	margin: 0 0;
}


/* PC向け ******************************************************************************************* */

@media (min-width: 741px) {

}



/* スマホ向け **************************************************************************************** */

@media (max-width: 740px) {
	h3{
		font-size: 20px;
	}
	p{
		font-size: 16px;
	}

}

@media (max-width: 420px) and (orientation: portrait) {

}

@media (max-width: 740px) and (orientation: landscape) {

}

