@charset "UTF-8";


/* コンテンツ

====================================================*/


.article_date {
  font-size: 10px;
  color: #696969;
  text-align: right;
  padding-right: 0;
}


.sns_share {
  display: flex;
  margin: 0 auto;
  padding: 0 20%;
  justify-content: space-evenly;
}

.sns_share_text {
  text-align: center;
  color:#696969;
  font-size: 16px;
  font-weight: bold;
  line-height: 4.25;
}
.sns_share img {
  width: 100px;
  height: 47px;
}

.article_tags {
  display: flex;
  justify-content: space-around;
}

.article_tag {
  font-size: 16;
  font-weight: bold;
  line-height: 1.25;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 2px;
  padding: 16px 20px 16px 12px;
}

.article_cards {
  display: flex;
  justify-content: space-between;
}

.article_card {
  width: 48%;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
  padding: 12px 18px;
  border-radius: 5px;
}

.article_card a {
  text-decoration: none;
}

.article_card_text {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}

.tag_links{
  margin-bottom: 16px;
}

.tag_links li {
  display: inline-block;
  padding: 0 5px;
  border-right: solid;
  border-width: thin;
}

.tag_links li:last-child {
  border-right: none;
}

.tag_links li a {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #09152F;
  text-decoration: none;    
}

.fa_tag:before {
  content: "\f02b";
  font-family: "FontAwesome", "Font Awesome 6 Free";
  color: #000;
}

@media screen and (max-width: 600px) {
  .article_cards {
    display: block;
  }

  .article_card {
    width: 100%;
  }

  .article_card a {
    display: flex;
  }

  .article_card_text {
    font-size: 12px;
    vertical-align: middle;
  }
  .article_card a img {
    max-width: 120px;
    margin-right: 12px;
  }

  .sns_share {
    padding: 0 10%;
  }
  
  .sns_share img {
    width: 90%;
    height: auto;
  }

  .article_tag {
    font-size: 12px;
    line-height: 1.25;
    padding:5px 7px 5px 2px;
  }

  .tag_links {
    margin-bottom: 16px;
  }
  
  .tag_links li a {
    font-size: 14px;
    line-height: 3.45;
  }
  
}