@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){
  /*必要ならばここにコードを書く*/
}

/* SILKの見出し数字を消す */
.entry-content h2::before {
    content: unset !important;
}

/* 見出し全体を少し調整 */
.entry-content h2 {
    border-left: 5px solid #333;  /* 左に太いライン（クマっぽい黒） */
    padding-left: 15px;
    font-size: 1.6em;
    margin-top: 40px;
}

.entry-content h3 {
    border-bottom: 2px solid #666;
    padding-bottom: 8px;
}


/* 見出しの灰色ラインを全部消す */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    border-bottom: none !important;
    border-top: none !important;
    padding-bottom: 0;
}

/* サイドバーの見出しを濃い色に見やすく */
.sidebar h3,
.widget-title,
.sidebar .widget h3 {
    color: #222222 !important;     /* 濃い黒グレー（好みで調整） */
    font-weight: bold;             /* 太字にするとさらに目立つ */
    padding-bottom: 8px;
    margin-bottom: 12px;
}



/* 必要なら下線も少し濃くしたい場合 */
.sidebar h3 {
    border-bottom: 2px solid #444444;  /* 濃いグレー線 */
}

