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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*タイトルの色を変更する*/
.entry-card-title, 
.related-entry-card-title,
.e-card-info > span{
  color: #ffffff;
  background-color: #005731;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/************************************
モバイル上部コンテンツの調整
************************************/
#mobile_text-2 {
  margin-bottom: 0 !important;
}
/************************************
モバイル上部コンテンツの調整
************************************/

.text-mobile div {
    margin: 0 0 6px 0 !important;
    line-height: 1.6 !important;
}
/************************************
投稿のタイトル（色タイトル）を調整
************************************/
@media screen and (max-width: 480px) {
    .entry-card-wrap .entry-card-title {
        font-size: 11px !important;
        padding: 2px 4px !important;
        line-height: 1.2 !important;

        white-space: nowrap !important; /* ← 折り返し禁止 */
        overflow: hidden !important;   /* ← はみ出した場合に隠す */
        text-overflow: ellipsis !important; /* …で省略 */
        display: block !important;
    }
}


