<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: #D00000;
	font-weight: bold;
}

span.text-color-yellow {
	color: #FFFF00;
	font-weight: bold;
}

span.text-color-green {
	color: #008000;
	font-weight: bold;
}

span.text-color-blue {
	color: #0000FF;
	font-weight: bold;
}

span.text-color-aqua {
	color: #AFDFE4;
	font-weight: bold;
}

/**
 * 強調用タグの色設定
 */
strong.text-color-red {
	color: #D00000;
}

strong.text-color-yellow {
	color: #FFFF00;
}

strong.text-color-green {
	color: #008000;
}

strong.text-color-blue {
	color: #0000FF;
}

strong.text-color-aqua {
	color: #AFDFE4;
}

/**
 * 整列の設定
 */
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;
    margin: 0;
}
/*wysiwyg内画像*/
.img-center {
	margin-left: auto;
	margin-right: auto;
}
.img-left {
	float: left;
	text-align: center;
}
.img-right {
	float: right;
	text-align: center;
}
/*wysiwyg-wp FloatClear*/
.wysiwyg_wp {
    clear: both;
}
.wysiwyg_wp:before, .wysiwyg_wp:after {
    content: "";
    display: table;
}
.wysiwyg_wp::after {
    clear: both;
}
/* dldtdd */
dt {
    margin-left: 20px;
}
dd {
    margin-left: 40px;
}
/* table */
table {
    border-collapse: collapse;
}
table[align="center"] {
    margin-left: auto;
    margin-right: auto;
}
table tr p {
    margin: 0;
}
.wysiwyg_wp ul {
    overflow: hidden;
}
ul[style]&gt;li {
   /* background-image: none;*/
}
a:not([href]) {
  text-decoration: none;
}


</pre></body></html>