/* リセット：ブラウザ特有の余白を消す */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background: #000; 
    color: #fff; 
    /* 洗練されたフォント（Mac/Winのシステムフォント） */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* ヘッダー：動画の上に重ねる（オーバーレイ） */
.site-header {
    position: absolute; /* 動画に重ねる */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 10; /* 動画より手前に表示 */
}

.socials span { margin-right: 15px; font-size: 0.8rem; cursor: pointer; opacity: 0.7; }
.socials span:hover { opacity: 1; }

.logo { font-weight: 700; font-size: 1.5rem; letter-spacing: 0.1em; }

.nav ul { display: flex; list-style: none; gap: 30px; }
.nav li { font-size: 0.9rem; letter-spacing: 0.05em; cursor: pointer; opacity: 0.7; }
.nav li:hover { opacity: 1; }

/* ヒーローエリア */
.hero {
    width: 100%;
    height: 100vh; /* 画面全体 */
    background: #111;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 映像の比率を維持して全画面に */
}