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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 1. 引用部の左線と引用符の色 */
.article blockquote, 
.wp-block-quote {
    border-left: 4px solid #2ed6a1 !important; /* 左の縦線をDecredの青緑に */
}

.article blockquote::before,
.wp-block-quote::before {
    color: #2ed6a1 !important; /* 引用アイコンの色 */
}

/* 2. 引用文の文字色 */
.article blockquote p,
.wp-block-quote p {
    color: #ffffff !important; /* 文字を白にする */
}

/* サイト全体の背景（外側） */
body,
#content {
    background-color: #0b162a !important; 
}

/* 記事本文エリアだけを少し明るくして可読性を上げる */
.main,
#main {
    background-color: #1a2a3a !important; /* ここを少し明るい紺に変更 */
    padding: 20px; /* 余白を入れるとさらに読みやすくなります */
    border-radius: 8px; /* 角を丸くするとモダンな印象に */
}

/* フッターエリア全体の背景色を統一 */
.footer,
.footer-bottom,
.footer-in,
.footer-bottom-in,
#footer {
    background-color: #0b162a !important; /* ここを統一したい色（紺や黒など）に変更 */
    background-image: none !important;    /* スキンのグラデーションや模様を消す */
    border: none !important;             /* 境界線を消す */
    box-shadow: none !important;         /* 影を消す */
}

/* フッターのコピーライト部分の背景も透過させて統一 */
.credit {
    background-color: transparent !important;
}

/* 1. 見出しの背景色をDecredダークブルーへ */
.sidebar h3.widget-sidebar-title,
#sidebar-wrapper .widget-sidebar-title,
.widgettitle {
    background: #091440 !important; /* グラデーション等を無効化して単色に */
    background-color: #091440 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 10px 10px 32px !important; /* 余白を再調整 */
    position: relative !important;
}

/* 2. 左側の装飾（上：ターコイズ） */
.sidebar h3.widget-sidebar-title::before,
.widgettitle::before {
    content: "" !important;
    background-color: #2ed6a1 !important;
    width: 6px !important;
    height: 12px !important;
    position: absolute !important;
    left: 12px !important;
    top: 22% !important;
    display: block !important;
    border: none !important;
}

/* 3. 左側の装飾（下：ブルー） */
.sidebar h3.widget-sidebar-title::after,
.widgettitle::after {
    content: "" !important;
    background-color: #2970ff !important;
    width: 6px !important;
    height: 12px !important;
    position: absolute !important;
    left: 12px !important;
    bottom: 22% !important;
    display: block !important;
    border: none !important;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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