/* Gutenbergの標準スタイル */
#post .wp-block {
    margin: 0 0 1.5em;
}

div{
    line-height: 1.3;
}

/* 見出し */
#post h1, #post .wp-block-heading h1 {
    font-size: 1.5em;
    margin: 0.67em 0;
    font-weight: 900;
    line-height: 1.3;
    color: #B07FB6;
    font-family: 'Noto serif', serif;
}

#post h2, #post .wp-block-heading h2 {
    font-size: 1.75em;
    margin: 0.83em 0;
    font-weight: 900;
}

#post h3, #post .wp-block-heading h3 {
    font-size: 1.5em;
    margin: 1em 0;
    font-weight: 900;
}

#post h4, #post .wp-block-heading h4 {
    font-size: 1.25em;
    margin: 1.33em 0;
    font-weight: 900;
}

#post h5, #post .wp-block-heading h5 {
    font-size: 1em;
    margin: 1.67em 0;
    font-weight: 900;
}

#post h6, #post .wp-block-heading h6 {
    font-size: 0.875em;
    margin: 2.33em 0;
    font-weight: 900;
}

/* 段落 */
#post p, #post .wp-block-paragraph {
    margin: 0 0 1.5em;
}

/* リスト */
#post ul, #post .wp-block-list,
#post ol, #post .wp-block-list {
    margin: 0 0 1.5em;
    padding-left: 1.5em;
    list-style-type: disc; /* ulのリストアイテムのマーカーを表示 */
}

#post ol {
    list-style-type: decimal; /* olのリストアイテムの番号を表示 */
}

#post ul li, #post .wp-block-list li,
#post ol li, #post .wp-block-list li {
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* 引用 */
#post blockquote, #post .wp-block-quote {
    border-left: 4px solid #ccc;
    margin: 0 0 1.5em;
    padding-left: 1em;
    color: #666;
    font-style: italic;
}

/* 画像 */
#post img, #post .wp-block-image img {
    max-width: 100%;
    height: auto;
}

/* リンク */
#post a, #post .wp-block a {
    color: #0073aa;
    text-decoration: none;
}

#post a:hover, #post .wp-block a:hover,
#post a:focus, #post .wp-block a:focus {
    color: #005177;
    text-decoration: underline;
}

/* コードブロック */
#post pre, #post .wp-block-code {
    background: #f5f5f5;
    padding: 1em;
    overflow: auto;
}

#post code, #post .wp-block-code code {
    font-family: Consolas, Monaco, monospace;
    background: #f5f5f5;
    padding: 0.2em 0.4em;
    margin: 0;
    border-radius: 3px;
}

/* テーブル */
#post table, #post .wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5em;
}

#post th, #post .wp-block-table th,
#post td, #post .wp-block-table td {
    border: 1px solid #ddd;
    padding: 0.75em;
}

#post th, #post .wp-block-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}

#post caption, #post .wp-block-table caption {
    caption-side: bottom;
    text-align: center;
    padding: 0.75em;
}

/* インライン要素 */
#post strong {
    font-weight: bold;
    margin: 0.75em 0;
    line-height: 1.8;
    /* list-style-type: revert; */
}

#post em {
    font-style: italic;
}

#post u {
    text-decoration: underline;
}

#post del {
    text-decoration: line-through;
}

#post mark {
    background-color: #ff0;
    color: #000;
}

#post sub {
    vertical-align: sub;
    font-size: smaller;
}

#post sup {
    vertical-align: super;
    font-size: smaller;
}
