@charset "UTF-8";

.l-footer {
    background-color: inherit;
    padding: 0;
}

.org-footer * {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    box-sizing: border-box;
}

.org-footer {
    width: 100%;
    padding-block: 60px 20px;
    background-color: #70ba4d;
}
    .footer__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 1140px;
        margin: 0 auto;
    }
        .footer__contents {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            width: 100%;
            padding: 56px 60px;
            background-color: #fff;
            border-radius: 24px;
        }
            .footer__group {
                display: flex;
                flex: 1 0 0;
                flex-direction: column;
                gap: 11px;
                min-width: 0;
            }
                .footer__ttl {
                    margin: 0;
                    color: #504434;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1;
                    letter-spacing: 0.05em;
                }
                .footer__list {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    width: 100%;
                    margin: 0;
                    padding: 13px 0 0;
                    list-style: none;
                    border-top: 1px solid #504434;
                }
                    .footer__link {
                        display: block;
                        color: #504434;
                        font-size: 12px;
                        font-weight: 500;
                        line-height: 1.5;
                        letter-spacing: 0.05em;
                        text-decoration: none;
                        width: fit-content;
                    }
        .footer__copyright {
            margin: 0;
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0.05em;
            text-align: center;
        }

/*//////////////////// Float ////////////////////*/
.float {
    position: fixed;
    top: 120px;
    right: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.float * {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    box-sizing: border-box;
}
    [class*="float__btn"] {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 54px;
        padding: 12px 16px 14px;
        color: #fff;
        text-decoration: none;
        border-radius: 8px 0 0 8px;
        box-shadow: 0 3px 6px rgba(38, 50, 56, 0.18);
        transition:
            color 0.3s ease,
            background-color 0.3s ease;
    }
    .float__btn--line {
        gap: 2px;
        background-color: #06c755;
        --float-icon: url("/images/top/icon_float-line.svg");
    }
    .float__btn--reservation {
        gap: 4px;
        background-color: #efcb3b;
        --float-icon: url("/images/top/icon_float-reservation.svg");
    }
    .float__btn--satei {
        gap: 4px;
        background-color: #a5cb4c;
        --float-icon: url("/images/top/icon_float-satei.svg");
    }
    .float__btn--contact {
        gap: 2px;
        background-color: #edad37;
        --float-icon: url("/images/top/icon_float-contact.svg");
    }
        .float__icon {
            display: block;
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            background-color: currentColor;
            -webkit-mask: var(--float-icon) center / contain no-repeat;
            mask: var(--float-icon) center / contain no-repeat;
        }
        .float__txt {
            width: 10px;
            color: currentColor;
            font-size: 16px;
            font-weight: 700;
            line-height: 0.7;
            letter-spacing: 0.15em;
            text-align: center;
            text-orientation: upright;
            writing-mode: vertical-rl;
        }

.float__btn--line.org-btn-hover {
    --org-btn-hover-fg: #06c755;
    --org-btn-hover-bg: #fff;
}

.float__btn--reservation.org-btn-hover {
    --org-btn-hover-fg: #efcb3b;
    --org-btn-hover-bg: #fff;
}

.float__btn--satei.org-btn-hover {
    --org-btn-hover-fg: #a5cb4c;
    --org-btn-hover-bg: #fff;
}

.float__btn--contact.org-btn-hover {
    --org-btn-hover-fg: #edad37;
    --org-btn-hover-bg: #fff;
}

[class*="float__btn"].org-btn-hover:hover {
    color: var(--org-btn-hover-fg);
}
