/*
Theme Name: 兵庫中央事業協同組合
Theme URI: https://www.central-hyogo.jp/
Author: 兵庫中央事業協同組合
Author URI: https://www.central-hyogo.jp/
Description: 兵庫中央事業協同組合 公式サイトのオリジナルテーマ。既存の静的デザイン（HTML構造・CSSクラス・ブルー基調・アニメーション）をそのまま維持したまま WordPress で運用するためのテーマです。デザイン本体は assets/css/style.css を wp_enqueue で読み込みます（このファイルはテーマ認識用ヘッダーと WordPress 最小限のユーティリティのみ）。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chc
Tags: custom-theme
*/

/* =========================================================
   サイトのデザイン本体は assets/css/style.css にあります。
   （functions.php の chc_enqueue_assets() で読み込み）
   ここには WordPress 運用に必要な最小限のユーティリティのみ記述。
   ========================================================= */

/* --- WordPress standard utilities --- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  position: fixed; top: 0; left: 0;
  width: auto; height: auto; padding: 0.6rem 1rem;
  z-index: 1000; background: #fff; color: #0B1F3A; clip: auto;
}
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft  { float: left;  margin: 0 1.25rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.25rem; }
.wp-caption { max-width: 100%; }
.wp-caption img { display: block; }
.wp-caption-text { font-size: 0.8rem; color: #7A8794; margin-top: 0.4rem; text-align: center; }

/* 現在ページのメニュー項目（wp_nav_menu 移行時に使用） */
.current-menu-item > a,
.current_page_item > a { color: var(--brand-blue); }

/* TODO(次Phase): 投稿本文（.entry-content）の本格デザイン整備
   ── 見出し / リスト / 引用 / 表 / 画像まわりを既存デザインに合わせて拡張する。
   今回は最低限の余白のみ。 */
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--brand-navy); margin-top: 2.5rem; }
.entry-content h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--brand-navy); margin-top: 2rem; }
.entry-content p { line-height: 2; color: var(--text-sub); }
.entry-content a { color: var(--brand-blue); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); }
