h3 {
  padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
}
h4 {
  padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  border-left: solid 3px #ffaf58;/*左線（実線 太さ 色）*/
}
h4:after {
  content: "";
  display: block;
  line-height: 1.4;/*行高*/
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
}

h5 {
  position: relative;/*相対位置*/
  padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
}

h5:before {
  font-family: "Font Awesome 5 Free";/*忘れずに*/
  content: "\f138";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0.25em;/*アイコンの位置*/
  top: 0.5em;/*アイコンの位置*/
  color: #ffaf58; /*アイコン色*/
}

dl {
  position: relative;
  padding-left: 1.5em;/*アイコン分のスペース*/
  line-height: 1.4;
}

dt{
  position: relative;
  padding-left: 1.2em;
  line-height: 1.4;
}

dt::before{
  font-family: "Font Awesome 5 Free";
  content: "\f303"; /* FAのチェック */
  font-weight: 1000;
  position: absolute;
  left: 0;
  top: 0;
  color: #ffca2c;
}