@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{

border-top:none;

border-bottom:none;

border-left:none;

border-right:none;

padding: 0;

}

/* H3 */

.article h3{

border-top:none;

border-bottom:none;

border-left:none;

border-right:none;

padding: 0;

}

/* H4 */

.article h4{

border-top:none;

border-bottom:none;

padding: 0;

}

/* H5 */

.article h5{

border-bottom:none;

padding: 0;

}

/* H6 */

.article h6{

border-bottom:none;

padding: 0;

}


/*****************************
 * 見出しのカスタマイズ
 * **************************/
/*（h2～h6）カスタマイズ*/

.entry-content h2 {
padding: .3em 0em;
background: none; /*背景の色を無くす*/
border: none; /*線を消す*/
border-bottom: solid 3px black; /*下線の種類　太さ　色*/
}
.entry-content h3 {
padding: .3em 0em;
background: none; /*背景の色を無くす*/
border: none; /*線を消す*/
border-bottom: solid 3px black; /*下線の種類　太さ　色*/
}
.entry-content h4 {
padding: .2em 0em;
background: none; /*背景の色を無くす*/
border: none; /*線を消す*/
border-bottom: solid 2px gray; /*下線の種類　太さ　色*/
}
.entry-content h5 {
padding: .2em 0em;
border-bottom: solid 1px gray; /*下線の種類　太さ　色*/
}
.entry-content h6 {
padding: .2em 0em;
border-bottom: solid 1px gray; /*下線の種類　太さ　色*/
}

/******************************
**（サイドバー）カスタマイズ
******************************/
/*見出し（h3）をカスタマイズ*/
.sidebar h3 {
    background: none; /*背景色を消す*/
    font-size: 16px;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 0;
    text-align: center;
}
.sidebar h3::before, .sidebar h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15%; /*ラインの長さ*/
    border-top: 3px solid #444d53; /*ラインの色*/
}
.sidebar h3::before {
    left: 0;
}
.sidebar h3::after {
    right: 0;
}