.section_documentDL {
  background-color: #F3F5F9;
}
.section_documentDL h2 {
  margin-bottom: 48px;
}
.section_documentDL .documentList {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  padding: 0;
}
.section_documentDL .documentList .documentItem {
  display: block;
  width: calc(33.33% - 40px);
  text-align: center;
  list-style-type: none;
}
.section_documentDL .documentList .documentItem img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 12px;
}
.section_documentDL .documentList .documentItem .documentBtn {
  display: inline-block;
  font-size: 0.8rem;
  color: #000E61;
  text-decoration: none;
}
.section_documentDL .documentList .documentItem .documentBtn img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: auto;
}
@media (max-width: 768px) {
  .section_documentDL .documentList {
    flex-direction: column;
    row-gap: 40px;
  }
  .section_documentDL .documentList .documentItem {
    width: 100%;
  }
  .section_documentDL .documentList .documentItem img {
    height: auto;
}