/* ヘッダーのタイトルを非表示（編集する場合に無効にする必要があります） */
.card-header {
display: none;
}
/* コンテンツの線を非表示 */
.card {
border: none;
}
/* 不要なpaddingを無効にして完全全幅化（問題がなければいいけど） */
.card-body {
padding: 0;
}
/* ハンバーガーメニューの色 */
.menu-humburger-button {
background: #8c6239;
}
/* tableタグに関わる */

    table {
    border-collapse: collapse;
    }

    tbody th {
    text-align: center;
    }

    td,
    th {
        border: 1px solid #000;
        vertical-align: middle;
    }

    caption {
        caption-side: bottom;
    }

    th {
        background-color: #f9eee0;
    }
    .big-table {
        font-size: 14px;
    }

/* PDFのダウンロードボタン */
p.pdf-downlord a {
background-color: #007bff;
transition: 0.7s;
padding: 20px 40px;
color: #fff;
}
p.pdf-downlord a:hover {
opacity: 0.7;
}