@charset "utf-8";

.ls_main .main-content {
    text-align: center;
}

.ls_main .title2 {
    color: #FA7300;
    font-family: 'Roboto', sans-serif;
    font-size: 62px;
    font-weight: bold;
    text-align: center;
    margin-left: 0;
}

.ls_main .title3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-left: 0;
    margin-bottom: 50px;
}

.ls_main .btn-top {
    display: flex;
    align-items: center;
    gap: 0.97vw;
    background: #fff;
    /*padding: 1.47vw 6.11vw 1.47vw 3.08vw;*/
    border: 1px solid #B4C3D2;
    border-radius: 48px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: var(--font-semibold);
    width: 340px;
    height: 70px;
    color: #1E232D;
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    justify-content: center;
    margin: 0 auto;
}

.ls_main .btn-top::after {
    content: "";
    display: inline-block;
    background-image: url(../../img/common/button_orange_left.png);
    background-position: center;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 14px;
    top: 14px;
}

@media (max-width: 768px) {
    .ls_main .title2 {
        font-size: 46px;
    }

    .ls_main .title3 {
        font-size: 18px;
    }

    .ls_main .btn-top {
        width: 280px;
        height: 50px;
        font-size: 14px;
    }

    .ls_main .btn-top::after {
        width: 30px;
        height: 30px;
        left: 10px;
        top: 10px;
    }
}

