/*
Theme Name: XCOM Theme
Theme URI: https://xcom.co.jp
Author: 株式会社エクスコム
Author URI: https://xcom.co.jp
Description: 株式会社エクスコム 公式サイト用カスタムテーマ。Elementorで全セクション編集可能。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Private
Text Domain: xcom-theme
*/

/* ===========================
   CSS Variables
=========================== */
:root {
  --xcom-black:  #080808;
  --xcom-dark:   #111111;
  --xcom-card:   #161616;
  --xcom-border: #222222;
  --xcom-white:  #f0ede8;
  --xcom-muted:  #888888;
  --xcom-accent: #4a7fd4;
  --xcom-accent-bright: #6b9fe8;
}

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--xcom-black);
  color: var(--xcom-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ===========================
   Elementor ページ全幅対応
=========================== */
.elementor-section.elementor-section-full_width {
  padding: 0;
}

/* スクロールバー */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--xcom-black); }
::-webkit-scrollbar-thumb { background: var(--xcom-border); }
::-webkit-scrollbar-thumb:hover { background: var(--xcom-muted); }
