.c-panel-card {
  flex: 0 1 330px;
  max-width: 330px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 8px 0px #0000001a;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.c-panel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px #0000001a;
}

.c-panel-card__body {
  display: grid;
  gap: 35px;
  padding: 15px 20px 35px 20px;
}

.c-panel-card__title {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  margin: 0;
  /* 2 行まで表示する */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-panel-card__more {
  font-weight: bold;
  font-size: 12px;
  color: #03a9f4;
  background: none;
  border: none;
  cursor: pointer;
}
