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

/************************************
** 子テーマ用のスタイルを書く
************************************/
.entry-content h2 {
  padding: 0.5em;
  color: #494949;
  background: #fffaf4;
  border: none; /* ← 黒い線を削除 */
  border-left: solid 5px #ffaf58; /* オレンジの左線だけ再設定 */
}

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

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

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

/*NEWマーク*/
div.new-badge {
  color: #ff0000 !important;         /* 赤文字 */
  background: none !important;       /* 背景なし */
  font-size: 0.8em !important;
  padding: 0 !important;
  margin-bottom: 5px !important;
  display: inline-block !important;
  line-height: 1 !important;
  animation: blinking 1s ease-in-out infinite alternate !important; /* 点滅アニメ */
}

/* 点滅アニメーション */
@keyframes blinking {
  0% { opacity: 0; }
  100% { opacity: 1; }
}