.headline_case {
  display: inline-block;
  padding-left:2.2rem;
  font-size:1.25rem;
  font-weight: bold;
  color: #3666b0;
  background-image: url('/assets/images/case/note.svg');
  background-repeat: no-repeat;
  background-position: left;
}
.caseListWrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.caseList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.caseList.--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cardList__item {
  width: calc((100% - 30px) / 3);
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
}

.cardList__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cardList__item:hover {
  box-shadow: 0px 2px 6px #00000029;
  opacity: 1;
}
.cardList__heading {
  text-align: left;
  font-weight: bold;
  padding: 1rem 1rem 0 1rem;
}
.cardList__description {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0 1rem 1rem 1rem;;
  flex-grow: 1;
}
.cardList__tocase {
  text-align: right;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0 1.5rem 0 1rem;
  color: #183C85;
  font-weight: bold;
  background-image: url('/assets/images/case/arrow_right.svg');
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 47.875em) {
  .caseList {
    display: flex;
    flex-direction: column;
  }
  .cardList__item {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 20px;
  }
}