@charset 'utf-8';
/*----------------------------------------------------デフォルトCSS*/
/*------------------------------------global*/
* {
	margin: 0;
	padding: 0;
	word-break: break-all;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html {
	overflow: scroll;
}
body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,p,address {
	font-weight: normal;
	font-style: normal;
}
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;
}
.spc {
	clear: both;
}
.spc hr {
	display: none;
}

/*------------------------------------table*/
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,tr,td{
	border-width: 1px;
	border-style: solid;
}
/*------------------------------------form*/
form,fieldset {
	border: none;
}
textarea {
	overflow: auto;
}

