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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*ブログタイトル非表示ここから*/
.logo-header{
  display: none;
} 
/*ここまで*/
/*必要ならばここにコードを書く*/

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

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

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

/* ナチュラルスキンを茶系にアレンジ */

/* H2見出しの色 */
.article h2 {
  color: #a67c52;
}

/* H3見出しの色 */
.article h3 {
  color: #b68c66;
}

/* リンクの色 */
a {
  color: #946b3d;
}

/* ボタン背景 */
.button,
a.btn {
  background-color: #c5a57d;
  color: #fff;
}

/* ボタンホバー */
.button:hover,
a.btn:hover {
  background-color: #a67c52;
}
/* サイドバーのタイトル（ウィジェット見出し）の背景と文字色を変更 */
.sidebar .widgettitle {
  background-color: #a67c52 !important; /* 背景色：モカブラウン */
  color: #ffffff !important; /* 文字色：白 */
}

/* サイドバーの見出しの枠や影がある場合もリセット */
.sidebar .widget {
  border: none;
  box-shadow: none;
}
/* サイドバー自己紹介ウィジェットの外側枠線をモカブラウンに */
.sidebar .widget_text {
  border: 1.5px solid #a67c52 !important; /* 茶色の枠線 */
  border-radius: 8px !important;          /* 角丸 */
  padding: 16px !important;                /* 内側余白 */
  background-color: #fbf7f0 !important;   /* 背景色 */
  box-shadow: none !important;             /* 影を消す */
}

/* 内側の profile-wrap の緑色の線（box-shadow）を茶色に置き換え */
.sidebar .widget_text .profile-wrap {
  border: none !important;
  box-shadow: 0 0 0 2px #a67c52 !important; /* 茶色の線をbox-shadowで表現 */
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
