@charset "UTF-8";

.c-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  padding: 32px 24px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .c-cards {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .c-cards:last-child {
    margin-bottom: 64px;
    border-bottom: 1px dashed #999;
  }
}
.c-card {
  width: calc(calc(100% - 16px * 3) / 4);
}
@media screen and (max-width: 750px) {
  .c-card {
    width: 100%;
  }
  .c-card:not(:first-child) {
    border-top: 1px dashed #999;
  }
}
@media screen and (max-width: 750px) {
  .c-card__link {
    display: block;
    position: relative;
    padding: 12px 34px 12px 12px;
  }
  .c-card__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: calc(8px / -2);
    width: 8px;
    height: 8px;
    border-right: 2px solid #1C7E67;
    border-bottom: 2px solid #1C7E67;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.c-card__img img {
  border-radius: 8px;
}
@media screen and (max-width: 750px) {
  .c-card__img img {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .c-card__link .c-card__img img {
    transition: all 0.3s;
  }
  .c-card__link:hover .c-card__img img {
    opacity: 0.8;
  }
}
.c-card__info {
  color: #222;
}
.c-card__title {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.c-card__title strong {
  color: #0E5645;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .c-card__title {
    font-size: 16px;
  }
}
.c-card__description {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 510;
}
@media screen and (max-width: 750px) {
  .c-card__description {
    display: none;
  }
}
