@charset "UTF-8";

/* single */
@media all {
	/* sp */
	@media only screen and (max-width: 767px) {
		.the_content h1 {font-size: 23rem;}
		.the_content h2 {font-size: 20rem;}
		.the_content h3 {font-size: 18rem;}
		.the_content h4 {font-size: 16rem;}
		.the_content h5 {font-size: 15rem;}
	}

	/* pc & tab */
	@media print,
	(min-width: 768px) {
		.the_content h1 {font-size: 25rem;}
		.the_content h2 {font-size: 22rem;}
		.the_content h3 {font-size: 20rem;}
		.the_content h4 {font-size: 18rem;}
		.the_content h5 {font-size: 16rem;}
	}
}
