@charset "UTF-8";

/* ------------------------------------------------------
 ブロックテンンプレート用 wcvblock.css（コンテンツ内の設定）

■ 使用方法

(1)本体のCSSに本CSSをインポートして使用します

(2)コンテンツ領域のID名はcontentになっています
IDがcontent以外の場合は「#content」で置き換えを行ってください

  目　次
	1.位置
	2.テーブル※本体のほうに定義がなければコメントアウトを外す
	3.画像
	4.フォント
	5.リスト
	6.隠す

------------------------------------------------------ */
/* -------- 1.位置 -------- */
/*左寄せ*/
#content .wcvleft {
	text-align: left;
}
/*右寄せ*/
#content .wcvright {
	text-align: right;
}
/*中央寄せ*/
#content .wcvcenter {
	text-align: center;
}
/*左寄せ・セル用*/
#content .wcvleft-c {
	text-align: left;
	margin-bottom: 5px;
}
/*右寄せ・セル用*/
#content .wcvright-c {
	text-align: right;
	margin-bottom: 5px;
}
/*中央寄せ・セル用*/
#content .wcvcenter-c {
	text-align: center;
	margin-bottom: 5px;
}
/* -------- 2.テーブル -------- */
/*#content table {
	clear: both;
	margin: 10px 25px;
	border-collapse: collapse;
	border: 1px solid #666;
	border-spacing: 0;
	empty-cells: hide;
}
#content caption {
	color: #000;
	text-align: center;
	padding: 5px;
	font-weight: bold;
}
#content th {
	color: #000;
	text-align: center;
	padding: 5px;
	font-weight: bold;
	border: 1px solid #999;
}
#content td {
	text-align: left;
	padding: 5px;
	border: 1px solid #999;
}*/
/* -------- 3.画像 -------- */
/*画像同士などが上下でくっ付く場合に利用する*/
#content .wcvmargin-bottom {
	margin-bottom: 10px;
}
/*画像同士などが左右でくっ付く場合に利用する・中央*/
#content .wcvmargin-rl-m {
	margin-right: 3px;
	margin-left: 3px;
	vertical-align: middle;
}
/*画像同士などが左右でくっ付く場合に利用する・上付き*/
#content .wcvmargin-rl-t {
	margin-right: 3px;
	margin-left: 3px;
	vertical-align: top;
}
/*中央寄せ画像テキスト用ボックス*/
#content div.wcv-centerbox {
	text-align: center;
	margin-bottom: 1em;
}
/*中央寄せ画像テキスト用ボックス内・左側*/
#content div.wcv-centerbox div.wcv-centerimg-l {
	width: 49%;
	float: left;
	margin-right: 5px;
}
/*中央寄せ画像テキスト用ボックス内・右側*/
#content div.wcv-centerbox div.wcv-centerimg-r {
	width: 49%;
	float: right;
}
/*中央寄せ画像の下に表示させるテキスト*/
#content .wcvimg-center {
	text-align: center;
	margin-top: 5px;
	font-size: 90%;
}
/*画像と回り込みテキスト用ボックス*/
#content div.wcv-floatbox-left,
#content div.wcv-floatbox-right {
	margin: 0 10px 1em;
}
/*左寄せ画像と回り込みテキストで使用*/
#content .wcvimg-floatleft {
	float: left;
	margin-right: 7px;
}
/*右寄せ画像と回り込みテキストで使用*/
#content .wcvimg-floatright {
	float: right;
	margin-left: 7px;
}
/*回り込み解除・フロートクリア*/
#content .clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
#content .clearfix { display: inline-block; }
#content .clearfix { display: block; }
/* Mac版IEのみに適用 \*//*/
#content .clearfix { overflow: hidden; }
/* */
/* -------- 4.フォント -------- */
#content .wcvfont-red {
	color: #c00;
}
#content .wcvfont-blue {
	color: #00c;
}
#content .wcvfont-b {
	font-weight: bold;
}
#content .wcvfont-red-b {
	color: #c00;
	font-weight: bold;
}
#content .wcvfont-blue-b {
	color: #00c;
	font-weight: bold;
}
/* -------- 5.リスト -------- */
#content div.wcv-floatbox-left ul li {
	list-style: disc inside url(../images/base/content_li_bg.png);
	background: none;
}
#content div.wcv-floatbox-left ol li {
	list-style-position: inside;
}
/* -------- 定義型リスト -------- */
#content dl {
	margin: 10px 5px;
	line-height: 1.5;
}
#content dl dt {
	font-weight: bold;
}
#content dl dd {
	margin-bottom: 1em;
	margin-left: 20px;
}
/* -------- 6.隠す -------- */
.wcvhide {
	display: none;
}
