@charset "utf-8";
/*========================================================
	▼ CONTENTS

	1: universal reset 
	2: body and base setting
		: general params
		: acronyms and abbreviations styles
	3: form setting
	4: link setting
	5: clearfix

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


/*========================================================
	1: universal reset
--------------------------------------------------------*/

* {
	margin:0;
	padding:0;
}
/*========================================================
	2: body and base setting
--------------------------------------------------------*/

body {
	text-align:center;/* box centering */
	font: normal 1.4 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
	margin: 0px;
	padding: 0px;
	color:#FFF;
	outline: 0;
	background-color: #f6f6f6;
	background-image: url(../images/common/bg_body.jpg);
	background-repeat: repeat-x;
	background-position: top;
}
/*========================================================
	general params
--------------------------------------------------------*/
h1, h2, h3, h4, h5, h6, div, p, pre, ul, ol, dl, dt, dd, address, form, blockquote {
	padding: 0;/* margin&padding reset */
	line-height: 1.4;/* base line height */
	text-align: left;
	display: block;
	margin: 0px;
	font-size:medium;
	color: #FFF;
}
table {
	margin : 0;
	empty-cells: show;
	font-size:small;
}
hr, .areaAnchor, .anchor {
	display : none;
}
img {
	border: none;/* img do not want a border */
	vertical-align: bottom;
}
li {
	list-style: none;
}/* link do not want a dot */
/*========================================================
	acronyms and abbreviations styles 
--------------------------------------------------------*/
acronym, abbr {
	cursor:help;
}
/*========================================================
	3: form setting
--------------------------------------------------------*/
option {
	padding-right:10px;
}
*+html option {
	padding-right:0;
}/* for IE7&Opera */
* html option {
	padding-right:0;
}/* for IE6 */
/*========================================================
	4: link setting
--------------------------------------------------------*/
a:link {
	color: #36C;
	text-decoration:none;
}
a:visited {
	color: #036;
}
a:hover {
	color: #369;
	text-decoration: underline;
}
a:active {
	color: #090;
}
/*========================================================
	5: clearfix
--------------------------------------------------------*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-table;
}
/* Mac OS版　IEには適用しない \*/
* html .clearfix {
	height: 1%;
}
*+html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/**/
