@charset "UTF-8";


/* ダウンロード一覧 ------------------------*/
.list li
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0;
}

.list li .item:first-child
{
  width: 45.5px;
}

.list li .item:nth-child(2)
{
  width: calc(100% - 180.5px);
  padding: 0 16px 0 38px;
}

.list li .item:nth-child(3)
{
  width: 135px;
}

.list li .item:nth-child(3) a
{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 40px;
  color: #fff;
  background: #036EB8;
}

.list li .item .top
{
  border-bottom: 1px solid #aaa8a8;
  padding-bottom: 2px;
  margin-bottom: 5px;
}

.list li .item .top span:first-child
{
  font-size: 17px;
  font-weight: bold;
  padding-right: 20px;
  display: inline-block;
  width: 50%;
}

.list li .item .bottom
{
  font-size: 12px;
}

.list li .item .bottom img
{
  height: 15px;
  margin-right: 5px;
}

@media screen and (max-width: 900px)
{
  .list li .item
  {
    text-align: center;
  }

  .list li .item:first-child,
  .list li .item:nth-child(2),
  .list li .item:nth-child(3)
  {
    width: 100%;
    padding: 0;
  }

  .list li .item:nth-child(2)
  {
    margin-bottom: 15px;
  }

  .list li .item:first-child img
  {
    width: 50px;
  }

  .list li .item .top
  {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .list li .item .top span:first-child
  {
    width: 100%;
    font-size: 15px;
    padding-right: 0;
    padding: 15px 0 5px;
  }
}

/* ダウンロード詳細 ------------------------*/
.dl_content
{
  margin: 0 auto 100px;
}

.dl_content .flex
{
  display: flex;
  justify-content: center;
}

.dl_content .flex a
{
  display: block;
  text-align: center;
  border: 1px solid #707070;
  width: 217px;
  height: 246px;
  background: linear-gradient(#fff 0%, #dbdbdb 100%);
  transition: all 0.3s 0s ease
}

.dl_content .flex a:hover
{
  background: linear-gradient(#dbdbdb 0%, #fff 100%);
}

.dl_content .flex a img
{
  width: 45.5px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.dl_content .flex p
{
  font-size: 12px;
}

.dl_content .btn_area
{
  text-align: center;
  margin: 90px auto;
  display: block;
  border-bottom: 1px solid #B5272D;
  color: #B5272D;
}

@media screen and (max-width: 900px)
{
  .dl_content
  {
    margin: 50px auto 0;
  }

  .dl_content .btn_area
  {
    margin: 40px auto 60px;
  }
}