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

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

/* サイトタイトルの余白（上左下右）*/
.logo-header {
  padding: 5px 0 5px 0;
}

/* メニューバー背景の高さ */
.navi-in>ul li {
  height: 40px;
  line-height: 40px;
}

/* サイトタイトル */
.site-name-text-link {
  font-size: 32px;
  letter-spacing: 0px;
}

/* 固定ページは日付を非表示にする */
.page .date-tags {
  display: none;
}

/* 新着記事一覧に投稿日・更新日を表示する */
.new-entry-card-date {
  display: block;
}

/* bbpressのトピック一覧のステータスアイコンとタイトルの間を広げる */
#bbpress-forums li.bbp-topic-title a.bbp-topic-permalink:before {
  margin-right: 12px;
}
#bbpress-forums ul.sticky li.bbp-topic-title a.bbp-topic-permalink:before,
#bbpress-forums ul.super-sticky li.bbp-topic-title a.bbp-topic-permalink:before {
  margin-right: 10px;
  padding-top: 0px;
}
	
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/

  /* サイトタイトル */
  .site-name-text-link {
    font-size: 28px;
  }
}

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

  /* サイトタイトル */
  .site-name-text-link {
    font-size: 24px;
  }
}

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

  /* サイトタイトル */
  .site-name-text-link {
    font-size: 20px;
  }
}

