@charset "utf-8";

#footer .inner {
    padding-bottom: 30px;
}

/* -----一番左列----- */

.footer-l {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

/* ロゴ */
.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

/* 住所 */
.footer-address .text {
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.7;
    padding-bottom: 30px;
}

/* ----- 左列 ----- */

.footer-m-l {
    margin-bottom: 30px;
}

#footer .inner div > p {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.125em;
    letter-spacing: .1em;
}

#footer .inner div ul li a {
    position: relative;
    display: block;
    font-weight: 400;
    letter-spacing: .1em;
    padding-left: 30px;
    margin-bottom: 10px;
    transition: all .4s;
}

#footer .inner div ul li a::before {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    content: "";
    width: 10px;
    height: 2px;
    background-color: #1D9BF0;
}

/* ----- 右列 ----- */

.footer-m-r {
    margin-bottom: 30px;
}

/* ----- 一番右列 ----- */

.footer-r a {
    display: block;
    font-weight: 500;
    font-size: 1.125em;
    letter-spacing: .1em;
    margin-bottom: 20px;
    transition: all .4s;
}

/* コピーライト */

.copy {
    margin-bottom: 90px;
    letter-spacing: .1em;
    text-align: center;
    color: #888;
}

@media(min-width: 1025px) {
    #footer .inner {
        max-width: 1000px;
        display: flex;
        justify-content: space-between;
    }

    #footer .footer-address .text {
        font-size: 14px;
        padding-bottom: 0;
        line-height: 1.9;
    }

    #footer .footer-l {
        border-bottom: 0;
    }

    .copy {
        margin-bottom: 20px;
    }

    .footer-logo a {
        transition: all .4s;
    }

    .footer-logo a:hover {
        opacity: .6;
    }

    #footer .inner div ul li a:hover {
        color: #1D9BF0;
    }

    .footer-r a:hover {
        color: #1D9BF0;
    }
}