@charset "utf-8";

/* ----------------------- Browser Default Initialization */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
html, body {
	height: 100%;
	min-height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
	Zoom: 1;
}
div::webkit-scrollbar {
	display:none;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: center;
}
q::before, q::after {
	content: "";
}
object, embed {
	vertical-align: top;
}
hr, legend {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
ul, ol, li {
	zoom: normal;
}
li  {
	list-style-type: none;
}

/* ----------------------- Basic Style */
/* ------------ Font Style */
body {
	/*font-family: Arial, "ＭＳ ゴシック", "MS Gothic", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Sans-Serif;*/
	font-family: Meiryo, 'メイリオ', segoe UI, sans-serif;
	background-color: #FFF;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
	text-align: left;
}

/* ------------ A Style */
a:link {
	text-decoration: none;
	color: #00F;
}
 a:visited {
	text-decoration: none;
	color: #00F;
}
a:hover {
	text-decoration: underline;
	color: #00F;
}
a:active {
	text-decoration: none;
	color: #00F;
}

/* ------------ table Style */
table {
	background-color: #FFF;
	color: #333;
	font-size: 1em;
	line-height: 1.6;
}
/* テーブル内で改行しない */
.noWrap {
	white-space: nowrap;
}

/* 表示しない */
.noDisp {
	display: none;
}

/*floatの解除*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px; /*IE6、7対策*/
}

html .clearfix {
	height: 1px; /*¥*//*/ /*MAC IE5.x対策*/
	height: auto;
	overflow: hidden;
}

/* 画面サイズが679px以下の場合 */
@media screen and (max-width: 679px) {
	body {
		font-size: 1em;
	}
}
