.postList01__list {
  margin: 0;
  padding: 0;
}
.postList01__item {
  margin-bottom: 1em;
  list-style: none;
}
.postList01__link {
  display: block;
  padding: 1em 1.2em 1.3em;
  border-radius: 10px;
  border: solid 1px #eee;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.postList01__link:hover {
  opacity: 0.6;
}
.postList01__date {
  font-size: 0.8em;
}
h3.postList01__ttl {
  margin: 0.3em 0 0;
  padding: 0;
  border: none;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: box;
  box-orient: vertical;
  line-clamp: 2;
}
@media screen and (min-width: 992px) {
  .postList01__list {
    margin-top: 0;
  }
  h3.postList01__ttl {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
}
