@charset "UTF-8";

/**** ユニバーサルセレクタでmargin/paddingなどを初期化 ****/
* {

	margin: 0;
	padding: 0;
	border: none;
	color: #000000;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	line-height: 1.0;
	vertical-align: baseline;
}
/**** ブラウザのスクロールバー表示の違いを解決 ****/
html{
	overflow: scroll;
	overflow-x: scroll;
}
/**** テーブルのボーダー表示方法の違いを解決 ****/
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-weight: bold;
	text-align: left;
}
q:before,q:after {
	content:'';
}
