/* ロゴ画像のスタイル */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-image {
    transform: scale(1.05);
}

/* ローディング画面のロゴ - loading-fix.cssで統一管理 */

/* 不要なアニメーションを削除 */

/* ヒーロービデオセクション */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* メインキャッチコピーデザイン */
.hero-title {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-ja-main {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: white;
    text-shadow: 
        0 0 40px rgba(25, 118, 210, 0.8),
        0 0 80px rgba(25, 118, 210, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: title-glow 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes title-glow {
    0%, 100% { 
        text-shadow: 
            0 0 40px rgba(25, 118, 210, 0.8),
            0 0 80px rgba(25, 118, 210, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 0 60px rgba(25, 118, 210, 1),
            0 0 120px rgba(25, 118, 210, 0.7),
            2px 2px 4px rgba(0, 0, 0, 0.8);
        transform: scale(1.02);
    }
}

@keyframes fade-in-up {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* フッターロゴ */
.footer-logo-image {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    opacity: 1;
}

/* コンセプト画像の修正 */
.concept-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
    }
    
    .title-ja-main {
        font-size: clamp(28px, 8vw, 48px);
        letter-spacing: 0.1em;
    }
}