/* =====================================
   Footer Base
===================================== */

.kf-footer {
    background: #e7e2d6;
    padding: 48px 0 24px;
    /* ← かなり詰める */
    text-align: center;

    font-size: 16px;
    line-height: normal;
}

/* box sizing */
.kf-footer,
.kf-footer * {
    box-sizing: border-box;
}

/* =====================================
   Inner
===================================== */

.kf-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================
   Brand
===================================== */

.kf-footer__brand {
    margin-bottom: 28px;
    /* ← 40px → 28px */
}

.kf-footer__logo {
    margin-bottom: 6px;
}

/* ロゴ（超控えめ） */
.kf-footer__logo .custom-logo,
.kf-footer__logo-img {
    width: 36px;
    /* ← 48px → 36px */
    height: auto;
    display: block;
    margin: 0 auto;
}

.kf-footer__brand-en {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #9c9276;
    margin: 4px 0;
}

.kf-footer__brand-ja {
    font-size: 22px;
    /* ← 26px → 22px */
    font-weight: 400;
    margin: 0 0 8px;
    color: #2f2f2f;
}

.kf-footer__description {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2f4f44;
}

/* =====================================
   Footer Menu
===================================== */

.kf-footer__nav {
    margin: 20px 0;
    /* ← 32px → 20px */
}

.kf-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    /* ← 32px → 24px */
}

.kf-footer__menu li {
    margin: 0;
    padding: 0;
}

.kf-footer__menu a {
    font-size: 15px;
    color: #2f2f2f;
    text-decoration: none;
    position: relative;
}

/* underline hover */
.kf-footer__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #b2a789;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.kf-footer__menu a:hover::after {
    opacity: 1;
}

/* =====================================
   CTA
===================================== */

.kf-footer__cta {
    margin: 24px 0;
    /* ← 40px → 24px */
}

.kf-footer__btn {
    display: inline-block;
    background: #b2a789;
    color: #fff;
    padding: 16px 44px;
    /* ← かなり削る */
    text-decoration: none;
}

.kf-footer__btn-ja {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.kf-footer__btn-en {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
}

/* =====================================
   Bottom
===================================== */

.kf-footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 16px;
}

.kf-footer__copyright {
    font-size: 12px;
    color: #666;
}

/* =====================================
   Responsive
===================================== */

@media (max-width: 768px) {

    .kf-footer {
        padding: 40px 0 20px;
    }

    .kf-footer__logo .custom-logo,
    .kf-footer__logo-img {
        width: 32px;
    }

    .kf-footer__brand-ja {
        font-size: 20px;
    }

    .kf-footer__description {
        font-size: 14px;
        line-height: 1.6;
    }

    .kf-footer__menu {
        gap: 18px;
    }

    .kf-footer__menu a {
        font-size: 14px;
    }

    .kf-footer__btn {
        padding: 14px 36px;
    }

    .kf-footer__btn-ja {
        font-size: 15px;
    }
}

.kf-footer__note {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.04em;
}