@charset "utf-8";

/*-------------------------------------------------------------------------
FOOTER
-------------------------------------------------------------------------*/

.l-footer a:hover {
    opacity: 1;
}

.l-footer * {
    color: #fff;
    font-family: 'NotoSansJP', 'Hiragino Kaku Gothic ProN','Meiryo', sans-serif;
}

.ui-centering {
    width: var(--screen-size);
    margin-inline: auto;
}

/* ログイン中バー
--------------------------- */
.footer__login-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5000;
    width: 100%;
    padding: 5px 0;
    background: #ED1C24;
    opacity: 0.7;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

/* LAYOUT
--------------------------- */
.footer__top {
    background-color: #333;
    padding: 50px 0;
}
    .footer__section:not(:last-child){
        margin: 0 0 20px;
    }
.footer__bottom {
    background-color: #0D0D0D;
    padding: 50px 0 10px;
}
    .footer__info {
        display        : flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 0 0 30px;
        width: 1200px;
        padding-left: 30px;
    }
    .footer__info.ui-centering{
        margin: 0 auto 23px;
    }
        .footer__right {
            display: flex;
            padding-top: 10px;
        }
.footer__copy {
    font-size: 13px;
    text-align: center;
}

/* #
--------------------------- */
.footer__text {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 500;
}

/* #
--------------------------- */
.footer__ttl {
    display    : flex;
    gap        : 6px;
    align-items: center;
    margin: 0 0 10px;
    font-size  : 14px;
    font-weight: 700;
}
.footer__ttl:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
}
.footer__townname {
    display: flex;
    align-items: baseline;
    gap    : 46px;
}
    .footer__sub-ttl {
        font-size  : 13px;
        font-weight: 700;
        color      : #fff;
        white-space: nowrap;
    }
    .footer__sub-ttl:before {
        content: "";
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0 4px 0 0;
    }

/* #
--------------------------- */
.ft-search {
    display: flex;
    gap    : 10px;
    flex-wrap: wrap;
}
    .ft-search__link {
        border: 1px solid #fff;
        padding: 4px 19px 6px;
        display: block;
        font-size  : 12px;
        font-weight: 500;
        transition: 0.4s;
    }
    .ft-search__link:hover {
        opacity: 1;
        background-color: #fff;
        color: #333;
    }

/* #
--------------------------- */
.footer__list {
    width: 262px;
    border-left: 2px solid #fff;
    padding: 10px 0 16px 20px;
}
    .footer__list > * + * {
        margin: 15px 0 0;
    }
        .footer__link {
            font-size  : 14px;
            font-weight: 500;
        }
        .footer__link:before {
            content: "";
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            display: inline-block;
            margin: 0 6px 0 0;
        }
        .footer__link:hover {
            opacity: 1;
            text-decoration: underline;
        }
