#lp_contents .stickymenu {
    background: #ffffffc8;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-position: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
}
#lp_contents .stickymenu.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
#lp_contents .btn-wrap-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 8px;
}
#lp_contents .btn-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 326px;
    margin-top: 0 !important;
}
#lp_contents .btn-ttl {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
#lp_contents .btn-nml {
    border: 1px solid #014e98;
    color: #014e98;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    width: 326px;
    max-width: 100%;
    border-radius: 100vw;
    margin: 0 auto;
    padding: 6px;
    text-decoration: none;
}
#lp_contents .btn-nml.fixed-btn {
    width: 100%;
    font-size: 18px;
    min-height: 48px;
    color: #fff;
}
#lp_contents .btn-nml.cv-btn {
    background: linear-gradient(110deg, #014e98 50%, #1981e5 60%, #014e98 70%);
    background-size: 400% 100%;
    animation: shine 22s infinite;
    animation-delay: 0s;
    animation-timing-function: linear;
}
#lp_contents .btn-nml.cv-btn.accent-org {
    background: linear-gradient(110deg, #c25400 50%, #f9a96b 60%, #c25400 70%);
    background-size: 400% 100%;
    border-color: rgba(219, 95, 0, .5);
}

#lp_contents .stickymenu a:hover {
    transition: 0.4s ease;
    opacity: .6;
}

@keyframes shine {
    0% {
        background-position-x: 600%
    }

    50% {
        background-position-x: 0%
    }

    100% {
        background-position-x: -600%
    }
}

@media screen and (max-width: 768px) {
    #lp_contents .btn-wrap-container {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px;
    }
    #lp_contents .btn-ttl {
        font-size: 10px;
        margin-bottom: 5px;
    }
    #lp_contents .btn-nml.fixed-btn {
        font-size: 16px;
        min-height: 24px;
    }
    #lp_contents .btn-nml {
        max-width: 90%;
    }
}
