@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){
  /*必要ならばここにコードを書く*/
}
/* サイドバー ナビボタン */
.sidebar-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sidebar-btn {
  display: block;
  background-color: #3a3a3a;
  color: #ffffff !important;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none !important;
  transition: background 0.2s;
}

.sidebar-btn:hover {
  background-color: #555555;
}

/* ヘッダーナビの３ボタンを非表示 */
#menu-item-48,
#menu-item-49,
#menu-item-50 {
  display: none !important;
}

/* タイトル背景グラデーション＆縦幅調整 */
#header {
  background: linear-gradient(135deg, #0a1628 0%, #0d2045 40%, #1a3a6b 70%, #000000 100%) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  min-height: unset !important;
}

.header-container {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.site-name-container {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

/* タイトル文字の余白を詰める */
.logo-text {
  padding: 5px 0 0px !important;
}

/* 記事タイトル・投稿日・更新日を非表示 */
.entry-title,
.post-date,
.post-update {
  display: none !important;
}

/* 記事本文の背景色をアースカラーに変更 */
.dj-body {
  background: #ede8e0 !important;
}

body,
.site-main,
.content-area {
  background-color: #ede8e0 !important;
}