@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){
  /*必要ならばここにコードを書く*/
}
/* ① ヘッダー全体の文字色（柔らかめのブラウン） */
.header {
    color: #8B5A2B !important; /* 落ち着いたブラウン */
}

/* ② ロゴの文字色（優しいオレンジ系） */
.site-title {
    color: #D2691E !important; /* 温かみのあるオレンジ */
    font-weight: bold;
}

/* ③ グローバルナビの背景色（ミルクティーベージュ） */
.global-menu {
    background-color: #F5DEB3 !important; /* ナチュラルなベージュ */
}

/* ④ グローバルナビの文字色（濃いめのブラウン） */
.global-menu a {
    color: #654321 !important; /* 深みのあるブラウン */
    font-weight: bold;
}

/* ⑤ ナビのホバー時の色（可愛らしいピンク系） */
.global-menu a:hover {
    color: #FFB6C1 !important; /* 優しいピンク */
    text-decoration: underline;
}

/* ⑥ ヘッダーの影をつけて立体感を出す */
.header {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ⑦ フッターの文字色（少し落ち着いた色合いに） */
.footer {
    color: #6B4226 !important; /* ダークブラウン */
}