@charset "UTF-8";
/* CSS Document */
h1, h2, h3 {
	font-weight: 500 !important;
}

@media only screen and (max-width:960px) {
	/*スマホ*/
	h1 {
		margin-top: 60px;
		margin-bottom: 40px;
		text-align: center;
		font-size: 2rem;
	}
	section {
		width:85%;
		margin: 0 auto;
	}
	main p {
		margin-bottom: 2em;
	}
	li {
		margin-bottom: 0.75em;
	}
}

@media screen and (min-width:961px) {
	/*PC*/
	h1 {
		margin-top: 150px;
		margin-bottom: 30px;
		text-align: center;
		font-size: 3.2rem;
	}
	section {
		width:1100px;
		margin: 0 auto;
	}
	main p {
		margin-bottom: 1.5em;
	}
	li {
		margin-bottom: 0.75em;
	}
}