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


/************************/
/*目次デザイン*/
/************************/
/* 目次全体枠 */
.toc{
border-top:5px solid; color:#3c3c3c;
padding: 20px;
}
/* 目次アイコン */
.toc-title:before {
width: 40px;
height: 40px;
font-family: "Font Awesome 5 Free";
content : "\f03a";
font-size:18px;
margin-right:8px;
color:#FFF;
background-color:#3c3c3c;
border-radius: 50%;
padding:10px;
}
/* 目次の文字 */
.toc-title {
text-align:left;
font-size: 20px;
font-weight: 600;
color: #3c3c3c;
}
/*見出し2（H2）の設定*/
.toc-content > .toc-list > li:before { 
font-family: "Font Awesome 5 Free";
content: "\f35a";
font-weight: 900;
color: #3c3c3c;
padding-right:8px;
}
.toc-content .toc-list li {
font-weight:600;
}
/*H3以降の文字サイズ*/
.toc-content .toc-list li li {
font-weight:normal;
}


/************************************
（PC）サイトタイトルとキャッチフレーズの文字の大きさ
************************************/

/*サイトタイトル*/
.site-name-text{
font-weight: 500;
font-family: ‘Josefin Sans’sans-serif;
font-size: 32px!important;
color:#ffff;
}
/*キャッチフレーズ*/
.tagline {
font-size: 18px;
}
/************************************
（スマホ）サイトタイトルと
キャッチフレーズの文字の大きさ
************************************/

@media screen and (max-width: 480px){
/*サイトタイトル*/
.site-name-text {
font-size: 28px;
}
/*キャッチフレーズ*/
.tagline {
font-size: 15px;
}
}

/************************************
見出し
************************************/

.article h2 {
  padding: 0.4em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
}


.article h3 {
padding: 0.5em 0.8em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
border-top: none!important; /* 上枠線を消す */
border-right: none!important; /* 右枠線を消す */
border-bottom: none!important; /* 下枠線を消す */
border-left: solid 4px #ffaf58;/*左線*/
}


.article h4 {
padding: 0.5em 0.8em;/*上下 左右の余白*/
border-top: none!important; /* 上枠線を消す */
border-bottom: solid 1.5px #ffaf58!important;
}

