@charset 'utf-8';
/*----------------------------------------------------デフォルトCSS*/
/*------------------------------------global*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 16px;
	vertical-align: top;
	line-height: 1.4;
}
html {
	overflow: scroll;
}
body {
	font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,Osaka,"MS P ゴシック","MS P Gothic",Verdana,sans-serif;
}
img {
	border: none;
}
ol,ul,dl,dt,dd,li {
	list-style: none;
}
a {
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}

object {
	outline: none;
}
*:focus {
	outline: none;
}
button,
input[type=submit] {
	-webkit-appearance: none;
}

/*------------------------------------table*/
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,tr,td{
	border: 1px solid #cccccc;
}
/*------------------------------------form*/
form,fieldset {
	border: none;
}
