.elementor-27752 .elementor-element.elementor-element-940b15e{--display:flex;}/* ヘッダーの調整 */
.main-header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.flex-header {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央に寄せてパートナーシップを強調 */
    gap: 20px;
}

.header-logo {
    height: 40px; /* 小さすぎず、主張しすぎないサイズ */
    width: auto;
}

.collaboration-mark {
    font-weight: bold;
    color: #003366;
}

/* ヒーローエリアのインパクト設定 */
.visual-hero {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* 清潔感のあるグラデーション */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.logo-fusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out; /* ふわっと浮き上がるアニメーション */
}

.hero-logo {
    max-width: 300px; /* PCでは大きく表示 */
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); /* 影をつけて立体感を出す */
}

.x-mark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39800; /* ハセガワスピリットのオレンジ */
}

.hero-title {
    font-size: 3.5rem;
    color: #003366;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .logo-fusion {
        flex-direction: column;
        gap: 20px;
    }
    .hero-logo {
        max-width: 200px;
    }
    .hero-title {
        font-size: 2rem;
    }
}