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

/************************************
** 子テーマ用のスタイルを書く
****　本文記事タイトル　H1
***********************************
.post .entry-title  {
text-align:left;
margin-bottom: 0em;
}
.article-header h1 {
font-size: 18px;	
width:100%;
padding: 8px;
margin: 0px 0px 12px 0px;
color: #000;
border:none;	
background: #ebebeb;
border-left: solid 10px #008000;
}
この設定は有効なのだが、投稿ページだけではなく固定ページのタイトルまで変更してしまうので、
投稿ページのタイトルを非表示にして、ｈ2をタイトルとして表示することにした*/

/*すべての固定ページのタイトルを非表示
.page .entry-title{
  display: none;
}
*/


/* 全投稿ページで非表示 */
.post .entry-title {
    display: none;
}




/*見出しデザイン*/
/* 見出しリセット */

.article h2{
background: none;
border-top: 0;
border-right: 0;
border-bottom: 0;
border-left: 0;
padding: 0;
}
.article h2{
font-size: 18px;	
width:100%;
padding: 8px;
margin: 0px 0px 12px 0px;
color: #000;
border:none;	
background: #ebebeb;
border-left: solid 10px #008000;
}

.article h3{
background: none;
border-top: 0;
border-right: 0;
border-bottom: 0;
border-left: 0;
padding: 0;
}
.article h3{
font-size: 18px;	
width:100%;
padding: 8px;
margin: 0px 0px 12px 0px;
color: #000;
border:none;	
background: #ebebeb;
border-left: solid 10px #778899;



	
/*ウィジェットの行間を狭くしたのだが、通用しない
.widget {
  margin-bottom: 20px;
}

これも通用しない
.widget-sidebar li {
 padding-top: 2px; /* 上の余白を調整。値を大きくすると間隔が広がる */
 padding-bottom: 2px; /* 下の余白を調整。値を大きくすると間隔が広がる */
}
*/
	
	



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

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

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