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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* トップページ以外でヘッダー全体を非表示にする */
/* トップページ以外ではロゴもメニューも非表示 */
/*body:not(.home) .header,
body:not(.home) .navi {
  display: none !important;
}
*/




/* 1023ｐｘ以上で投稿ページでは通常ヘッダーロゴ（大きいやつ）を非表示 */
@media screen and (min-width: 1024px) {
  .single .site-logo-image {
    display: none !important;
  }
	/* 念のため、追従ロゴは表示しておく */
	.site-fixed-logo-image {
  display: block !important;
}
	/* 追従ロゴを中央に表示 */
.logo-header {
  text-align: center;
}

.site-fixed-logo-image {
  display: inline-block !important;
  margin: 0 auto;
}
}

/* 投稿ページのロゴを非表示にする
.single .logo {
  display: none !important;
} */

/*カテゴリーラベルを非表示*/
.cat-label {display:none}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
	  .single #navi,
  .single .logo {
    display: none !important;
  }
}

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

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

/* === 景品表示法対応 === */
/* Cocoon設定メインカラム左上のPR表記 */
.pr-label-s {
  display: inline-block;
  position: absolute;
  top: 0px; /* メインカラム上端からの位置調整 */
  left: 0px; /* メインカラム左端からの位置調整 */
  margin: 0;
  padding: 6px 0 5px 0;
  width: 60px;
  text-align: center;
  color: #fff; /* 文字の色 */
  font-size: 12px;
  background: #26292b; /* ラベルの色 */
  border-radius: 3px 0 0 0;
  border: none;
  }
.pr-label-s:before {
  position: absolute;
  content: '';
  top: 0;
  right: -6px;
  border: none;
  border-bottom: solid 6px #333;
  border-right: solid 6px transparent;
}

