@charset "UTF-8";
.mainContents .read_txt{
  margin-bottom: 20px;
}
.downloadList li{
  border-bottom: 1px solid #d2d2d2;
}
.downloadList dl{
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.downloadList .date{
  font-weight: normal;
  width: 12%;
  min-width: 88px;
  color: #606060;
}
.downloadList dd{
  display: -webkit-box;
  display: flex;
  align-items: center;
  /* width: 87%; */
  flex-wrap: wrap;
  /* border-left: 3px solid #d2d2d2; */
  padding: 0.8rem 0 0.8rem 0.8rem;
  margin: 0.8rem 0;
  justify-content: space-between;
}
.downloadList .note{
      width: 78%;
}
.downloadList .note .ttl{
      font-weight: bold;
      color: #061b46;
      font-size:1.1rem;
      margin-bottom: 0.5rem;
}
.downloadList .DLbtn{
    background: #061b46;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    width: 20%;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    padding: 0.5rem 0;
    position: relative;
}
.downloadList .DLbtn:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.downloadList .DLbtn:hover{opacity: 0.8;}

@media screen and (max-width: 950px) {
  .downloadList .date{
    width: 20%;
   }
  .downloadList dd{
    display: block;
    width: 80%;
   }
   .downloadList .note{
    width: auto;
   }
   .downloadList .DLbtn{
    width: 90%;
    display: block;
    margin: 1rem auto 0;
  }
}
@media screen and (max-width: 767px) {

  .downloadList .date{
    width: 27%;
   }
  .downloadList dd{
    width: auto;
   }
}