/* フォント設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* 背景画像付きヒーローセクション */
.hero-gradient {
    background-image: url('https://page1.genspark.site/v1/base64_upload/cb3e8435439bad44286432d2ae40e854');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.7);
    z-index: 1;
}

.hero-gradient > * {
    position: relative;
    z-index: 2;
}

/* テキストグラデーション */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* プライマリボタン */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* セカンダリボタン */
.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.4);
}

/* カードホバー効果 */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* スムーススクロール */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* ヒーローテキストの行間調整 */
.hero-text {
    line-height: 1.4;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-text {
        font-size: 1.75rem;
        line-height: 1.5;
    }
    .hero-subtext {
        font-size: 1rem;
        line-height: 1.4;
    }
}
