/* CSS Document */

@media screen and (min-width:576px){
    .onlyPc{
        display: block;
    }
    .onlySp{
        display: none;
    }
    .leftPc{
        text-align: left!important;
    }
    .centerPc{
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .onlyPc{
        display: none;
    }
    .onlySp{
        display: block;
    }
    .leftSp{
        text-align: left!important;
    }
    .centerSp{
        text-align: center;
    }
}


.btnWrap a{
    background: -webkit-linear-gradient(135deg, #006699, #0e3f72);
    background: -o-linear-gradient(135deg, #006699, #0e3f72);
    background: linear-gradient(135deg, #006699, #0e3f72);
    box-shadow: 0 0 10px 10px rgba(51,102,102,0.2);
    
    display: block;
    
    height: 50px;
    color:white;
    line-height: 50px;
    text-align: left;
    padding-left: 15px;
    margin-left: 40px;
    margin-top: 50px;
}
@media screen and (max-width:575px){

    .btnWrap a{
        margin-left:10px;
        margin-bottom:20px;
    }
}
.shadow-primary{
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
}


.bg-graient-b{
    background: -webkit-linear-gradient(135deg, #006699, #0e3f72);
    background: -o-linear-gradient(135deg, #006699, #0e3f72);
    background: linear-gradient(135deg, #006699, #0e3f72);
}