@charset "utf-8";
/* CSS Document */

/*リセット
--------------------------------------------------*/

html, body { line-height:1; margin:0; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, button, select, p, blockquote, th, td, small { margin: 0; padding: 0; }
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; }
hr { display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0; }
nav,ul,li { list-style:none; }
input, select { vertical-align:middle; }
a { text-decoration: none; margin:0; padding:0; border:0; }
table { border-collapse:collapse; border-spacing:0; }
address, em, strong, th, dfn, i, cite { font-style: normal; }
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/*基本事項
--------------------------------------------------*/

@media only screen and (min-width: 751px) {
	/* パソコンで見たときは"pc"のclassがついた画像が表示される */
	.pc { display: block !important; }
	.sp { display: none !important; }
	
	html { font-size: 24px; }
	body {
		font-size: 16px;
		line-height: 1.5;
	}
	
	main {
		margin: 0 auto;
		width: 1000px;
	}
}

@media only screen and (max-width: 750px) {
	/* スマホで見たときは"sp"のclassがついた画像が表示される */
	.pc { display: none !important; }
	.sp { display: block !important; }
	
	html { font-size: 16px; }
	body {
		font-size: 13px;
		line-height: 1.5;
	}
	
	main > section {
		margin: 0 10px;
	}
}

body {
	font-family: "メイリオ", Meiryo, 'M PLUS 1p', Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	color: #333;
}
main > section { margin-bottom: 1.5rem; }
main > section > section { margin-bottom: 3rem; }

