.hl_box {
  width: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5rem;
  border: 2rem solid #cb85c5;
  box-shadow: 0 4rem 4rem rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.hl_box img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hl_box .hl_title {
  width: 100%;
  text-align: center;
  font-size: 1.25em;
  font-weight: 400;
  margin: auto;
}

.hl_box:hover {
  background-color: #cb85c5;
  transform: scale(1.05);
}
.hl_box:hover .hl_title {
  color: white;
  font-weight: 600;
}