.info-list__items {
  list-style: none;           /* 点を消す */
  margin: 0;
  padding: 0;
}
.info-list__items span {
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 700;
  color: #fff;
}
.info-list__items p {
  color: #fff;
  margin-left: 30px;
  margin-right: 30px;
  line-height: 3;
}
.info-list__items li {
  display: flex;              /* 子要素を横並びにする */
  justify-content: space-between; /* 左右に広げる */
  align-items: center;        /* 縦方向中央揃え */
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 3rem 0;         /* 上下の余白 */
  border-bottom: 1px solid #ccc; /* 罫線 */
}
.info-list__items li:last-child {
  border-bottom: none;        /* 最後の項目だけ線を消す */
}
li .left {
  flex: 0;
}
li .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .info-list__items span {
    margin-left: 15px;
    margin-right: 100%;
    font-weight: 700;
  }
  .info-list__items p {
    display: block;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .info-list__items li {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 0;         /* 上下の余白 */
    border-bottom: 1px solid #ccc; /* 罫線 */
  }
  li .left {
    flex: 0
  }
  li .right {
    text-align: left;
    margin: 6px auto;
  }
  .right > p {
    color: #ffffff;
    line-height: 2;
    font-size: 0.8em;
  }
}