@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 {
  background-color: #1B435D !important;
  border-bottom: none !important;
}

/* サイト名を白に */
#header .site-name-text {
  color: #ffffff !important;
}

/* キャッチフレーズをライトブルーに */
#header .tagline {
  color: #78BBE6 !important;
}

/* ロゴアイコン（疑似要素）を非表示 */
h1.logo::before {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

/* ナビテキストを白に明示 */
#navi .menu-pc a {
  color: #ffffff !important;
}

/* ナビとヘッダーの境界線を消す */
#navi {
  border-top: none !important;
}

/* ================================================
   モバイル対応
   ================================================ */

/* モバイルでナビバーを非表示（ハンバーガーメニューが代替） */
@media screen and (max-width: 600px) {
  #navi {
    display: none !important;
  }
}
