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

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

/* ===== コラム記事の見出し：可愛くポップなデザイン ===== */
body.single-castblog .entry-content h2 {
    background: linear-gradient(90deg, #ff9dc0, #ffc4dc) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 14px 28px !important;
    box-shadow: 0 4px 12px rgba(255, 140, 180, 0.35) !important;
    font-weight: 700 !important;
}
body.single-castblog .entry-content h2::before {
    content: "🌸 ";
}

body.single-castblog .entry-content h3 {
    background: #fff2f7 !important;
    color: #e8548f !important;
    border: 2px dashed #ffb6d0 !important;
    border-radius: 20px !important;
    padding: 10px 20px !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}
body.single-castblog .entry-content h3::before {
    content: "♡ ";
    color: #ff9dc0;
}

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

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

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

