@charset "utf-8";

ul.ul_list{
  position: relative;
  padding: 15px 15px 15px 30px;
  font: 14px/1.6 'arial narrow', sans-serif;
  border: solid 2px #1B435D;
  border-radius:8px;
  color: #1B435D;
  width:290px;
  background: #fff;
}
ul.ul_list:before{
  content: "目次"; 
  position: absolute;
  display: block;
  top: -15px;
  left: 20px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0 10px;
}
ul.ul_list li{
  font-weight: bold;
}

.article-body h1{
     position: relative;
     color: white;
     padding:0.5em 0.5em 0.5em 1.4em;
     background-color: #1B435D;
     border-radius: 5px;
}
.article-body h1::after {
     position: absolute;
     top: 50%;
     left:0.7em;
     transform:translateY(-50%);
     content: '';
     width: 5px;
     height:25px;
     background-color:white;
}

.article-body h4 {
    border-bottom:1px dashed #1B435D;
    color:  #1B435D;
}
