@charset "UTF-8";

/* CSS Information ==========

ファイル名	: reset.css
内容		: デフォルトスタイルの初期化

=========================== */


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"]{
	-webkit-appearance: none;
}

*{
	box-sizing:border-box;
}
	
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,p{
	margin: 0px;
	padding: 0px;
}

h1,h2,h2,h3,h5,h6{  
	font-size: 100%;  
	font-weight:normal;
}

table{
	border-collapse:collapse;
	border-spacing:0;
}

img,img a{
	border: 0;
}
img{
	vertical-align:bottom;
}

li{
	list-style-type: none;
}

hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}  

input, select {
	vertical-align:middle;
}

q:before,q:after {
	content:'';
}

abbr,acronym {
	border:0;
} 