@charset "UTF-8";

#jagavoice #main{
  margin-bottom: 40px;
}

.page_ttl{
  margin-top: 15px;
}

/* 日付見出し 電子版head準拠*/
.date{
  margin-top: 20px;
  padding: 10px;
  background-color: #eee;
  position: relative;
}

.date:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #ddd;
  background-image: -webkit-linear-gradient(left, #ccc, #666, #ccc);
  background-image: -moz-linear-gradient(left, #ccc, #666, #ccc);
  background-image: -ms-linear-gradient(left, #ccc, #666, #ccc);
  background-image: -o-linear-gradient(left, #ccc, #666, #ccc);
}

/* 各ボイスアイテム（audio + DJ名 + 記事） */
.voice_item{
  /* border-top: 1px solid #ddd; */
  display: flex;
  align-items: center;
  padding: 5px 0;
  flex-wrap: wrap;
}

/* audioタグ */
audio{
  width: 40%;
}

/* DJ名 */
.dj_name{
  height: 26px;
  margin: 0 10px;
  border: 1px solid #4a352c;
  font-size: 10px;
  padding: 0 5px;
  color: #4a352c;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* 記事リンク */
.article_links{
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.article_links p{
  margin: 0 5px 0 0;
}

.article_links_item{
  display: flex;
}

.article_links_item a{
  width: 26px;
  height: 26px;
  margin: 0 4px;
  background-color: #a49a95;
  color: #fff;
  line-height: 1;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.article_links a:hover{
  background-color: #4a352c;
  text-decoration: none;
}

/*========================================================
  記事リスト 2018.3.29追記 matsuhisa
========================================================*/
.article-list_ul {
  margin:5px 0 30px;
  padding:15px 18px;
  border:solid 1px #ccc;
  border-radius:3px;
  background-color:#fafafa;
}

.article-list_ttl {
   margin-bottom:8px;
   padding-bottom:8px;
   border-bottom:solid 1px #ddd;
   font-size: 12px;
}

.article-list_item{
  font-size: 13px;
  display:flex;
  align-items:center;
  line-height:1.4;
}

.article-list_item:not(:last-child){
  margin-bottom:6px;
}

.article-list_item:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right:5px;
  font-size:10px;
  color:#888;
}



/*===============================================
  画面の横幅が600px以下
===============================================*/
@media screen and (max-width:600px){
  audio{
    width: 100%;
    margin-bottom: 10px;
  }

  .voice_item{
    padding: 15px 0;
  }

  .dj_name{
    margin-left: 0;
    margin-bottom: 5px;
  }

  .article_links {
    margin: 0;
    margin-bottom: 5px;
  }

  .article_links p{
    font-size: 12px;
  }

  .article_links_item a{
    margin: 0 2px;
  }

  .article-list_ul {
    margin:5px 0 25px;
    padding:15px;
  }

  .article-list_item{
    font-size: 12px;
  }

}
