/*** user.css ***/

/* 丸かっこリスト */
.c-ol2 {
    margin-left: 3.5em;         /* サイトに合せて調整 */
}
.c-ol2 li {
    list-style-type: none;
    counter-increment: cnt;
    position: relative;
}
.c-ol2 li:before {
    content: "(" counter(cnt) ")";
    display: inline-block;
    margin-left: -3.5em;        /* サイトに合せて調整 */
    width: 3em;                 /* サイトに合せて調整 */
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}

/* ぶら下げインデント：ルート要素のフォントサイズで：全体に１文字右へ＆２行目以降１文字ぶら下げ */
p.hanging-indent {
  margin-left: 1rem;
  text-indent: -1rem;
}
/* 全体インデント：親要素のフォントサイズで：全体に３文字右へ*/
p.indent3,
table.indent3 {
  margin-left: 3em;
}

/* 強調 emphasis */
.c-em {
    font-style: oblique;        /* イタリック・斜体 */
    font-weight: 600;           /* 少し太め(100～ / normal=400 / bold=700) */
}

/* 縁取り bordering（白抜＆黒縁） */ 
.c-white {
    text-stroke: 0.5px #000;
    -webkit-text-stroke: 0.8px #000;
    color: #fff;
}

/* 大きめの上付き（注意）*/ 
.c-caution {
    font-size: 0.8em;     /* 文字サイズ調整 */
    vertical-align: top;  /* 文字の位置調整 */
}
