/* ============================
   LP Footer (New Design)
   添付画像準拠のフッターデザイン
   ============================ */

.lp-footer {
    background: #1f2a36;
    color: rgba(255, 255, 255, 0.85);
}

.lp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 24px;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* Left: Brand */
.lp-footer__brand {
    display: flex;
    flex-direction: column;
}

.lp-footer__brandRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-footer__brandLogo {
    height: 24px;
    width: auto;
    display: block;
}

.lp-footer__brandName {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
}

.lp-footer__tagline {
    margin-top: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

/* Middle: Navigation */
.lp-footer__nav {
    display: flex;
    flex-direction: column;
}

.lp-footer__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.lp-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer__list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.lp-footer__list a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

/* Right: Company */
.lp-footer__company {
    display: flex;
    flex-direction: column;
}

.lp-footer__companyLogo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 10px 0 14px;
}

.lp-footer__companyText {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.lp-footer__companyText div {
    margin-bottom: 4px;
}

/* Bottom */
.lp-footer__bottom {
    margin-top: 44px;
}

.lp-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 18px;
}

.lp-footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-footer__inner {
        padding: 44px 18px 20px;
    }

    .lp-footer__companyLogo {
        max-width: 220px;
    }

    .lp-footer__brandName {
        font-size: 20px;
    }

    .lp-footer__bottom {
        margin-top: 36px;
    }
}

@media (max-width: 640px) {
    .lp-footer__inner {
        padding: 36px 16px 18px;
    }

    .lp-footer__grid {
        gap: 28px;
    }

    .lp-footer__brandRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lp-footer__brandLogo {
        height: 20px;
    }

    .lp-footer__brandName {
        font-size: 18px;
    }

    .lp-footer__tagline {
        font-size: 13px;
        margin-top: 10px;
    }

    .lp-footer__title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .lp-footer__list {
        gap: 8px;
    }

    .lp-footer__list a {
        font-size: 13px;
    }

    .lp-footer__companyText {
        font-size: 13px;
    }

    .lp-footer__copyright {
        font-size: 12px;
    }
}
