@charset "UTF-8";
@import "fonts.css";


/*------ 各要素をリセット -----*/

* {
	margin: 0;
	padding: 0;
	}

html {
	margin: 0;
	padding: 0;
	}



a {
outline: none;
}



/*----- 各要素を再定義 -----*/

body {
	background:#fff;
	color: #333322;
	text-align: center;
	}

h1, h2, h3, h4, h5 {
	font-weight: normal;
	}

fieldset, img { border:0; } 

strong { font-weight: bold; }

em { font-style: italic; }

p {margin: .5em 0; }


/*----- floatをclearするための汎用クラス定義 -----*/

.clear { clear: both; }

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

