<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ================================
 *
 * システム吐き出し用CSS
 *
 * システムから出力されるテキスト全体を囲む&lt;div&gt;等に
 * class="system_article"を付与すること。
 *
 * ================================ */

/* 文字色・文字サイズなどのデフォルト設定 */
.system_article p,
.system_article ul,
.system_article ol {
  color: #222 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
  margin-bottom: 1.2em !important;
}
.system_article p:last-child,
.system_article ul:last-child,
.system_article ol:last-child {
  margin-bottom: 0 !important;
}


/* リンクテキスト */
.system_article a {
  color: #37d !important;
  text-decoration: underline !important;
}
.system_article a:hover {
  text-decoration: none !important;
}
.system_article a:active {
  text-decoration: underline !important;
}


/* 左揃え・中央揃え・右揃え */
.system_article p {
  min-height: 1.4em !important;
}

.alignleft {
  float: left !important;
  margin-right: 20px !important;
  margin-bottom: 20px !important;
}

.alignright {
  float: right !important;
  margin-left: 20px !important;
  margin-bottom: 20px !important;
}

.system_article .aligncenter,
.system_article img.aligncenter {
  clear: both !important;
  display: block !important;
  margin: 0 auto !important;
}


/* 写真のキャプションの揃え */
.wp-caption-text {
  text-align: center !important;
}

.system_article img {
  max-width: 100% !important;
  height: auto !important;
}

/* 箇条書きリスト */
.system_article ul,
.system_article ol {
  padding-left: 1.5em !important;
}
.system_article ul {
  list-style: disc !important;
}
.system_article ol {
  list-style: decimal !important;
}
.system_article li {
  margin-bottom: .5em !important;
}


/* 太字 */
.system_article strong {
  font-weight: boldl !important;
}


/* 斜体 */
.system_article em {
  font-style: italic !important;
  font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace  !important;
  font-weight: normal !important;
}


/* 見出しの基本設定 */
.system_article h1,
.system_article h2,
.system_article h3 {
  clear: both !important;
  font-weight: bold !important;
  line-height: 1.4 !important;
}

.system_article h1:first-child,
.system_article h2:first-child,
.system_article h3:first-child {
  margin-top: 0 !important;
}

.system_article h1 {
  margin-top: 2.4em !important;
  margin-bottom: 1.2em !important;
  font-size: 1.25em;
}
.system_article h2 {
  margin-top: 2em !important;
  margin-bottom: 1em !important;
  font-size: 1.25em;
}
.system_article h3 {
  margin-top: 1.6em !important;
  margin-bottom: .8em !important;
  font-size: 1.2em;
}


/* 表組み */
.system_article table {
  width: 100% !important;
  max-width: 100% !important;

  margin: 1em 0 1.4em !important;

  border-collapse: collapse !important;

  border-top: 1px solid #ccc !important;
  border-left: 1px solid #ccc !important;
}

.system_article th,
.system_article td {
  font-size: .9em !important;

  padding: .4em !important;

  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
}

.system_article th {
  text-align: center !important;

  background-color: #eee !important;
}

.system_article td {
  background-color: #fff !important;
}
</pre></body></html>