@charset "UTF-8";


#download_txt {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 80px;
}
.download_sec {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.download_sec .subpage_h2 {
  margin: 0;
}
.download_sec ul li {
  margin: 30px 0 0;
}
.download_btn {
  display: inline-block;
}
.download_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #F4F4F4;
  padding: 15px 20px;
  color: #000000;
  transition: 0.3s;
}
.download_btn a::before {
  flex-shrink: 0;
  background: url("../images/common/icon_link_arrow.svg") no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  width: 8px;
  height: 16px;
  margin: 0 10px 0 0;
}
.download_btn a::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 20px;
  height: 26px;
  background: url("../images/common/icon_pdf_red.svg") no-repeat center center;
  background-size: contain;
  margin: 0 0 0 30px;
}
.download_btn a:hover {
  text-decoration: none;
  background-color: #ED7476;
  transition: 0.3s;
  color: #ffffff;
}
.download_btn a:hover::before {
  background: url("../images/common/icon_link_arrow_white.svg") no-repeat center center;
  background-size: contain;
}
.download_btn a:hover::after {
  background: url("../images/common/icon_pdf_white.svg") no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  #download_txt {
    margin: 0 auto 35px;
  }
  .download_sec ul li {
    margin: 20px 0 0;
  }
  .download_btn a {
    padding: 12px 15px;
  }
  .download_btn a::before {
    margin: 0 8px 0 0;
  }
  .download_btn a::after {
    content: "";
    display: block;
    width: 18px;
    height: 24px;
    margin: 0 0 0 20px;
  }
}

