/* =====================================================
   01_globals.css
   サイト全体共通スタイル
   - Cocoon目次文字色 (.toc)
   - Twitterフォローアイコン非表示
   - フッター免責表示 (.footer-disclosure)
   - html スムーズスクロール
===================================================== */
/* =====================================================
   ① Cocoon 目次の文字色   ===================================================== */
   .toc,
   .toc-title,
   .toc a,
   .toc a:hover,
   .toc a:visited,
   .toc-list,
   .toc-list li,
   .toc-list a,
   .toc-checkbox-label {
     color: #7d7d7d !important;
   }
   .toc-list ol > li::before,
   .toc-list ul > li::before {
     color: #7d7d7d !important;
   }
   

   /* =====================================================
         ⑥ フォロー用Twitterアイコンだけ非表示（シェア用は残す）
         -----------------------------------------------------
         .sns-follow-buttons と .follow-buttons の中の Twitter だけを対象。
         .sns-share-buttons など「シェア」用の系統には触れない。
         ===================================================== */
   .sns-follow-buttons .twitter-button,
   .sns-follow-buttons .twitter,
   .sns-follow-buttons li.twitter,
   .follow-buttons .twitter-button,
   .follow-buttons .twitter,
   .follow-buttons li.twitter {
     display: none !important;
   }

   .footer-disclosure {
     font-size: 0.72em;
     color: #888;
     text-align: center;
     padding: 6px 16px 2px;
     line-height: 1.5;
     letter-spacing: 0.02em;
   }

   /* スムーズスクロール（ページ全体に効く） */
   html {
     scroll-behavior: smooth;
   }
