/* フォントの追加 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* カラー変数の定義 */
:root {
    --primary-color: #1e4d2b;
    --secondary-color: #0d3320;
    --accent-color: #c17f16;
    --gradient-start: #0a1f12;
    --gradient-end: #050d08;
    --card-bg: rgba(255, 255, 255, 0.98);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    --hover-transform: translateY(-5px);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: url('https://imagedelivery.net/NAaL_-q_p_bxlVdCND_Iag/9543aaa7-f4b8-4c56-0491-0d2b7055d200/public') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 緑のグラデーションオーバーレイを追加 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(45, 115, 65, 0.8),
        rgba(35, 90, 50, 0.8)
    );
    z-index: 0;
}

/* 基本的な見出しスタイル */
h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(0);
} 