@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){
  /*必要ならばここにコードを書く*/
}


/************************************
** トップページ改修 2026-08-18
** 横長ヘッダーロゴ(1400x347)の表示制御
** PCは高さ150pxに抑え、スマホは横幅いっぱいに表示
************************************/
.site-logo-image,
.header-site-logo-image{
  max-height: 150px !important;
  width: auto !important;
}

/*834px以下(スマホ・タブレット)は横幅いっぱい*/
@media screen and (max-width: 834px){
  .site-logo-image,
  .header-site-logo-image{
    max-height: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .header-in .logo,
  .header-in .site-name{ display:block !important; }
}

/* ▼ 本文の行間を広げる（読みやすさ） 2026-08-26 追加 */
/* Rinkerの商品カードとブログカードは p / li を使っていないため影響しない */
.entry-content p,
.entry-content li {
  line-height: 1.8;
}

/* ▼ 公開予約中の記事（リンクにせずテキスト表示） 2026-08-26 追加 */
.pending-link {
  color: #888;
}


/* === ECO_TOC_BTN 目次の開閉ボタンを見やすく（2026-09-18） === */
#toc.toc {
	border: 2px solid #2E7D32;
	border-radius: 8px;
	background: #F1F8F2;
	padding: 12px 16px;
}
#toc .toc-title {
	display: block;
	color: #1B5E20;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	cursor: pointer;
	padding: 0;
}
#toc .toc-title::after {
	display: inline-block;
	margin-left: 10px;
	padding: 5px 16px;
	border-radius: 999px;
	background: #2E7D32;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	vertical-align: middle;
}
#toc .toc-title:hover::after {
	background: #1B5E20;
}
#toc .toc-list > li > a {
	/* ECO_TOC_ITEM 大見出しだけ太字にして階層を見やすく */
	font-weight: 700;
	color: #1B5E20;
}

/* === ECO_INVITE 結論ボックスの「誘いの1行」（2026-09-18） === */
.caption-box .eco-invite {
	margin: 12px 0 0;
	padding: 10px 12px;
	background: #FFF8E1;
	border-left: 4px solid #F9A825;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.8;
}
