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

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

/* 見出し2のカスタマイズ */
.entry-content h2 {
  border: none !important;       /* Cocoonデフォルトの枠線を消す */
  background: none !important;   /* Cocoonデフォルトの背景を消す */
  padding: 0.5em !important;                /* 文字周りの余白 */
  color: #8b4513 !important;                /* 文字色 */
  background: #fffaf0 !important;           /* 背景色 */
  border-left: solid 5px #d2691e !important; /* 左線 */
}

/* 見出し3のカスタマイズ */
.entry-content h3 {
  border: none !important;       /* デフォルト枠線を消す */
  background: none !important;   /* デフォルト背景を消す */
  border-bottom: solid 3px #f5deb3 !important;
  position: relative !important;
}

.entry-content h3:after {
  position: absolute !important;
  content: "";
  display: block;
  border-bottom: solid 3px #d2691e !important;
  bottom: -3px;
  width: 20%;
  left: 0;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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