/* #cms_body, .note-editableだけブラウザ標準に近づける */
#cms_body, .note-editable {
  all: revert;
}

#cms_body, .note-editable * {
  all: revert;
}

/* 最小限の読みやすい整形 */
#cms_body, .note-editable {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
  margin: 0 auto 5em auto;
}

/* 見出し */
#cms_body h1, .note-editable h1 {
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 0 1em 0;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3em;
}

#cms_body h2, .note-editable h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 2em 0 0.6em;
  border-left: 4px solid #999;
  padding-left: 0.5em;
}

#cms_body h3, .note-editable h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 1em 0;
}

#cms_body h4, .note-editable h4,
#cms_body h5, .note-editable h5,
#cms_body h6, .note-editable h6 {
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 1em 0;
}

/* 段落 */
#cms_body p, .note-editable p {
  margin: 1em 0;
}

/* リスト */
#cms_body ul, .note-editable ul,
#cms_body ol, .note-editable ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}
#cms_body ul, .note-editable ul li{
  list-style: disc;
}
#cms_body ol, .note-editable ol li{
  list-style: decimal;
}


#cms_body li, .note-editable li {
  margin: 0.3em 0;
}

/* 強調 */
#cms_body strong, .note-editable strong {
  font-weight: 700;
}

#cms_body em, .note-editable em {
  font-style: italic;
}

/* 引用 */
#cms_body blockquote, .note-editable blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
  font-style: italic;
}

/* 画像 */
#cms_body img, .note-editable img {
  max-width: 100%;
  height: auto;
  margin: 1.2em auto;
}

/* リンク */
#cms_body a, .note-editable a {
  color: #007acc;
  text-decoration: underline;
}

#cms_body a:hover, .note-editable a:hover {
  text-decoration: none;
}

/* テーブル */
#cms_body table, .note-editable table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
  font-size: 0.95em;
}

#cms_body th, .note-editable th,
#cms_body td, .note-editable td {
  border: 1px solid #ccc;
  padding: 0.6em 0.8em;
  text-align: left;
}

#cms_body th, .note-editable th {
  background: #f8f8f8;
  font-weight: 600;
}

/* コード */
#cms_body pre, .note-editable pre,
#cms_body code, .note-editable code {
  font-family: monospace;
  background: #f4f4f4;
  border-radius: 4px;
}

#cms_body pre, .note-editable pre {
  padding: 1em;
  overflow-x: auto;
}

#cms_body code, .note-editable code {
  padding: 0.2em 0.4em;
}