@charset "utf-8";
/* CSS Document */
:root {
  --theme_dx: #0B1A6F;
  --theme_date: #D66C00;
}

a {
  color: #052674;;
}

.whitepaper__title {
  padding-left: 10px;
  border-left: 6px solid var(--theme_dx);
  font-size: 22px;
  margin-bottom: 30px;
}

.downloadBoxList_lst {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

.downloadBoxList_itm .downloadBox_ttl {
  color: #02243b;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.downloadBoxList_itm .downloadBox_ttl + .downloadBox_msg {
  margin-top: 5px;
}

.downloadBoxList_itm .downloadBox_msg {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .whitepaper_download {
    width: 90%;
    margin: auto;
  }

  .downloadBoxList_lst {
    flex-direction: column;
    gap: 0;
  }

  .downloadBoxList_itm:first-child {
    padding-top: 0;
  }
  
  .downloadBoxList_itm .downloadBox_ttl {
    font-size: 14px;
  }

  .downloadBoxList_itm .downloadBox_msg {
    font-size: 12px;
  }
  .downloadBoxList_btn {
    font-size: 12px;
  }
}