@charset "utf-8";

/*
 --------------------------------------------------------------------
 4Uweb／CMS WYSIWYGエディタ用スタイルシート。
フォントの色
クラス名称は、template-text-color.xml の「cssColor」と合わせてください。


 更新日：2009-05-10
 --------------------------------------------------------------------
 【編集履歴】
 ・2009-05-10 新規作成
 ・2011-12-12 強調タグ用の色を追加。
 
 -------------------------------------------------------------------- */

/**
 * 色の設定
 */
span.text-color-red {
	color: #D80000;
	font-weight: bold;
}

span.text-color-blue {
	color: #0000FF;
	font-weight: bold;
}


/**
 * 強調用タグの色設定
 */
strong.text-color-red {
	color: #D80000;
}

strong.text-color-blue {
	color: #0000FF;
}


/**
 * 整列の設定
 */
p.text-right {
	text-align: right;
}

p.text-left {
	text-align: left;
}

p.text-center {
	text-align: center;
}


/* ============================================================
03-19追加スタイル
============================================================ */
/* Floatのクリア */
hr.ClearFloat {
    display: block;
    clear: both;
    border: none;
}
/* Floatまわり調整 */
.h2bg, .h3bg, .h4bg, .h5bg, ul, ol {
    overflow: hidden;
}
ol li {
    margin: 0 0 0 1.5em;
}
/* 画像パーツ
============================== */
/*wysiwyg　パーツ共通*/
.img-center {
	margin: 0 auto;
}
.img-left {
	float: left;
	text-align: center;
}
.img-right {
	float: right;
	text-align: center;
}
/*wysiwyg専用*/
.wysiwyg_wp {
    clear: both;
}
.wysiwyg_wp:before,
.wysiwyg_wp:after {
    content: "";
    display: table;
}
.wysiwyg_wp::after {
    clear: both;
}
/* dldtdd
============================== */
dl {
    font-size: 90%;
}
dt {
    margin-left: 20px;
}
dd {
    margin-left: 40px;
}