#cv-fixed {
    z-index: 0;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(3,81,161,.9);
    padding: 0 20px;
    transition: all .15s;
    overflow: hidden;
    height: 0;
}

#cv-fixed.show {
    height: auto;
    z-index: 9990;
    padding: 20px;
    overflow: initial;
}

@media screen and (max-width: 768px) {
    #cv-fixed.show {
        padding: 20px 0;
        padding-left: 10px;
    }

    .fr #cv-fixed .cv-btn a {
        padding: 10px 0;
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .fr #cv-fixed .cv-btn a {
        padding: 8px 0;
        font-size: 13px;
    }
}

#cv-fixed:before {
    content: "";
    width: 180px;
    height: 160px;
    position: absolute;
    left: 20px;
    bottom: 0;
    background: url(/homes/lp/img/cv-fixed-img.png) no-repeat;
    display: block;
}

@media screen and (max-width: 768px) {
    #cv-fixed:before {
        background:unset;
    }
}

@media screen and (max-width: 768px) {
    #cv-fixed:before {
        width:90px;
        height: 80px;
        background-size: 90px auto;
        left: 5px;
        display: none;
    }
}

#cv-fixed h2 {
    width: 70%;
    float: left;
    text-align: right;
    margin: 0;
    color: #fff;
    text-align: center;
    position: relative;
    text-indent: 15%;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6em;
}

.fr #cv-fixed h2 {
    width: 60%;
}

@media screen and (max-width: 1350px) {
    #cv-fixed h2 {
        font-size:30px;
        line-height: 70px;
    }
}
@media screen and (max-width: 1100px) {
    #cv-fixed h2 {
        font-size:22px;
    }
}
@media screen and (max-width: 768px) {
    #cv-fixed h2 {
        font-size:14px;
        line-height: 1.4em;
        width: 50%;
        padding: 0 0;
        padding-right: 10px;
        text-indent: 0;
    }
}

#cv-fixed .cv-btn {
    width: 30%;
    float: left;
}

.fr #cv-fixed .cv-btn {
    width: 36%;
}

@media screen and (max-width: 768px) {
    #cv-fixed .cv-btn {
        width:45%;
    }

    #cv-fixed .cv-btn a {
        font-size: 14px;
        padding: 15px 0;
    }
}

@media screen and (max-width: 480px) {
    #cv-fixed .cv-btn a:before {
        display:none;
    }
}

@media screen and (max-width: 375px) {
    #cv-fixed h2 {
        font-size: 11px;
        line-height: 1.4em;
        width: 50%;
        padding: 0 0;
        text-indent: 0;
    }
}

.cv-btn a {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
    border-radius: 6px;
    background: radial-gradient(#ffc600,#f07700);
    padding: 20px 0;
    font-family: 'Noto Sans Japanese', "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS P Gothic","ＭＳ Ｐゴシック",sans-serif;
    font-weight: 600;
    font-size: 20px;
    transition: .3s;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 0 10px #ff7e00;
    position: relative;
}

.cv-btn a:after {
    content: "";
    width: 94%;
    height: 10px;
    border-radius: 6px;
    position: absolute;
    display: block;
    left: 50%;
    margin-left: -47%;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    background: rgba(255,255,255,.8);
    top: 5px;
    z-index: 2;
}

/* IE10+ detection */
html.ie-browser .cv-btn a:after {
    display: none;
}

.cv-btn a:before {
    content: "";
    width: 8px;
    height: 14px;
    background: url(/homes/lp/img/arrow01.png) no-repeat;
    background-size: 8px auto;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -7px;
}

.cv-btn a:link,.cv-btn a:visited {
    color: #fff;
    text-decoration: none;
}

.cv-btn a:active,.cv-btn a:hover {
    color: #fff;
    text-decoration: none;
    background: radial-gradient(#fff000,#ff7e00);
}

.cv-fixed-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}