@charset "UTF-8";

/* ////////////////////////////////////////////////////////////////////////////

	common.css（使い回しの定義）

//////////////////////////////////////////////////////////////////////////// */
/* float（画像） */
img.img_L {
	float: left;
	margin-right: 1em;
}
img.img_R {
	float: right;
	margin-left: 1em;
}
/* floatクリア */
.clear {
	clear: both;
}
/* boxの高さ確保 */
.fix_box_height {
	overflow: hidden;
	/zoom: 1;
}

/* 2カラム */
.twoColumnLeft {
	width: 48%;
	float: left;
	overflow: hidden;
	_zoom: 1;
}
.twoColumnRight {
	width: 48%;
	float: right;
	overflow: hidden;
}

/* 3カラム */
.threeColumnLeft {
	width: 32%;
	float: left;
	margin-right: 2%;
}
.threeColumnCenter {
	width: 32%;
	float: left;
	margin-right: 2%;
}
.threeColumnRight {
	width: 32%;
	float: left;
	margin: 0;
}

/* グリーン枠 */
.green_frame {
	border: 2px solid #75C22B;
}

/* オレンジ枠 */
.orenge_frame {
	border: 1px solid #F5A200;
}

/* text-align */
.txtL {
	text-align: left;
}
.txtR {
	text-align: right;
}
.txtC {
	text-align: center;
}

/* セル枠無し */
div#contents #content table td.borderless {
	border-left:  none;
}

/* 幅指定 */
.w5 {
	width: 5%;
}
.w15 {
	width: 15%;
}
.w20 {
	width: 20%;
}
.w30 {
	width: 30%;
}
.w40 {
	width: 40%;
}

/* リストにインデント */
ol.indent {
	margin:1em;
}
ul.indent {
	margin:1em;
}

/* 文字色#000 */
span.black {
    color: #000;
    font-weight: bold;
}
