#download .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 868px) {
  #download .list {
    grid-template-columns: 1fr;
  }
}
#download .list a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto auto;
  word-break: break-all;
  text-decoration: none;
  color: #000;
  background: #FFF;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  #download .list a {
    grid-template-columns: 1fr;
  }
}
#download .list a:focus-visible img {
  transform: scale(1.22);
}
#download .list a:focus-visible div:last-child:before {
  background: #FFF;
}
#download .list a:focus-visible div:last-child:after {
  animation: scales 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#download .list a:focus-visible div:last-child > span:before {
  transform: scale(1, 1);
}
@media (any-hover: hover) {
  #download .list a:hover img {
    transform: scale(1.22);
  }
  #download .list a:hover div:last-child:before {
    background: #FFF;
  }
  #download .list a:hover div:last-child:after {
    animation: scales 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  #download .list a:hover div:last-child > span:before {
    transform: scale(1, 1);
  }
}
#download .list a > div:nth-child(1) {
  border-bottom: 1px solid #000;
}
#download .list a > div:nth-child(1) h2 {
  font-family: "Zen Old Mincho", serif;
  padding: 20px 10px;
  font-size: 1.25rem;
  align-content: center;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin: 0;
}
#download .list a > div:nth-child(2) {
  grid-row: span 2;
  border-left: 1px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #download .list a > div:nth-child(2) {
    order: 3;
    border-left: none;
    border-top: 1px solid #000;
  }
}
#download .list a > div:nth-child(2) img {
  aspect-ratio: 309/154;
  object-fit: cover;
  height: 100%;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#download .list a > div:nth-child(3) {
  padding: 10px;
  line-height: 1.875;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  #download .list a > div:nth-child(3) {
    order: 2;
  }
}
#download .list a > div:nth-child(4) {
  grid-column: span 2;
  font-size: 1.125rem;
  padding-left: 10px;
  text-align: left;
  overflow: hidden;
  border: none;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  #download .list a > div:nth-child(4) {
    grid-column: auto;
    order: 4;
  }
}
#download .list img {
  width: 100%;
  object-fit: cover;
}