.wp-block-heading[class*="heading-style-"],
h1[class*="heading-style-"],
h2[class*="heading-style-"],
h3[class*="heading-style-"],
h4[class*="heading-style-"],
h5[class*="heading-style-"],
h6[class*="heading-style-"] {
    font-weight: normal;
}

/* 装飾なし */
.heading-style-none {
    padding: 0;
    background: none;
    border: none;
}

/* 斜めストライプ */
.heading-style-stripe {
    padding: 14px 16px;
    background-image: repeating-linear-gradient(
        -45deg,
        #f1f1f1 0,
        #f1f1f1 4px,
        #fff 4px,
        #fff 8px
    );
}

/* 下線 */
.heading-style-underline {
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

/* 下線ストライプ */
.heading-style-stripe-line {
    padding-bottom: 14px;
    position: relative;
}

.heading-style-stripe-line::after {
    content: "";
    display: block;
    height: 8px;
    margin-top: 12px;
    background-image: repeating-linear-gradient(
        -45deg,
        #333 0,
        #333 1px,
        transparent 1px,
        transparent 5px
    );
}

/* 帯 */
.heading-style-belt {
    padding: 14px 16px;
    background: #f5f5f5;
}
.wp-block-heading {
    margin: 50px 0 20px;
}
/* エディター内ボタン調整 */
.listing-heading-style-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.listing-heading-style-buttons .components-button {
    margin: 0;
}