@charset "utf-8";

/** 
 * JCIC 基本設定CSS 
 *
 * ビジュアルエディタで入力した記事を整える
 **/





/* editor */
body#tinymce.wp-editor { width: 1200px; }
.mceContentBody { width: 1200px; }
.editor-area p {
	display: block;
	margin: 1em 0;
}
.editor-area strong {
	font-weight: bold;
	font-family: 'GT101MB B';
}
.editor-area em { font-style: italic; }
.editor-area blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}


/* img */
.editor-area .aligncenter {
	display: block;
	margin: 0 auto;
}
.editor-area .alignright { float: right; }
.editor-area .alignleft { float: left; }

.editor-area img[class*="wp-image-"],
.editor-area img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
	margin: 7px 24px 0;
}

	.editor-area img.alignright { margin-right: 0; }
	.editor-area img.alignleft { margin-left: 0; }

/* ul ol */
.editor-area ul {
	list-style: disc;
	padding-left: 20px;
}

.editor-area ol {
	list-style: decimal;
	padding-left: 20px;
}

/* hr */
.editor-area hr {
	border: solid 1px #bbb;
}

/* clearfix */
.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
