/*
 * BCOOL Base Theme - utilities.css
 * =========================================
 * 再利用可能な汎用クラス集。
 * 構造・レイアウトは main.css、案件個別のスタイルは custom/ に入れる。
 *
 * 命名規則：.bcool- プレフィックス（WordPressコアとの衝突防止）
 * =========================================
 */

/* =========================================
   表示切り替え
   ========================================= */
@media (min-width: 769px) {
  .show-on-mobile { display: none !important; }
}

@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}

/* =========================================
   見出しアクセント
   ========================================= */

/* h2・h3直下に短いアクセントライン */
.bcool-heading-line::after {
  content: '';
  display: block;
  width: 2rem;
  height: 3px;
  background-color: var(--wp--preset--color--accent);
  margin-top: 0.5rem;
}

/* =========================================
   セクションタイトル
   ========================================= */

/* h2に下線アクセント（中央寄せ向け） */
.bcool-section-title {
  text-align: center;
}

.bcool-section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background-color: var(--wp--preset--color--accent);
  margin: 0.5rem auto 0;
}

/* =========================================
   カードグリッド
   ========================================= */

/* 3列カードグリッド */
.bcool-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
}

@media (max-width: 768px) {
  .bcool-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .bcool-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   ボタン
   ========================================= */

/* ゴーストボタン（透明背景・枠線） */
.bcool-btn-ghost {
  display: inline-block;
  padding: 0.65em 1.75em;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.bcool-btn-ghost:hover {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--contrast);
}

/* =========================================
   テキストユーティリティ
   ========================================= */

.bcool-text-center { text-align: center; }
.bcool-text-left   { text-align: left; }
.bcool-text-right  { text-align: right; }

.bcool-text-sm     { font-size: var(--wp--preset--font-size--sm); }
.bcool-text-xs     { font-size: var(--wp--preset--font-size--xs); }

.bcool-text-muted  { color: var(--wp--preset--color--text-light); }
.bcool-text-accent { color: var(--wp--preset--color--accent); }

/* =========================================
   スペーシングユーティリティ
   ========================================= */

.bcool-mt-0 { margin-top: 0 !important; }
.bcool-mb-0 { margin-bottom: 0 !important; }

/* =========================================
   区切り線
   ========================================= */

.bcool-divider {
  border: none;
  border-top: 1px solid var(--wp--preset--color--base-3);
  margin: 2rem 0;
}

/* =========================================
   案件追加クラス（下に随時追記）
   =========================================
   追加時は CLAUDE.md のクラス一覧も更新すること
   ========================================= */
