/* フッター
----------------------------------------------- */
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;
    }
}

.lp_wrap .cta-wrap {
    position: relative;
    width: 100%;
    display: inline-block;
}

.lp_wrap .cta-text {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    color: #231815;
    font-size: clamp(14px, 4vw, 30px) !important;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    white-space: nowrap;
}

.lp_wrap .cta-button {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: #37ae4e;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    padding: 10px 10px;
    width: 72%;
    height: 33%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.lp_wrap .cta-button:hover {
    opacity: 0.7;
}

.lp_wrap .cta-button p {
    font-size: clamp(14px, 4vw, 30px) !important;
}

.lp_wrap .cta-button>p:first-child {
    flex: 1;
    text-align: center;
}

.lp_wrap .cta-button .dli-plus-circle {
    margin-left: auto;
    font-size: clamp(17px, 4vw, 30px) !important;
}

.lp_wrap .cta-button .dli-plus-circle>span {
    width: 52%;
    height: 0.2em;
    background: currentColor;
    border-radius: 0.1em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.lp_wrap .cta-button .dli-plus-circle>span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}