

.fixedBtnOuter{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index:100;
}
.fixedBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    max-width: 1160px;
    margin:0 auto;
}
.fixedBtn a{
    width:calc(50%);
    font-size:30px;
}


.chaseBtn{
    width: 100%;
    max-width:calc(50%);
    margin:0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}
.chaseBtn a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
    min-height: 50px;
    font-size: 16px;
    border-radius:8px;
    text-decoration:none;
    transition: all 0.2s linear;
    position:relative;
    margin:0 auto;
    font-weight:bold;
    color:#fff;
}
.chaseBtn a:hover{
    opacity:0.8;
}
.chaseBtn a::after{
    background-image:url(/common/images/chase_arrow.svg);
    background-size:cover;
    background-position:center;
    content:"";
    display:block;
    width: 9px;
    height: 15px;
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    right:10px;
}


.chaseType1 a{
    background: linear-gradient(90deg, #FFE046 3%, #FDD139 27%, #F69200 84%);
}
.chaseType2 a{
    background: linear-gradient(to right, rgba(166, 206, 0, 1) 12%, rgba(57, 181, 74, 1) 88%);
}
.chaseType3 a{
    background: linear-gradient(to right, rgba(77, 179, 202, 1) 12%, rgba(0, 88, 179, 1) 88%);
}
.fixedChase a{
    font-size:30px;
    font-weight:bold;
    min-height: 80px;
}
@media only screen and (max-width: 750px) {
.chaseBtn{
    max-width:calc(70%);
}
.fixedChase a{
    font-size:14px;
    min-height: 60px;
        line-height: 1.2em;
}
}