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

/************************************
** タイトル非表示
************************************/
.entry-title {
display: none;
}

/*---------------------------------
固定ページの日付を非表示にする、おまじない
--------------------------------*/
.post-2 .date-tags {
  display: none;
}

h2 {
  font-size: 20px !important;/*文字のサイズ*/
  border-left: 3px solid #7B86C6;/*左線*/
  padding: .5em .7em;/*余白*/
  background: rgba(123,134,198,.07);/*背景色*/
  color: #323232;
  margin-bottom: 15px;
  border-top: none;
  border-bottom: none;
}

/*見出しデザインリセット*/
.article h2 {
  background-color:transparent;
  border-radius: 0;
  background: #c2edff;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
}

.article h3 {
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: linear-gradient(transparent 70%, #a7d6ff 70%);
}

.article h4 {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}
 
.article h5{
  padding: 0;
  border-bottom: 0;
}

.article h6{
  padding: 0;
  border-bottom: 0;
}

/*　エントリーカード関連　*/

/*　関連記事カード　*/
.related-list .a-wrap {
    padding: 0;
}
.related-entry-card-content {
    padding-bottom: 0;
}
.related-list .a-wrap:hover {
    background-color: transparent;
}
.related-list .a-wrap .card-thumb {
    transition: all 0.3s ease-in-out;
}
.related-list .a-wrap:hover * .card-thumb {
    opacity: .8;
}

/*　ウィジェットカード　*/
.new-entry-card-link, .popular-entry-card-link {
   padding: 0!important; 
   margin-bottom: 20px!important;
}
.new-entry-card-link.a-wrap:hover, .popular-entry-card-link.a-wrap:hover {
    background-color: transparent;
}
.new-entry-card-link.a-wrap .card-thumb, .popular-entry-card-link.a-wrap .card-thumb {
    transition: all 0.3s ease-in-out;
}
.new-entry-card-link.a-wrap:hover * .card-thumb, .popular-entry-card-link.a-wrap:hover * .card-thumb {
    opacity: .8;
}