@charset "UTF-8";
/* CSS Document */
/*============================
 SUBPAGE_COMMON
============================*/
.pdfFlex {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pdfList {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pdfList li {
  width: 100%;
}
.pdfList li a {
  background: #ffc400;
  color: #000;
  display: block;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
}
.pdfList li a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .pdfList {
    width: 100%;
    margin-bottom: 20px;
  }
  .pdfList li a {
    background: #ffc400;
    color: #000;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
  }
}
