@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.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

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

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

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

/************************************
** 新たに追加したコードbytsuru
************************************/

/*ブログカードに投稿日のみを表示*/

.new-entry-card-date {
  display: block;
}

.new-entry-card-update-date {
  display: none;
}


/*フロントページのブログカードフォント

.new-entry-card-title {
	  font-size: 12px;
}
*/

/*new_list でのブログカードフォント

.new-entry-card-title.widget-entry-card-title.card-title {
      font-size: 12px;
*/

/*固定ページの日付非表示*/
.page .date-tags,
.page .author-info {
display: none;
}

/* リンクの下線を消す */
a {
text-decoration: none;
}



.index-tab-buttons {
  display: flex;
}


/* タブの並び、新着記事タブを最後に変更 */
label.index-tab-button[for=index-tab-1] {
  order: 1;
}




/* function.phpでnew_listにカテゴリ名を表示するようにした。でも以下は非表示*/

/* おすすめカードで非表示に */
.navi-entry-card-content .cat-label {
	display: none;
}
/* サイドバーで非表示に */
.widget-sidebar .cat-label{
	display: none;
}
/* フッターで非表示に */
.widget-footer-mobile .cat-label,
.widget-footer-center .cat-label,
.widget-footer-right .cat-label {
	display: none
}

/* 見出しリセット */

.article h2::before {
border-top: none;
}
.article h2::after {
border-bottom: none;
}
.article h2{
border: none;
}
.article h3::before {
border-top: none;
}
.article h3::after {
border-bottom: none;
}
.article h3{
border: none;
}
.article h4::before {
border-top: none;
}
.article h4::after {
border-bottom: none;
}
.article h4{
border: none;
}
.article h5::before {
border-top: none;
}
.article h5::after {
border-bottom: none;
}
.article h5{
border: none;
}
.article h6::before {
border-top: none;
}
.article h6::after {
border-bottom: none;
}
.article h6{
border: none;
}

