@charset "utf-8";

/***************************
 ** ダウンロードフォーム
 */
.catalog_area {
  padding-bottom: 5rem;
}

.catalog_list {
  flex-wrap: wrap;
}

.catalog_list li {
  flex-basis: 18.4%;
  margin-right: 2%;
  margin-bottom: 2rem;
}

/*.catalog_list li:nth-child(4n) {
  margin-right: 0;
}*/
.catalog_list li:last-child {
  margin-right: 0;
}

/*.catalog_list::before, 
.catalog_list::after {
  content: "";
  display: block;
  width: 23.5%;
  height: 0;
}*/

.catalog_list::before {
  order: 1;
  margin-right: 2%;
}

.catalog_item_ttl {
  font-weight: bold;
  line-height: 1.5;
  min-height: 3em;
  margin-bottom: 0.5em;
}

.catalog_list li p {
  margin-bottom: 0.5rem;
}

.dl_link_btn {
  display: block;
  box-sizing: border-box;
  text-align: center;
  padding: 0.5rem;
  color: #fff;
  background: #1446eb;
  border: 1px solid #1446eb;
  text-decoration: none;
  border-radius: 6px;
  transition: .3s;
}

.dl_link_btn i {
  display: inline-block;
  margin-left: 1em;
}

.dl_link_btn:hover {
  background: #fff;
  color: #1446eb;
}

/* フォーム */
.dl_form_text {
  line-height: 2;
  margin-bottom: 1rem;
}

.dl_form .form_table tr th {
  font-weight: bold;
}

.dl_form .form_table .arbitrary th,
.dl_form .form_table .arbitrary td {
  font-weight: normal;
  font-size: 0.8em;
}

.dl_form .form_table .arbitrary td input {
  font-size: 0.8em;
  max-width: 20em;
}

@media screen and (max-width: 736px) {
  .catalog_area {
    padding-bottom: 3rem;
  }

  .catalog_list li {
    flex-basis: 48%;
    margin-right: 4%;
    margin-bottom: 1.5rem;
  }

  .catalog_list li:nth-child(even) {
    margin-right: 0;
  }
  
  .catalog_list::before {
    content: "";
    display: block;
    width: 48%;
    height: 0;
    margin-right: 4%;
  }

  .catalog_item_ttl {
    font-size: 0.875rem;
  }

  .dl_link_btn {
    font-size: 0.875rem;
  }

  /* フォーム */
  .dl_form_text {
    font-size: 0.75rem;
  }

  .dl_form .form_table .arbitrary td input {
    font-size: 0.7em;
  }
}


/***************************
 ** ダウンロードページ（Thanksページ）
 */
.catalog_dl_lead {
  margin-bottom: 2rem;
}

.catalog_dl_list {
  flex-wrap: wrap;
}

.catalog_dl_list {
  border-top: 1px solid #ccc;
}

.catalog_dl_list li {
  flex-basis: 47.5%;
  box-sizing: border-box;
  padding: 2rem 1rem;
  border-bottom: 1px solid #ccc;
}

.catalog_dl_list li:nth-child(odd) {
  margin-right: 5%;
}

.catalog_dl_list::after {
  content: "";
  display: block;
  width: 47.5%;
  height: 0;
}

.catalog_dl_list li .img {
  flex-basis: 30%;
  margin-right: 5%;
}

.catalog_dl_list li .text {
  flex-basis: 65%;
}

@media screen and (max-width: 736px) {
  .catalog_dl_lead {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }

  .catalog_dl_list li {
    flex-basis: auto;
    padding: 0.5rem;
  }

  .catalog_dl_list li:nth-child(odd) {
    margin-right: 0;
  }

  .catalog_dl_list::after {
    display: none;
  }
}