@charset "utf-8";
/* CSS Document */

/***************フロートを解除する*******/
.clear {
	overflow: hidden;
}
.clear :after{
	/*content: "";firefox3.5でimg要素に隙間ができるためマークアウト*/
	display: block;
	clear: both;
	height: 1%;
	overflow: hidden;
}

/*\*/
* html .clear {
    height: 1em;
    overflow: visible;
}
.absolute {
	position: absolute;
}
.relatve {
	position: relative;
}

/**/

.clearfloat { /* このクラスは、div またはブレークエレメントに適用される必要があり、また、フローティングエレメントが完全に含まれているコンテナの末尾の直前にある最後のエレメントである必要があります */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* 再使用できる各種クラス */
.fltrt { /* このクラスは、ページ上でフローティングエレメントを右側に配置するのに使用できます。プローティングエレメントは、ページ上でその横に配置されるエレメントの前に配置される必要があります。 */
	float: right;
	margin: 3px;
	padding: 5px;
	background-color: #CCC;
}
.fltlft { /* このクラスは、ページ上でフローティングエレメントを左側に配置するのに使用できます */
	float: left;
	margin: 3px;
	padding: 5px;
	background-color: #CCC;
}
/* 上述の専用のズームプロパティにより、いくつかのバグを回避するのに使用される hasLayout が IE に対して設定されます */





/*************リセットハック**********/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, 
fieldset, input, textarea, blockquote, th, td {
    margin: 0; 
    padding: 0;
}
/*html{
    overflow-y: scroll;
}*/
h1, h2, h3, h4, h5, h6{
	font-size: 100%;
	font-weight: normal;
	display: inline;
}
ol, ul{
    list-style:none;
}
fieldset, img{
     border:0;
}

a{ text-decoration:none; border:none 0px; }

table{
    border-collapse: collapse; 
    border-spacing:0;
}
caption, th{
    text-align: left;
}
address, caption, cite, code, dfn, em, strong, th, var{
    font-style: normal; 
    font-weight: normal;
}

li a{
	border:none;
	text-decoration: none;
}

/* wordPress画像投入時指定クラス */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}
body {
	font-size: 90%;
	color: #333;
	background-image: url(../img/common/main-back.gif);
}

