@charset "utf-8";

/*********************************************************************
 *
 *  </common/css/common.css>
 *
 *  更新日: 2008.12.26
 *
 * ===================================================================
 *
 *  ■概要
 *
 *   - 他のCSSファイルのインポート
 *   - 基本的なタグの設定
 *   - ヘッダーやフッターエリアをまたぐ汎用的なclassの設定
 *
 * ===================================================================
 *
 *  ■プロパティリスト (以下の順でプロパティを記述)
 *
 *   - display
 *   - list-style
 *   - position
 *   - float
 *   - clear
 *   - width
 *   - height
 *   - margin
 *   - padding
 *   - border
 *   - background
 *   - color
 *   - font
 *   - text-decoration
 *   - text-align
 *   - vertical-align
 *   - white-space
 *   - other text
 *   - content
 *
 * ===================================================================
 *
 *  ■使用ハック
 *
 *  01) Windows IE7・IE6対象
 *
 *      e { *propaty: value; }
 *
 *  02) Windows IE6対象
 *
 *      e { _propaty: value; }
 *
 *      *html e{propaty: value; }
 *
 *  03) Mac OS X Safari2以降対象 
 * 
 *      html[xmlns*=""] body:last-child e { }
 * 
 *  04) Mac OS X Safari3・Windows Safari3 対象 
 * 
 *      body:first-of-type e { }
 * 
 *  05) Clearfix
 *
 * ===================================================================
 *
 *  ■フォントサイズ
 *
 *  ※文字サイズ [標準] を選択している場合。
 *
 *  基準値: font-size: 12px = 75%
 *
 *  font-size:  83.5% = 10px
 *  font-size: 117% = 14px
 *
 *********************************************************************/


/*  Import
---------------------------------------------------------- */

@import url("reset.css");
@import url("header.css");
@import url("body.css");
@import url("footer.css");
@import url("module/block.css");
@import url("module/form.css");
@import url("module/heading.css");
@import url("module/link.css");
@import url("module/form.css");
@import url("module/table.css");
@import url("module/popup.css");


/*  Common Elements
---------------------------------------------------------- */

* {
	font-family: "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

html {
	overflow-y: scroll;
}

body {
	height: 100%;
	background-color: #fff;
	color: #333;
	font-size: 12px;
	*font-size: 75%;
	text-align: center;
}

a:link {
	color: #0091ce;
}

a:visited {
	color: #7e00ce;
}

a:active,
a:hover {
	color: #00b4ff;
}

img {
	border: 0;
	vertical-align: text-bottom;
}

hr {
	display: none;
}

em,
strong {
	font-weight: bold;
}

table th,
table td,
table caption {
	_font-size: 75%;
	line-height: 1.5;
}


/*  Common id, class
---------------------------------------------------------- */

.hidden {
	display: none;
}

.no_border {
	border: none !important;
}

.no_margin {
	margin: 0 !important;
}

.no_bg {
	background: 0 !important;
}

.txt_margin {
	margin-top: 1.2em;
}

p.txt_right {
	text-align: right;
}

p.img_center {
	text-align: center;
}

.form_btn{
	margin-right: 10px;
}

/*  Clearfix
---------------------------------------------------------- */

.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/*\*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/**/