a.c-pageLink{
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  color: #775E00;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.5;
  padding: 15px;
  border-radius: 4px;
  border: 2px solid #CEBC81;
}
.c-pageLink__txt{
  position: relative;
  display: block;
  font-size: 1.6rem;
  padding-right: 20px;
}
.c-pageLink__txt::after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #9E9265;
  border-right: 2px solid #9E9265;
  top: 50%; right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.c-pageLink__img{
  width: 100%;
  height: 95px;
  object-fit: cover;
  margin-top: auto;
  padding-top: 10px;
}

/* ホバー時 */
.c-pageLink:hover{
  opacity: .7;
}
.c-pageLink:hover .c-pageLink__img{
  opacity: 1;
}