@charset "utf-8";
.MainvisualLp__sp{
    padding-top: 70px;
}
.MainvisualLp img{
    width: 100%;
}
.MainvisualLp__pc{
    display: none;
}
.MainvisualLp{
    position: relative;
}
.Btn__strong{
    transition: all .2s;
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
}
.Btn__strong_text{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Btn__strong_text p{
    padding: 1.7em 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #ff9838;
    border-radius: 50px;
    /* width: 50%; */
}
.Btn__strong_text div{
    width: 52px;
    height: 52px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: -25px;
    z-index: 10;
    position: relative;
}
.Btn__strong_text div span::after{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #ff9838;
    border-right: 2px solid #ff9838;
    transform: rotate(45deg);
}

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

@media screen and (min-width: 767px) {
    .MainvisualLp__sp{
        display: none;
    }
    .MainvisualLp__pc{
        display: block;
        padding-top: 64px;
    }
    .Btn__strong{
        bottom: 7%;
        left: 30%;
    }
    .Btn__strong_text p{
        padding: 18px 50px;
        font-size: 20px;
        width: 320px;
    }
    .Btn__strong_text div{
        width: 46px;
        height: 46px;
    }
    .Btn__strong_text div span::after{
        right: 14px;
        border-top: 3px solid #ff9838;
        border-right: 3px solid #ff9838;
    }
    
    .Btn__strong_text div span::before {
        right: 14px;
        width: 18px;
        height: 3px;
    }
}