@charset "utf-8";

/*********************************************************************
 *
 *  </common/css/common.css>
 *  
 * ===================================================================
 *
 *  importと、基本タグ・汎用classの指定用CSS
 *
 * ===================================================================
 *
 *  ■プロパティリスト (以下の順でプロパティを記述)
 *
 *   - 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; }
 *
 *  03) Mac OS X Safari2以降対象
 *
 *      html[xmlns*=""] body:last-child e { }
 *
 *  04) Mac OS X Safari3対象 ※ヘッダーの検索フォームで使用
 *
 *      body:first-of-type e { }
 *
 *  05) Firefox対象 ※印刷用CSS内で使用
 *
 *      html:not([lang*=""]) e { }
 *
 *  06) Clearfix
 *
 * ===================================================================
 *
 *  ■フォントサイズ
 *
 *  ※文字サイズ [標準] を選択している場合。
 *
 *  基準値: font-size: 14px = 87.5%
 *
 *  font-size:  86% = 12px
 *  font-size: 100% = 14px
 *
 *********************************************************************/

@import url("reset.css");
@import url("header.css");
@import url("body.css");
@import url("footer.css");
@import url("module/block.css");
@import url("module/div.css");
@import url("module/form.css");
@import url("module/list.css");
@import url("module/table.css");
@import url("module/popup.css");

@import url("module/navigation.css");


/*  Common Elements
---------------------------------------------------------- */

html {
	overflow-y: scroll;
}

body {
	background: #f6f6f6 url(/common/image/bg.gif) no-repeat 50% 0;
	color: #000;
	font-size: 14px;
	*font-size: 87.5%;
	font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", Frutiger, Helvetica, sans-serif;
	text-align: center;
}

a:link {
	color: #385c90;
}

a:visited {
	color: #7d91b7;
}

a:active,
a:hover {
	color: #53a7f4;
	background: #f2f9fb;
}

img {
	border: 0;
	vertical-align: text-bottom;
}

hr {
	display: none;
}

em,
strong {
	font-weight: bold;
}

table {
	_font-size: 100%;
	line-height: 1.5;
}

input,
select,
textarea {
	font-size: 100%;
}

/*  Common ID
---------------------------------------------------------- */

div#wrapper {
	width: 970px;
	margin: 0 auto;
	background: url(/common/image/bg_wrapper.gif) repeat-y 0 0;
	text-align: left;
}

body#one_column div#wrapper {
	background-image: url(/common/image/bg_wrapper_one_column.gif);
}


/*  Common class
---------------------------------------------------------- */

.clear {
	clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}

.none {
	display: none !important;
}

.no_border {
	border: none !important;
}

.no_margin {
	margin: 0 !important;
}

.no_padding {
	padding: 0 !important;
}

.no_bg {
	background: 0 !important;
}

.last {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.hover_list {
	background-color: #f2f9fb !important;
}

/*  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;
}
/**/