@charset "utf-8";

.lp01Btn__strong{
    transition: all .2s;
    margin-top: 40px;
}
.lp01Btn__strong_text{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lp01Btn__strong_text p{
    padding: 24px 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #ff9838;
    border-radius: 50px;
    /* width: 60%; */
}
.lp01Btn__strong_text div{
    width: 52px;
    height: 52px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: -25px;
    z-index: 10;
    position: relative;
}
.lp01Btn__strong_text div span::after{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #ff9838;
    border-right: 2px solid #ff9838;
    transform: rotate(45deg);
}

.lp01Btn__strong_text div span::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 18px;
    height: 2px;
    background: #ff9838;
    border-radius: 5px;
}
.lp01Btn__strong:hover{
    transform: scale(1.1, 1.1);
}

@media screen and (min-width: 767px) {
    .lp01Btn__strong{
        bottom: 7%;
    }
    .lp01Btn__strong_text p{
        padding: 32px 60px;
        font-size: 20px;
        /* width: 30%; */
    }  
    .lp01Btn__strong_text div{
        width: 70px;
        height: 70px;
    }
    .lp01Btn__strong_text div span::after{
        right: 28px;
        width: 18px;
        height: 18px;
        border-top: 4px solid #ff9838;
        border-right: 4px solid #ff9838;
    }
    
    .lp01Btn__strong_text div span::before {
        right: 28px;
        width: 28px;
        height: 4px;
        background: #ff9838;
        border-radius: 5px;
    }
}