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

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

/*固定ページでシェア・フォローボタンをまとめて非表示*/
.page .sns-share,
.page .sns-follow {
    display: none;
}

/* ==============================
   記事内 見出しデザイン
============================== */
/* ---------- H2 ---------- */
.single .entry-content h2 {
  position: relative;
  margin: 50px 0 30px;
  padding: 14px 20px;          /* ← 58px だった左paddingを20pxに戻す */
  background: linear-gradient(135deg, #1673b8 0%, #2d8dcc 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  border: none;
  box-shadow: none;
}

/* ---------- H3 ---------- */
.single .entry-content h3 {
  position: relative;
  margin: 40px 0 20px;
  padding: 8px 0 8px 20px;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-bottom: 2px solid #5b94bd;
}
.single .entry-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 30px;
  background: #2185c5;
}

/* ---------- H4 ---------- */
.single .entry-content h4 {
  position: relative;
  margin: 30px 0 15px;
  padding: 0 0 8px 24px;
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-bottom: 1px dashed #5b94bd;
}
.single .entry-content h4::before {
  content: "⬢";
  position: absolute;
  left: 0;
  top: 0;
  color: #2185c5;
  font-size: 16px;
}

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

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

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