@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. Cocoonデフォルトヘッダー＆不要パーツの完全非表示化
 * -------------------------------------------------- */
/* Cocoonのヘッダー、モバイルボタン、固定ヘッダーなどを徹底的に消す */
#header, 
#header-container,
.header-container, 
.header-container-fixed,
.fixed-header,
#mobile-header-menu-buttons,
.mobile-header-menu-buttons,
.mobile-menu-buttons,
#navi,
.navi {
    display: none !important;
}

/* --------------------------------------------------
 * 2. コンテンツ位置の調整
 * -------------------------------------------------- */
body {
    /* 新しい固定ヘッダーの高さ分、コンテンツを下げる
     * メニューバー(約44px) + ロゴヘッダー(70px) = 114px
     */
    padding-top: 114px !important; 
}

/* スマホ表示時の余白調整 */
@media screen and (max-width: 768px) {
    body {
        padding-top: 114px !important; 
    }
}

/* --------------------------------------------------
 * 3. その他
 * -------------------------------------------------- */
/* インデックスページのPV数を非表示 */
.post-pv {
  display: none;
}