h3 {
  padding: 0.5em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #eaf3ff;/*背景色*/
  border-bottom: solid 3px #516ab6;/*下線*/
}

h4 {
     position: relative;
     padding-left: 1em;
}

h4::after {
     position: absolute;
     top: 50%;
     left:0;
     transform:translateY(-50%);
     content: '';
     width: 10px;
     height:10px;
     border: solid 4px #446689;
     border-radius:100%;
}

dl.table {
  //width: 30%;
  //width: 100%;
  display: flex;
  flex-wrap: wrap;
  //margin: 10px auto;
  margin-left: 20px;
}

.table dt {width: 7%;}
.table dd {
  width: calc(100% - 7%);
  margin-left: 0;
  text-align: justify;
}

.table > div {width: 100%;}
.table > div > dt {width: 100%;}
.table > div > dd {
  width: calc(100% - 7%);
  margin-left: 7%;
  text-align: justify;
}

//.aaa {
////  display: inline-block;
//  color:red;
//  margin-left: 10%;
//}

//.bold {
//  font-weight: bold;
//}
//
//.red-bold {
//  font-weight: bold;
//  color: red;
//}
