/* ページ上の書式を解除 */
#content .content_inner .wysiwyg * {
    all: revert;
}

/* 疑似要素の解決 */
#content .content_inner .wysiwyg *:before,
#content .content_inner .wysiwyg *:after {
    content: none;
}

/* 見出し */
#content .content_inner .wysiwyg h1,
#content .content_inner .wysiwyg h2,
#content .content_inner .wysiwyg h3,
#content .content_inner .wysiwyg h4,
#content .content_inner .wysiwyg h5,
#content .content_inner .wysiwyg h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
#content .content_inner .wysiwyg h1 {
    font-size: 2.5rem;
}
#content .content_inner .wysiwyg h2 {
    font-size: 2rem;
}
#content .content_inner .wysiwyg h3 {
    font-size: 1.75rem;
}
#content .content_inner .wysiwyg h4 {
    font-size: 1.5rem;
}
#content .content_inner .wysiwyg h5 {
    font-size: 1.25rem;
}
#content .content_inner .wysiwyg h6 {
    font-size: 1rem;
}

/* blockquote */
#content .content_inner .wysiwyg .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
#content .content_inner .wysiwyg blockquote {
    background-color: #fff;
    border-left: 0.7rem solid #007bff;
    margin: 1.5em 0.7rem;
    padding: 0.5em 0.7rem;
}

/* テーブル */
#content .content_inner .wysiwyg table {
    border-collapse: collapse;
}
#content .content_inner .wysiwyg .table:not(.table-dark) {
    color: inherit;
}
#content .content_inner .wysiwyg .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    background-color: transparent;
}
#content .content_inner .wysiwyg .table-bordered {
    border: 1px solid #dee2e6;
}
#content .content_inner .wysiwyg .table-bordered td,
#content .content_inner .wysiwyg .table-bordered th {
    border: 1px solid #dee2e6;
}
#content .content_inner .wysiwyg .table td,
#content .content_inner .wysiwyg .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

/* 画像 */
#content .content_inner .wysiwyg img {
    vertical-align: middle;
    border-style: none;
}
#content .content_inner .wysiwyg img.note-float-right {
    margin-left: 10px;
}
#content .content_inner .wysiwyg img.note-float-left {
    margin-right: 10px;
}