@charset "utf-8";


/* -- reset_style.css -- */
table {
    table-layout: fixed; /* 固定レイアウトを使用 */
    width: 100%; /* テーブルの幅を100%に設定 */
}
div.contents table td.black {
    text-align: center;
    background: #474747;
    color: #ffffff;
    font-weight: bold;
    border: 1px solid #cccccc;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
div.contents table th.black {
    text-align: center;
    background: #474747;
    color: #ffffff;
    font-weight: bold;
    border: 1px solid #cccccc;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
div.contents table td {
            justify-content: center; /* 水平方向の中央配置 */
            align-items: center; /* 垂直方向の中央配置 */
            height: 100%; /* 高さを100%に設定 */
        }