@charset "UTF-8";

.wp-block-heading.is-style-hedding_thick{
    padding: 0 0.25em;/*上下 左右の余白*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #B5402D;/*左線*/
}
.wp-block-heading.is-style-hedding_thin {
position: relative;
  margin-bottom: 1em;
}
.wp-block-heading.is-style-hedding_thin::before{
    content: '';
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 40px;
  height: 5px;
  left: 0px;
  background-color: #B5402D;
  border-radius: 2px;
}
.wp-block-heading.is-style-hedding_side{
position: relative;
margin-left: 1em;
}
.wp-block-heading.is-style-hedding_side::before{
    content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 50%;
  left: -1em;
  transform: translateY(-50%);
  background-color: #B5402D;
}