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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 見出しリセット */
/* 見出し2 */
.article h2{
background:none;
padding: 0;
}

/* 見出し3 */
.article h3{
border-top:none;
border-bottom:none;
border-left:none;
border-right:none;
padding: 0;
}

/* 見出し4 */
.article h4{
border-top:none;
border-bottom:none;
padding: 0;
}

/* 見出し5 */
.article h5{
border-bottom:none;
padding: 0;
}

/* 見出し6 */
.article h6{
border-bottom:none;
padding: 0;
}
.article h2 {
  padding: 0.5em;/*文字周りの余白: 幅+em(単位)*/
  color: #494949;/*文字色: 色コード*/
  background: #d4ebec;/*背景色: 色コード*/
  border-left: solid 5px #005ea7;/*左線: 実線 太さ+単位(px) 色コード*/
}

.article h3{
  color: #3f3f3f;/*文字色*/
  padding: 0.5em;/*上下左右の余白*/
  border-top: dashed 3px #3f3f3f;/*上線: 点線 太さ+単位(px)*/
  border-bottom: dashed 3px #3f3f3f;/*下線: 点線 太さ+単位(px)*/
  border-left: none;/*左線消す*/
}

.article h4 {
  position: relative;
  padding: 0.25em 0;
}

.article h4:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(230, 90, 90), transparent);
  background: linear-gradient(to right, rgb(230, 90, 90), transparent);
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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

/**********************************************
** 吹き出しのサイズを指定する
**********************************************/
img.speech-icon-image {
    width: 80px;
    height: calc(100%);
}
/**********************************************
** 固定ページの新着記事一覧(new_list)を
** 2カラム表示にする
**********************************************/
.new-entry-cards.fp-new-entry-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.fp-new-entry-cards .new-entry-card-link.a-wrap {
    display: inline-block;
    width: 49.5%;
}
.footer-widgets-mobile .widget_media_image {
  text-align: center;
}
.article-footer .widget_media_image {
text-align: center;
}