@charset "UTF-8";

.cs_box_dl_btn{
    position: relative;
    display: block;
    width: 35%;
    margin: 10px auto;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;

    background-color: #CC023A;
    border: 2px solid #000000;
    color: #fff !important;
    font-weight: bold;
    text-shadow: 0px 0px 5px rgb(0 0 0);
    transition: all 1s ease;
}

.cs_box_dl_btn::before {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(/content/dam/nttcom/hq/jp/business/cmn/img/dcc_temp/icon_arrow_right_white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.cs_box_dl_btn::before {
    position: absolute;
    right: 15px;
    top: 0;
    width: 10px;
    height: 10px;
    transition: all 0.5s 
ease;
}

.cs_box_dl_btn:after{
    content: none;
}

.cs_box_dl_btn:hover {
    background-color: #fd0449 !important;
    opacity: 1 !important;
    transition: all 0.3s 
ease;
}

.cs_box_dl_btn:hover::before {
    position: absolute;
    right: 10px;
}

@media only screen and (max-width: 480px) {
    .cs_box_dl_btn {
        width: 100%;
    }
}