@charset "UTF-8";


.l-footer * {
    color: var(--main-font-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
}
/* /////////////////// FOOTER /////////////////// */
.l-footer {
    background-color: #242626;
    padding: 0;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 80px 0 10px;
    width: 100%;
}
.footer__contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1140px;
    min-height: 199px;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}
    .footer__brand-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
        .footer__logo {
            display: block;
            width: 410px;
            height: 67px;
        }
            .footer__logo img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: left center;
            }
        .footer__address {
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 1.6;
            color: #fff;
        }
            .footer__address-text {
                margin: 0;
            }
            .footer__tel-link {
                color: #fff;
                text-decoration: none;
            }
            .footer__tel-link:hover {
                opacity: 1;
                color: #F58220;
            }
    .footer__btn-list {
        display: flex;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .footer__btn-item {
            margin: 0;
        }
            .footer__btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 150px;
                height: 50px;
                box-sizing: border-box;
                border: 1px solid #fff;
                border-radius: 6px;
                background-color: transparent;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 16px;
                line-height: 1;
                color: #fff;
                text-decoration: none;
                white-space: nowrap;
                transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            }
            .footer__btn:hover {
                opacity: 1;
                background-color: #F58220;
                border-color: #F58220;
                color: #fff;
            }
.footer__nav {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-top: 23px;
}
    .footer__nav-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .footer__nav-item {
            margin: 0;
        }
            .footer__nav-link {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 16px;
                line-height: 1;
                color: #fff;
                text-decoration: none;
                white-space: nowrap;
                transition: color 0.3s ease;
            }
            .footer__nav-link:hover {
                opacity: 1;
                color: #F58220;
            }
.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
    .footer__bottom-line {
        display: block;
        width: 100%;
        height: 1px;
        background-color: #fff;
        opacity: 0.5;
    }
    .footer__copyright {
        width: 100%;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.8;
        color: #fff;
        text-align: center;
    }

    .float-link {
        position: fixed;
        top: 170px;
        right: 0;
        z-index: 8;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
        .float-link__item {
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
            width: 80px;
            height: 228px;
            padding: 18px 0 15px;
            border: 1px solid #fff;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #fff;
            font-family: "Zen Kaku Gothic New", sans-serif;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        .float-link__item:hover {
            opacity: 0.85;
        }
        .float-link__item--reservation {
            background-color: #242626;
        }
        .float-link__item--line {
            background-color: #06C152;
        }
        .float-link__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            border-radius: 50%;
        }
        .float-link__item--reservation .float-link__icon {
            background-color: #e6e6e6;
        }
        .float-link__item--line .float-link__icon {
            background-color: #deffeb;
        }
        .float-link__icon svg {
            display: block;
            width: 26px;
            height: 26px;
        }
        .float-link__text {
            display: flex;
            flex: 1;
            flex-direction: row;
            justify-content: center;
            gap: 4px;
            margin-top: 12px;
        }
        .float-link__title {
            writing-mode: vertical-rl;
            text-orientation: upright;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.2;
            letter-spacing: 0.2em;
            font-family: "Zen Kaku Gothic New", sans-serif;
        }
        .float-link__sub {
            writing-mode: vertical-rl;
            font-weight: 500;
            font-size: 12px;
            line-height: 1.2;
            letter-spacing: 0.2em;
            font-family: "Zen Kaku Gothic New", sans-serif;
        }
        .float-link__num {
            text-combine-upright: all;
            -webkit-text-combine: horizontal;
        }