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

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

/* h2見出しの背景色を消す */
.article h2 {
  background: none;
}

/* h3見出しの背景色を消す */
.article h3 {
  background: none;
}

/* 必要ならh4以降も */
.article h4 {
  background: none;
}



/* セクション共通の基本スタイル */
.background-section1,
.background-section2,
.background-section3 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  overflow: hidden;
}

/* 各セクションの背景画像を指定 */
.background-section1 {
  background-image: url('http://countrygarden-kamakura.net/wp-content/uploads/2025/04/b15-scaled.jpg');
}
.background-section2 {
  background-image: url('http://countrygarden-kamakura.net/wp-content/uploads/2025/04/b10-scaled.jpg');
}
.background-section3 {
  background-image: url('http://countrygarden-kamakura.net/wp-content/uploads/2025/04/b13-scaled.jpg');
}

/* 白い透明フィルターをかける */
.background-section1::before,
.background-section2::before,
.background-section3::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.7); /* 白50%透明 */
  z-index: 0;
}

/* 中身のテキストをフィルターの上に置く */
.background-section1 > *,
.background-section2 > *,
.background-section3 > * {
  position: relative;
  z-index: 1;
}

/*投稿者非表示*/
.author-info,
.post-author,
.entry-author,
.author {
  display: none !important;
}




/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
  /*必要ならばここにコードを書く*/
/* モバイル（画面幅768px以下）でヘッダーメニューを非表示にする */
@media screen and (max-width: 1023px){
	
}

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

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