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

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

/* 投稿ページのH2デザインを一括上書き（ピンクベース） */
.single .entry-content h2 {
    border: none !important;
    background: #fde8ef !important;            /* 優しい薄ピンクの背景 */
    padding: 0.5em !important;                  /* 文字周りの余白 */
    color: #222222 !important;                  /* 読みやすい濃い文字色 */
    border-bottom: solid 3px #e05275 !important; /* アクセントの濃いピンク下線 */
}

/* Cocoon独自の装飾パーツ（擬似要素）も確実に消去 */
.single .entry-content h2::before,
.single .entry-content h2::after {
    display: none !important;
}


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

/*834px以下*/
@media screen and (max-width: 834px){
  .cta-box a {
    color: #fff;
  }
}