@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）のデザイン：ナチュラルママ風
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.article h2 {
  background: #f9f4ef !important;
  border-left: 6px solid #d6bfa8 !important;
  padding: 0.6em 1em !important;
  border-radius: 8px !important;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif !important;
  color: #5b4636 !important;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　見出し（h3）のデザイン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.article h3 {
  border-bottom: 2px dashed #d6bfa8 !important;
  padding-bottom: 0.3em;
  color: #6a5543;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif;
}

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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	/* --- H2 ナチュラルリボン風 --- */
.article h2 {
  position: relative;
  background: #f8f4ef;
  color: #4b3f34;
  padding: 14px 18px;
  border-left: 6px solid #d2b48c;
  border-radius: 6px;
  font-family: "Zen Maru Gothic", "Hachi Maru Pop", "M PLUS Rounded 1c", sans-serif;
  font-size: 1.25em;
  margin-top: 2.5em;
  margin-bottom: 1em;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.article h2::before {
  content: "🌿";
  margin-right: 8px;
  font-size: 1.1em;
}

}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　メリット・デメリットカード
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.article .card {
  background: #fff8f0;                  /* ほんのりベージュ背景 */
  border-left: 6px solid #d6bfa8;      /* 手書き風ブラウンライン */
  padding: 1em 1.2em;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.06);
  margin: 1em 0;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif;
  color: #5b4636;
  line-height: 1.6;
}

/* カード内タイトル */
.article .card h4 {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #7a5c4e;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　吹き出しデザイン（ママ体験談）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.article .bubble {
  background: #fff4e6;                  /* 明るめベージュ */
  border-radius: 20px 20px 20px 4px;    /* 吹き出しっぽい角丸 */
  padding: 1em 1.2em;
  margin: 1em 0;
  position: relative;
  font-family: "Kiwi Maru", "Noto Sans JP", sans-serif;
  color: #5b4636;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

/* 吹き出しの三角 */
.article .bubble::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 20px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #fff4e6 transparent transparent;
}

/* 小さい吹き出し（注釈やポイント用） */
.article .bubble-small {
  background: #fff7f0;
  border-radius: 12px;
  padding: 0.6em 1em;
  font-size: 0.95em;
  margin: 0.5em 0;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.04);
}

