/* 基本のカード */
.c-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 2px solid #ccc;
}
.c-card__contents {
  display: flex;
  flex-direction: column;
}
.c-card__title {
  font-weight: bold;
  font-size: 2rem;
  margin: 1.5rem 1rem 1rem;
  order: 2;
}
.c-card__link {
  text-decoration: none;
  color: currentColor;
}
.c-card__link:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-card__text {
  font-size: 1.2rem;
  padding: 0;
  margin: 0 1rem;
  order: 3;
}
.c-card__thumbnail {
  order: 1;
}
.c-card__thumbnail-pict {
  display: block;
  width: 100%;
  height: auto;
}
.c-card__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0.5rem 1rem 1rem;
  order: 4;
}
.c-card__label-item {
  margin: 0 0.5rem 0.5rem 0;
}
.c-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  color: #fff;
  background-color: #ccc;
  transition: opacity 0.5s ease-in-out;
}
.c-card__category:focus,
.c-card__category:hover {
  opacity: 0.7;
}
