h3 span {
    display: block;
    font-size: 1.6rem;
    color: #626262;
}
dl{
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 80px 0;
}
dl dt{
  width: 20%;
  padding: 30px 5% 30px 20px;
  border-bottom: 1px solid #333;
  text-align: center;
  color: #00005d;
  font-weight: bold;

}
dl dd{
  width: 75%;
  border-bottom: 1px solid #333;  
  padding: 30px;
}
dl dt:first-of-type{
  border-top: 1px solid #333;
}
dl dd:first-of-type{
  border-top: 1px solid #333;
}
dl dd a{
  border-bottom: 1px solid #333;
  
}


  @media screen and (max-width: 800px){
    dl{
      display: block;
    }
    dl dt{
      width: 100%;
      border-bottom: none;
      padding: 30px 5% 0 20px;
      text-align: left;
    }
    dl dd{
      width: 100%;
      padding: 30px 5% 30px 20px;
    }
    dl dd:first-of-type{
      border-top: none;
    }    
  }