/* フッター
----------------------------------------------- */
footer .bottom {
    background-color: #162129;
}

footer .bottom .inner {
    max-width: 1200px;
    margin: auto auto auto auto;
    padding: 15px 10px 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .bottom .inner .logo {
    max-width: 220px;
}

footer .bottom .inner .logo,
footer .bottom .inner .logo a {
    display: block;
    width: 110px;
    height: 18px;
    line-height: 1em;
}

footer .bottom .inner .logo a svg {
    fill: #ffffff;
    transition-duration: 0.4s;
}

footer .bottom .inner .link {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

footer .bottom .inner .link li {
    padding: 0px 10px 0px 10px;
}

footer .bottom .inner .link li a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

footer .bottom .inner .copyright {
    font-size: 12px;
    color: #ffffff;
}

@media screen and (max-width: 1100px) {
    footer .bottom .inner {
        display: block;
    }

    footer .bottom .inner .link {
        padding: 25px 0px 0px 0px;
        margin: 0px 0px 0px -10px;
    }

    footer .bottom .inner .link li {
        padding: 0px 10px 15px 10px;
    }

    footer .bottom .inner .copyright {
        padding: 15px 0px 0px 0px;
    }
}

@media screen and (max-width: 800px) {
    footer .bottom .inner .logo {
        max-width: 160px;
        margin: auto auto auto auto;
    }

    footer .bottom .inner .link {
        padding: 15px 0px 0px 0px;
        justify-content: center;
    }

    footer .bottom .inner .link li {
        padding: 0px 10px 10px 10px;
    }

    footer .bottom .inner .copyright {
        padding: 0px 0px 0px 0px;
        text-align: center;
    }
}

/* CTAボタン */
.lp_wrap .cta-wrap {
    position: relative;
}

.lp_wrap .cta-wrap .cta-btn {
    position: absolute;
    width: 93.75%;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
}