.editor-styles-wrapper{
    font-family: 'IBM Plex Sans JP',"メイリオ", "Meiryo","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.editor-styles-wrapper h2 {
    font-size: clamp(1.375rem, 0.946rem + 1.07vw, 1.75rem);
    position: relative;
    min-height: 94px;
    display: flex;
    align-items: center;
    padding-left: 35px;
    margin:20px 0;
    letter-spacing: 1px;
}
.editor-styles-wrapper h2:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(https://choujin.jp/images/common/topics2-bg.svg) no-repeat;
    width: 125px;
    height: 94px;
    background-size: cover;
    z-index: -1;
}
.editor-styles-wrapper h3{
    position: relative;
    background: #fff;
    transform: skewX(-5deg);
    border: 1px solid #4c4c4c;
    font-size: clamp(1.25rem, 1.107rem + 0.36vw, 1.375rem);
    padding: 15px;
    width: 80%;
    margin: 2em 0 1em 0;
}
.editor-styles-wrapper h3:before{
    position: absolute;
    content: "";
    right: -20%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20%;
    height: 1px;
    background: #4c4c4c;
    z-index: 1;
}

.editor-styles-wrapper h4{
    position: relative;
    font-size: clamp(1rem, 0.857rem + 0.36vw, 1.125rem);
    padding: 15px;
    margin: 2em 0 1em 0;
    border-bottom: 1px solid #4c4c4c;
}
.editor-styles-wrapper h4:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: -4px;
    width: 20%;
    height: 4px;
    background: #4c4c4c;
}
.editor-styles-wrapper h5{
    font-size: clamp(0.938rem, 0.866rem + 0.18vw, 1rem);
    padding: 9px 15px 6px 15px;
    margin: 2em 0 1em 0;
    border: 1px solid #4c4c4c;
    position: relative;
}
.editor-styles-wrapper h5:before{
    position: absolute;
    content: "";
    right: -1px;
    top: -1px;
    width: 16px;
    height: 16px;
    background: url(https://choujin.jp/images/blog/fusen.svg) no-repeat;
    background-size: cover;
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol{
    list-style: none;
    margin: 1em 0 2em 0;
    padding: 0;
}
.editor-styles-wrapper ul li{
    position: relative;
    padding: 0 0 0 20px;
    margin: 10px 0;
}
.editor-styles-wrapper ul li:before{
    position: absolute;
    content: "";
    left: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #888;
}
.editor-styles-wrapper ol{
    counter-reset: count 0;
}
.editor-styles-wrapper ol li{
    position: relative;
    padding: 0 0 0 20px;
    margin: 10px 0;
}
.editor-styles-wrapper ol li:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: counter(count) ". ";
    counter-increment: count 1;
    color: #fff;
}