:root {
    --primary: #c5a059; /* シャンパンゴールド */
    --primary-dark: #a67c37;
    --secondary: #1a1a1a; /* リッチブラック */
    --accent: #ffffff;
    --text-main: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* アンカーリンクの挙動 */
html {
    scroll-behavior: smooth;
}

/* ダークモードの洗練されたグラデーション背景 */
.bg-gradient {
    background: radial-gradient(circle at top right, #1a1a1a, #0a0a0a);
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1549298916-b41d501d3772?q=80&w=2012&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: calc(2.5rem + 2vw);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

/* カード */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* アフィリエイトリンク (CTA) */
.cta-box {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(45deg, #141414, #1a1a1a);
    border-left: 5px solid var(--primary);
    text-align: center;
}

/* 星評価 */
.stars {
    color: #f1c40f;
    margin-bottom: 10px;
}

/* 法令遵守/PR表記 */
.legal-banner {
    background: #000;
    color: #888;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* 構造化データ用：非表示 */
.hidden { display: none; }
