@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){
  /*必要ならばここにコードを書く*/
}




/*メール欄を非表示*/
.comment-form-email{ display:none; }


/*h2*/
.entry-content h2 {
    padding: .5em .7em;
    border: 2px solid #25b4d0 !important;
    box-shadow: 5px 5px #25b4d0 !important;
    color: #25b4d0;
}


/*リストタグ*/
.list-1{
   list-style: none;
   padding:0;
   margin:0;
}
.list-1 li { 
   position: relative;
   margin:0.5em 0 !important;
   padding-left: 25px;
}
.list-1 li:before {
   font-family: FontAwesome;
   content: "\f058"; /*アイコン*/
   color:  #ffa952; /* 色 */
   position: absolute;
   left:0;
}



/*リストタグ2 番号付き*/
.list-2 {
    counter-reset: li;
}

.list-2 li {
    display: flex;
     align-items: center;
   padding-left: 2px;
}

.list-2 li::before {
    display: inline-block;
    min-width: 1.7em;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #06b27e;
    color: #fff;
    font-weight: bold;
    font-size: .75em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}



/*下60　下120*/
.m15-b{ margin-bottom: 15px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m120-b{ margin-bottom: 120px!important; }