body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #374151;
}

/* 見出しのシャドウエフェクト */
.glow-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ボタンのグラデーション */
.gradient-button {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* 背景の装飾 */
.decorative-bg {
    position: relative;
    overflow: hidden;
}
.decorative-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* スクロールアニメーション用 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ナビゲーションバーの背景（スクロール時） */
.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-width: 1px;
    border-color: rgba(229, 231, 235, 0.5);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
