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

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

/*固定ページの投稿日、更新日を非表示にする*/
.page .date-tags {
    display: none;
}

/*固定ページ（トップページカスタマイズ）*/
/*フロント固定ページのタイトルを非表示*/
.home.page .entry-title{ display: none; }

/*カスタム見出しデザイン*/
/*H2見出し*/
main h2.wp-block-heading {
    color: #fff;/*文字色（白）*/
    background-color: #d70026;/*背景色*/
    font-size: 20px;/*文字サイズ*/
    padding: 20px 25px;/*文字回りの余白（上下 左右）*/
    display: block;
    position: relative;
}
main h2.wp-block-heading:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #000;
}
/*H3見出し*/
main h3.wp-block-heading {
    color: #2e2f35;/*文字色*/
    font-size: 18px;/*文字サイズ*/
    padding: 15px 20px;/*文字回りの余白（上下 左右）*/
    display: block;
    border-left: 7px dashed #d70026;/*左線（太さ 破線 色）*/
    position: relative;
}
/*H4見出し*/
main h4.wp-block-heading {
    color: #2e2f35;/*文字色*/
    font-size: 16px;/*文字サイズ*/
    padding: 8px 30px;/*文字回りの余白（上下 左右）*/
	display: block;
    position: relative;
}
main h4.wp-block-heading:before {
    font-family: FontAwesome;
    font-weight: 900;/*鉛筆マークの太さ*/
    font-size: 25px;/*鉛筆マークのサイズ*/
    color: #d70026;/*鉛筆マークの色*/
    left: 0;
    top: 0;
    content:"\f040";
    position: absolute;
    transform: rotate(-10deg);/*鉛筆マークの回転*/
}

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

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

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