/* ページ共通設定*/

body {
    font-size: 14px;
}


/* リストスタイル*/

ol {
    counter-reset: number;
    /*数字をリセット*/
    list-style-type: none!important;
    /*数字を一旦消す*/
    padding: 0.5em;
    border: solid 2px #5c9ee7;
    margin-right: 30px;
}

ol li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 35px;
    line-height: 1.5em;
    border-bottom: dotted cornflowerblue 1px;
    font-size: 16px;
}

ol li:before {
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*数字のデザイン変える*/
    display: inline-block;
    background: #5c9ee7;
    color: white;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    /*円にする*/
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    /*以下 上下中央寄せのため*/
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

ol li:after {
    /*吹き出しのちょこんと出た部分*/
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    /*左からの位置*/
    height: 0;
    width: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #5c9ee7;
    /*以下 上下中央寄せのため*/
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/*　テーブルスタイル*/

table .month {
    text-align: right;
    font-size: 14px;
}

.listhonbun {
    margin-left: 20px;
    padding: 10px;
    line-height: 1.3;
}

.annotation {
    text-decoration: underline;
}