@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 */
.entry-content h2{
border:none;
background:none;
padding: 0;
}

/* H3 */
.entry-content h3{
border:none;
background:none;
padding: 0;
}

/* H4 */
.entry-content h4{
border:none;
background:none;
padding: 0;
}

/* H5 */
.entry-content h5{
border:none;
background:none;
padding: 0;
}

/* H6 */
.entry-content h6{
border:none;
background:none;
padding: 0;
}
/* 背景をずらしたデザイン */
h2 {
   position: relative;
   border: 1px solid #333; /*枠線*/
   color:#333; /* 文字色（黒）*/  
}
h2:after {
   content: '';
   background: #a5c9c1;
   width: calc(100% + 1px);
   height: calc(100% + 1px);
   position: absolute;
   top: 5px;
   left: 5px;
   z-index: -1;
}