/*
Theme Name: Bultech Theme
Theme URI: https://bultech.jp/
Author: Bultech Inc.
Author URI: https://bultech.jp/
Description: P2C Studio風ダークテーマ - 株式会社Bultechコーポレートサイト用カスタムテーマ
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
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: bultech-theme
Tags: dark, corporate, one-page, custom-logo

「つくる」から「届く」まで。
*/

/* ==========================================================================
   Theme Styles - Tailwind CDN handles most styling
   ========================================================================== */

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
    color: #A0A0A0;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Color */
::selection {
    background-color: rgba(212, 168, 83, 0.3);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #2A2A2A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3A3A3A;
}

/* Hide Scrollbar for Horizontal Scroll */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
