.link_box {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.link_box .link {
  width: 100%;
  aspect-ratio: 1.22/1;
  background-color: rgba(255, 251, 255, 0.7);
  border-radius: 30rem;
  border: 10rem solid #e7cbe5;
  box-shadow: 0 4rem 4rem rgba(0, 0, 0, 0.25);
  display: flex;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}
.link_box .link img {
  width: 80%;
  aspect-ratio: 2.8/1;
  object-fit: contain;
  margin: auto;
}
.link_box .link_title {
  width: 100%;
  margin: auto;
  font-size: 1.5em;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link_box:hover .link {
  background-color: #d497cf;
  border: 10rem solid #f9f9f9;
  transform: scale(1.05);
}
.link_box:hover .link_title {
  font-weight: 600;
}