/*
##############################################
###                                        ###
###               default.css              ###
###                                        ###
##############################################
基本となるスタイルを記述するシート
（例）マージンやパディングのリセット。Hタグの文字サイズ変更など
*/
body {
	font-family: Meiryo UI;
}

h1,h2,h3,h4 {
	margin: 0px;
	padding: 0px;
}

p,div,table,td,tr,ul,li,img {
	margin: 0px;
	padding: 0px;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}