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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/* 6. ヘッダーメニュー（グローバルナビ）のデザイン */

/* メニュー全体の文字調整 */
.global-nav-list > li > a {
    color: #475569 !important;  /* 文字色（ダークグレー） */
    font-weight: 600 !important; /* 太字 */
    font-size: 0.95em !important;
    transition: color 0.3s;
}

/* ホバー時の色（青） */
.global-nav-list > li > a:hover {
    color: #3b82f6 !important;
    background: none !important; /* Cocoon標準の背景色変化を消す */
    text-decoration: none !important;
}

/* 特定のメニューをボタン化（クラス名: nav-btn-logout） */
.nav-btn-logout > a {
    border: 1px solid #cbd5e1 !important; /* 薄い枠線 */
    padding: 8px 20px !important;         /* 内側の余白 */
    border-radius: 99px !important;       /* カプセル型にする */
    margin-top: 5px !important;           /* 位置微調整 */
    line-height: 1.2 !important;
    transition: all 0.3s !important;
}

/* ボタンのホバー時 */
.nav-btn-logout > a:hover {
    background-color: #f1f5f9 !important; /* 背景を薄いグレーに */
    border-color: #94a3b8 !important;     /* 枠線を濃く */
    color: #3b82f6 !important;            /* 文字を青く */
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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