@charset "utf-8";
/*------------------------------------------------------------------

  資料ダウンロード

------------------------------------------------------------------*/

/* PC以下共通サイズ------------------------------- */
.ttl_area {
  margin-bottom: 50px;
}
.content {
  background: none;
  padding-top: 0;
}
.documents_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.8%;
}
.documents_list .item {
  position: relative;
  flex: 0 0 32%;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 110px;
  border: solid 2px #fff;
  background: #fff;
}
.documents_list .img_area {
  display: flex;
  width: 100%;
  background: var(--c-lightgreen);
  justify-content: center;
  padding: 10px;
}
.documents_list .img_area img {
  height: 150px;
}
.documents_list .item_info {
  padding: 20px 30px 0;
}
.documents_list .ttl {
  color: var(--c-green);
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
}
.documents_list .txt_small {
  color: var(--c-gray);
  text-align: center;
  display: block;
  margin-bottom: 5px;
}
.documents_list .btn_area {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
}
.documents_list .btn {
  font-size: 15px;
  line-height: 52px;
  max-width: 250px;
}
.documents_list .btn:before {
  content: "\f019";
}

/* PCのみサイズ------------------------------- */
@media screen and (min-width: 1025px) {
}

/* タブレット（iPad Pro）以下サイズ------------------------------- */
@media screen and (max-width: 1024px) {
}

/* タブレット（iPad）以下サイズ------------------------------- */
@media screen and (max-width: 1023px) {
  .article_header .img_area {
    width: 46%;
    top: 60px;
  }
  .documents_list .item {
    flex: 0 0 48%;
  }
}

/* スマホサイズ------------------------------- */
@media screen and (max-width: 767px) {
  .documents_list .item {
    flex: 0 0 100%;
  }
}
