.list-row{
  display:flex;
  width:100%;
  align-items:stretch;   /* ← これ重要 */
}

.list-wrappleft {
  clear: both;
  width: 50%;
  display:flex;          /* ← 追加 */
}
.list-wrappright {
  width: 50%;
  display:flex;          /* ← 追加 */
}

.list-left {
  width: 100%;
  margin : 0 ;
  padding : 0 ;
  /*天右地左*/
  text-align: left ;
}
.list-right {
  width: 100%;
  margin : 0 ;
  padding : 0 ;
  /*天右地左*/
  text-align: left ;
}

table.list {
  width:100%;
  height:100%;           /* ← これが決定打 */
  border-collapse: collapse;
}

td.list {
  border-collapse: collapse;

  border-width : 1px 1px 0 1px;
  border-style : solid;
  padding : 5px;
  line-height:100%;
}

/* レスポンシブ指定 */
@media (max-width: 768px) {
  .list-row{
    flex-direction: column;
  }

  .list-wrappleft,
  .list-wrappright{
    width:100%;
  }
}
