@charset "utf-8";

/* リセット	*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {	
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	line-height: 1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, picture, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family: 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック', meiryo, sans-serif;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
  max-width:100%;
}
*, *:before, *:after {
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* general framework */
html,
body {
	width: 100%;
	height: 100%;
  color:#333;
}
html {
	font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
}

/* main color */
:root {
	/* コンテンツ幅 */
	--contWid : 980px;
	--color-primary: #1b65b1;
  --color-sencodary: #2287bd;
	--color-error: #f00;
	--color-white: #fff;
  --line-height: 1.5;

	--color-gray: #ccc;
	--color-gray-dark: #efefef;
	--color-gray-light: #888;
}
a{
  color:inherit;
}
@media screen and (max-width: 767px) {
	:root {
		/* コンテンツ幅 */
		--contWid : 100%;
		--line-height: 1.5;
	}	
}

/* general */
@media screen and (min-width: 768px) {
	.pcNone {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.spNone {
		display: none;
	}
}
