﻿@charset "utf-8";

/*------------------------------------------------------------

Reset css

------------------------------------------------------------*/

/* よく登場する各要素のリセット */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form {
        margin: 0;
        padding: 0;
        border: none;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        list-style-type: none;
}

/* 上下左右の余分な余白をなくす */
* {
margin: 0;
padding: 0;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img { vertical-align: bottom; }

/* hr 要素は不可視で使う 
hr { display: none; }*/

/*------------------------------------------------------------

Clearfix

------------------------------------------------------------*/

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-table;}


/*------------------------------------------------------------

CSSハック

------------------------------------------------------------*/

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;} 


/*　IE7を含むモダンブラウザにのみ適用（バージョン6以下のIEを除外）　*/
html>body>#back {
	height: auto;
}
