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

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

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

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

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


      /* --- 12. アイコン付きチェックリスト --- */
.checklist-style {
  list-style: none !important; /* 元の点を消す */
  padding-left: 0 !important;
}
.checklist-style li {
  position: relative;
  padding-left: 1.8em; /* アイコン分のスペース */
  margin-bottom: 0.8em;
}
.checklist-style li::before {
  content: '✔'; /* 表示するアイコン */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #fff;
  background-color: #4caf50; /* アイコンの背景色 */
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2em;
  font-size: 0.9em;
}