@charset "UTF-8";


/* WYSIWYGエディタ要素のデフォルトスタイル */
.dx-presentation {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
  }

  /* 見出し */
  .dx-presentation h1 {
	font-size: 2em;
	margin: 0.67em 0;
	font-weight: bold;
  }

  .dx-presentation h2 {
	font-size: 1.5em;
	margin: 0.83em 0;
	font-weight: bold;
  }

  .dx-presentation h3 {
	font-size: 1.17em;
	margin: 1em 0;
	font-weight: bold;
  }

  .dx-presentation h4 {
	font-size: 1em;
	margin: 1.33em 0;
	font-weight: bold;
  }

  .dx-presentation h5 {
	font-size: 0.83em;
	margin: 1.67em 0;
	font-weight: bold;
  }

  .dx-presentation h6 {
	font-size: 0.67em;
	margin: 2.33em 0;
	font-weight: bold;
  }

  /* 段落 */
  .dx-presentation p {
	margin: 1em 0;
  }

  /* リスト */
  .dx-presentation ul {
	display: block;
	list-style-type: disc;
	margin: 1em 0;
	padding-left: 40px;
  }

  .dx-presentation ol {
	display: block;
	list-style-type: decimal;
	margin: 1em 0;
	padding-left: 40px;
  }

  .dx-presentation li {
	display: list-item;
	margin: 0.5em 0;
  }

  /* 引用 */
  .dx-presentation blockquote {
	margin: 1em 40px;
	padding: 0.5em 10px;
	border-left: 5px solid #eee;
	font-style: italic;
  }

  /* テーブル */
  .dx-presentation table {
	border-collapse: collapse;
	width: 100%;
	margin: 1em 0;
  }

  .dx-presentation th,
  .dx-presentation td {
	border: 1px solid #ddd;
	padding: 8px;
  }

  .dx-presentation th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #f2f2f2;
	font-weight: bold;
  }

  /* リンク */
  .dx-presentation a {
	color: #0073aa;
	text-decoration: underline;
  }

  .dx-presentation a:hover {
	color: #00a0d2;
  }

  /* インライン要素 */
  .dx-presentation strong,
  .dx-presentation b {
	font-weight: bold;
  }

  .dx-presentation em,
  .dx-presentation i {
	font-style: italic;
  }

  .dx-presentation code {
	font-family: Consolas, Monaco, monospace;
	background-color: #f5f5f5;
	padding: 2px 4px;
	border-radius: 3px;
  }

  /* 画像 */
  .dx-presentation img {
	max-width: 100%;
	height: auto;
	margin: 1em 0;
  }

  /* 水平線 */
  .dx-presentation hr {
	border: 0;
	height: 1px;
	background-color: #ddd;
	margin: 1.5em 0;
  }

  /* プリフォーマットテキスト */
  .dx-presentation pre {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-family: Consolas, Monaco, monospace;
	padding: 16px;
	overflow: auto;
	margin: 1em 0;
  }