﻿@charset "utf-8";

/* -----------------------------------------------
モジュールファイル

Creator    : sue
LastUpdate : 08/04/02
----------------------------------------------- */

/* ===============================================
モジュール用のファイルです。
機能単位、交換可能な構成部品を記述します。
=============================================== */

/* ===============================================
【基本構成】

1.clearfix
2.要素を左右中央寄せ(ボタン以外でも勿論可)
=============================================== */


/* -----------------------------------------------
1.clearfix

==================================================
floatの設定を終了させるためのモジュール
floatさせた要素の親要素に設定する
==================================================
------------------------------------------------ */

.clr {
	zoom:1;/*for IE 5.5-7*/
	display: inline-table;
}

.clr:after {/*for modern browser*/
	content:".";
	display: block;
	height:0px;
	clear:both;
	visibility:hidden;
}

* html .clr {
	height: 1%;
	display:inline-table;
	/*\*/display:block;/**/
}

/* Hides from IE-mac \*/
* html .clr {
	height: 1%;
}

.clr {
	display: block;
}
/* End hide from IE-mac */


/* --------------------------
 * その他
-------------------------- */
ul.imgList li {
	float: left;
	margin: 0 15px 10px 0;
}

#contentMain .end {
	margin-right: 0;
}

/* 画像の場合 */
.imgL {
	float: left;
	margin-right: 15px;
}

.imgR {
	float: right;
	margin-left: 15px;
}

/* ブロックの場合 */
.posL {
	float: left;
}

.posR {
	float: right;
}

.txtR {
	text-align: right;
}

.txtC {
	text-align: center;
}

.referenceMark {
	color: #666666;
	font-size: 80%;
}