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

/************************************
** カムカム編集
************************************/
/*h2見出し色変更*/
.article h2, .related-entry-heading, .comment-title {
    background: rgb(236 235 230);
    box-shadow: 0 0 1px 3px rgb(152 149 143 / 47%);
}
/*BOX*/
.box1 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .22);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.box1 .box-title {
    font-size: 1.2em;
    background: #cecdcb;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.box1 p {
    padding: 15px 20px;
    margin: 0;
}
/*　見出しが勝手に変わる現象の修正　*/
.is-main-serif .article h2,
.is-main-serif .article h3,
.is-main-serif .article h4,
.is-main-serif .article h5,
.is-main-serif .article h6,
.is-sidebar-serif #sidebar h3,
.is-sidebar-serif #sidebar-menu-content h3 {
    font-family: inherit;
}