@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*20210916追記 新着記事(ショートコード)の日付を表示*/
.new-entry-card-date {
  display: block;
  text-align:right;
}

/*20210916追記 投稿日のアイコンの変更*/
/*https://blog.lapislabo.com/cocoon-customize/より*/
.new-entry-card-post-date::before{
font-family: "Font Awesome 5 Free";
content: "\f017"; /*fa-clockアイコン*/
padding-right: 4px; /*右余白*/
font-weight: 400; /*アイコンの太さ*/
}

/*20210916追記 更新日のアイコンの変更*/
/*https://blog.lapislabo.com/cocoon-customize/より*/
.new-entry-card-update-date::before{
font-family: "Font Awesome 5 Free";
content: "\f1da"; /*fa-historyアイコン*/
padding-right: 4px; /*右余白*/
font-weight: 900; /*アイコンの太さ*/
}

/*20210917追記 フロントページの投稿日を非表示にする*/
.post-3103 .date-tags {
display: none;
}