/* =========================================
   AI魔晄炉 統一フッター 共通CSS
   ========================================= */

.makouro-footer {
    position: static;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 204, 0, 0.3);
}

.makouro-footer-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.makouro-footer-logo img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.makouro-footer-text {
    text-align: left;
}

.makouro-footer-title {
    color: #ffcc00;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.makouro-footer-meta {
    color: #bbb;
    font-size: 0.9em;
    margin: 0 0 5px 0;
}

.makouro-footer-statement {
    color: #999;
    font-size: 0.8em;
    font-style: italic;
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .makouro-footer-inner {
        flex-direction: column;
        gap: 15px;
    }

    .makouro-footer-text {
        text-align: center;
    }
}