@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){
  /*必要ならばここにコードを書く*/
}
/* =========================
  本文内目次だけトグル
========================= */

.entry-content .toc {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  color: #f8f9fb;
}

.entry-content .toc.is-open {
  max-height: 2000px;
}

/* 本文内目次リンク色 */
.entry-content .toc a {
  color: #f8f9fb;
}

/* トグルボタン */
.toc-toggle {
  text-align: center;
  margin: 12px 0;
}

.toc-toggle button {
  background-color: #aac2d2;
  color: #f8f9fb;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
}

.toc-toggle button:hover {
  opacity: 0.85;
}
