

/*================================
    共通
=================================*/

.lp h1{
    margin-left: 0;
    margin-right: 0;
}

.lp h2{
    margin-left: 0;
    margin-right: 0;
}
.lp p{
    margin-bottom: 0;
}
.lp img{
    border-radius: 0;
    vertical-align:top;
}


.lp .btn{
    background: #25A1C7;
    border-radius: 8px;
    display: flex;
    /*width: 32%;*/
    max-width: 366px;
    justify-content: center;
    align-items: center;
    position: relative;
    padding:1.4375rem 1rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
}
.lp .btn p{
    font-size: 1.125rem;
    font-weight: 700;
    color:#fff;
    line-height: 1em;
    text-align: center;
}

@media screen and (max-width: 430px) {
    .lp .btn {
        width: 100%;
        padding: 1.4375rem 0.8rem;
    }
}


.lp .btn-mail{
    background: #25A1C7;
    border-radius: 8px;
    display: flex;
    /*width: 32%;*/
    max-width: 366px;
    justify-content: center;
    align-items: center;
    position: relative;
    padding:1.4375rem 1rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
}
.lp .btn-mail p{
    font-size: 1.125rem;
    font-weight: 700;
    color:#fff;
    line-height: 1em;
}
.lp .btn-mail p:before{
    content: "";
    width: 2.91rem;
    height: 1.125rem;
    background: url(../img/lp/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 1.625rem;
}
.lp .btn-mail a{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}
@media screen and (max-width: 430px) {
    .lp .btn-mail {
        padding: 1.4375rem 0.8rem;
    }
}



.lp .otherlp{
    display: flex;
    justify-content: flex-end;
    padding-top:1.25rem;
    padding-bottom:0rem;
}

.lp .otherlp .btn-otherlp{
    background: #88B928;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
    border-radius: 8px;
    padding:1.4375rem 1rem;
    position: relative;
}
.lp .btn-otherlp p{
    font-size: 1.125rem;
    font-weight: 700;
    color:#fff;
    line-height: 1em;
}
.lp .btn-otherlp a{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}

/*================================
    header
=================================*/

.lp-head .site-header{
    position: fixed;
    height: 82px!important;
    padding-top:0.875rem;
    padding-bottom:1.125rem;
}

.lp-head .site-branding{
    height: 100%;
}
.lp-head .site-branding a{
    height: 100%;
}

.lp-head .site-logo{
    height: 100%;
}

.lp-head .site-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-head .main-navigation .navi ul{
    padding-left: 0;
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
    padding-left: 3.75rem;
    padding-right: 6.875rem;
}
.lp-head .main-navigation .navi ul li{
    list-style: none;
}

.lp-head .main-navigation .navi ul li a{
    color: #595757;
    font-size: 0.56rem;
    font-weight: 700;
}

.lp-head .modal-btn{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    z-index: 501;
    top:30px;
    right:20px;

}

.lp-head .modal-btn span{
    display: block;
    height: 2px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute
}
.lp-head .modal-btn span:nth-child(1){
    top: 0;
}
.lp-head .modal-btn span:nth-child(2){
    top: 10px;
}
.lp-head .modal-btn span:nth-child(3){
    top: 20px;
}

@media screen and (max-width: 768px) {


    .lp-head .site-header{
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        width: 100%;
        z-index: 500;
        background: #fff;
    }

    .lp-head .site-branding{
        display: block!important;
        width: auto;
    }

    .lp-head .main-navigation{
        display: none;
        opacity: 0;
        transition: all 0.5s ease;
        background-color: rgba(255,255,255,1);
        width: 100%;
        z-index: 490;
        position: fixed;
        top:82px;
        left:0;

    }
    .lp-head .main-navigation.is-open{
        display: block;
        opacity: 1;
    }

    .lp-head .main-navigation .navi ul{
        display: flex;
        align-items: center;
        flex-direction: column;
        column-gap: 0rem;
        row-gap: 0.8rem;
        padding-top: 48px;
        padding-bottom: 36px;
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
    }
    .lp-head .main-navigation .navi ul li a{
        color: #595757;
        font-size: 1rem;
        font-weight: 700;
    }
    

    .lp-head .site-logo{
        padding-left: 0;
    }
    .lp-head .site-logo img{
        width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .lp-head .modal-btn{
        display: flex;
    }

    .lp-head .modal-btn.is-open span:nth-child(1){
        transform: rotate(45deg);
        top: 10px;
    }
    .lp-head .modal-btn.is-open span:nth-child(2){
        opacity: 0;
    }
    .lp-head .modal-btn.is-open span:nth-child(3){
        transform: rotate(-45deg);
        top: 10px;
    }
}

/*================================
    bunner
=================================*/

.lp .bunner{
    position: relative;
    padding-top: 0%;
    padding-bottom: 0%;
    margin-top: 3rem;
    margin-bottom: 3.625rem;
    width: 100%;
    max-width: 718px;
    margin-left: auto;
    margin-right: auto;
}

.lp .bunner__wrapper__inner{
    position: absolute;
    width: 50.5%;
    bottom: 8%;
    left: 11.6%;
}
.lp .bunner__wrapper__inner img{
    border-radius: 0;
}

.bunner__wrapper.all-link{
    position: relative;
}
.bunner__wrapper.all-link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}


@media screen and (max-width: 768px) {

    .lp .bunner{
        width: 100%;

    }

    .lp .bunner__wrapper__inner{
        width: 45.5%;
        bottom: 10%;
        left: 13.6%;
    }
}

@media screen and (max-width: 400px) {
    .lp .bunner__wrapper__inner{
        bottom: 7%;
    }
}


header .bunner{
    position: relative;
    padding-top: 0%;
    padding-bottom: 0%;
    margin-top: 3rem;
    margin-bottom: 3.625rem;
    width: 100%;
    max-width: 718px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

header .bunner__wrapper__inner{
    position: absolute;
    width: 50.5%;
    bottom: 8%;
    left: 11.6%;
}
header .bunner__wrapper__inner img{
    border-radius: 0;
}

@media screen and (max-width: 768px) {

    header .bunner{
        width: 100%;
        display: block;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
        margin: 0;

    }

    header .bunner__wrapper__inner{
        width: 45.5%;
        bottom: 17%;
        left: 13.6%;
    }
}

@media screen and (max-width: 400px) {
    header .bunner__wrapper__inner{
        bottom: 19%;
    }
}


#footer .bunner{
    position: relative;
    padding-top: 0%;
    padding-bottom: 0%;
    margin-top: 3rem;
    margin-bottom: 3.625rem;
    width: 100%;
    max-width: 718px;
    margin-left: auto;
    margin-right: auto;
}

#footer .bunner__wrapper__inner{
    position: absolute;
    width: 50.5%;
    bottom: 8%;
    left: 11.6%;
}
#footer .bunner__wrapper__inner img{
    border-radius: 0;
}

@media screen and (max-width: 768px) {

    #footer .bunner{
        width: 100%;
        display: block;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
        margin: 0;
        position: fixed;
        bottom:0;
        z-index: 500;
    }

    #footer .bunner__wrapper__inner{
        width: 45.5%;
        bottom: 17%;
        left: 13.6%;
    }
}

@media screen and (max-width: 400px) {
    #footer .bunner__wrapper__inner{
        bottom: 19%;
    }
}

#footer .copy{
    padding: 0 24px;
    text-align: center;
    width: 100%;
    font-size: 9px;
}

#footer .copy p{
    margin-bottom: 0;
}

/*================================
    mv
=================================*/

.lp__mv{
    width: 100%;
    height: auto;
    padding:var(--header-height) 4rem 1.625rem;
    position: relative;
}
.lp__mv__bg{
    width: 100%;
    height: calc(100% - var(--header-height));
    background:url(../img/lp/lp-mv-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: absolute;
    bottom:0;
    right:0;
    z-index: -1;
}

.lp__mv__wrapper{
    display: flex;
}

.lp__mv__wrapper__txt{
    max-width: 62%;
    padding-top:4rem;
    position: relative;
}
.lp__mv__wrapper__img{
    width: 27%;
    padding-top:1rem;
}
.lp__mv__wrapper__img img{
    max-height:400px;
    max-width:100%;
    object-fit: contain;
}

.lp__mv__wrapper__img p.ttl{
    text-align: center;
    background: #25A1C7;
    color: #fff;
    font-weight: 700;
    padding: 4px 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lp__mv__wrapper__img ul{
    display: flex;
    column-gap: 12px;
    row-gap: 8px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.5);
    padding:12px;
    margin-top: 0;
}
.lp__mv__wrapper__img ul li{
    list-style: none;
    font-weight: 700;
}
.lp__mv__wrapper__txt h1{
    font-size: 2.375rem;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 0;
}

.lp__mv__wrapper__txt h1.type2{
    line-height: 1.2em;
    margin:1rem 0;
}


.lp__mv__wrapper__txt p{
    font-size: 1.125rem;
    line-height: 2.0em;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.lp__mv__wrapper__txt ul{
    padding-left:0;
    display: flex;
    flex-direction: column;
    row-gap: 8.5px;
    margin: 1.625rem 0;
}
.lp__mv__wrapper__txt ul li{
    list-style: none;
    display: inline-block;
}
.lp__mv__wrapper__txt ul li p{
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding:0.5rem 1.875rem;
    border-radius: 20px;
    line-height: 1em;
    background:linear-gradient(-85deg, #8DC21F, #006636);
    display: inline-block;
}

.lp__mv__wrapper__txt ul li .size-l{
    font-size: 1.4rem;
}

.lp__mv__wrapper__txt ul li .size-s{
    font-size: 0.9rem;

}

.lp__mv__wrapper__txt .bach{
    text-align: center;
    position: relative;
    top: 0px;
    left: 0px;
    border-radius: 4px;
    padding: 6px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, #F39800 0%, #f5d7a4 50%, #F39800 100%);
    background-repeat: no-repeat;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    z-index: 1;
    width: fit-content;
    display: flex;
    gap:1rem;
}
.lp__mv__wrapper__txt .bach p{
    background: rgba(255, 255, 255,1);
    padding: 0.5rem 0.5rem;
    border-radius: 6px;
    line-height: 1.2em;
    font-size: 0.8rem;
    display: inline-block;
}
.lp__mv__wrapper__txt .bach p span{
    background:#F39800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp__mv__wrapper__txt p.dec{
    display: inline-block;
    font-weight: 700;
    background:linear-gradient(-85deg, #8DC21F, #006636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    z-index: 2;
    position: relative;
    margin-left: 0px;
    line-height: 1.2em;
    margin-bottom: 2rem;
    padding-top: 0.3em;
}

.lp__mv__wrapper__txt p.dec span.size-l{
    font-size: 2.6rem;
}
.lp__mv__wrapper__txt p.dec span.size-s{
    font-size: 1.6rem
}

.lp__mv__wrapper__txt p.dec-type2{
    display: inline-block;
    font-weight: 700;
    background:linear-gradient(-85deg, #8DC21F, #006636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    z-index: 2;
    position: relative;
    margin-left: 0px;
    line-height: 1.2em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-top: 0.3em;
}



@media screen and (max-width: 768px) {

    .lp__mv{
        width: 100%;
        padding:2em 24px 1.625rem;
        margin-top: 82px;
    }
    .lp__mv__bg{
        height: calc(100%);
    }
    .lp__mv__bg:after{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top:0;
        left:0;
        background:rgba(255,255,255,0.5);
    }


    .lp__mv__wrapper{
        flex-wrap: wrap;
    }
    .lp__mv__wrapper__txt{
        max-width: 100%;
        width: 100%;
        padding-top:1rem;
    }

    .lp__mv__wrapper__img{
        width: 80%;
        padding-top:1rem;
        margin-bottom: 1rem;
        margin-left: auto;
    }
    .lp__mv__wrapper__img.type02{
        width: 100%;
    }


    .lp__mv__wrapper__txt h1{
        font-size: 1.8rem;
        line-height: 1.2em;
        letter-spacing: 0em;
        font-weight: 700;
        margin-bottom: 1.5em;
    }
    .lp__mv__wrapper__txt h1.type2{
        font-size: 2.4rem;
    }
    
    .lp__mv__wrapper__txt p{
        font-size: 1.125rem;
        line-height: 2.0em;
        font-weight: 700;
        letter-spacing: -0.08em;
    }
}

@media screen and (max-width: 430px) {
    .lp__mv__wrapper__txt h1{
        font-size: 1.6rem;
    }
    .lp__mv__wrapper__txt h1.type2{
        font-size: 1.8rem;
    }

    .lp__mv__wrapper__txt h1.type2 span{
        margin-left: auto;
        display: block;
        font-size: 2.4rem;
        text-align: right;
        margin-top: 12px;
    }

    .lp__mv__wrapper__txt p{
        font-size: 1.1rem;
    }
    .lp__mv__wrapper__txt ul li p{
        font-size: 1.1rem;
        padding: 0.5rem 1.2rem;
    }


}

.lp__mv .promiss{
    background:rgba(255,255,255,0.9);
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    padding:12px;

}
.lp__mv .promiss .ttl{
    color:#DE5419;
    font-weight: 600;
    text-align: center;
    padding:8px;
    margin-bottom: 0;
}


/*================================
    lp-01
=================================*/

.lp-01{
    background: #25A1C7;
    padding:3.5rem 24px 2.625rem;
    position: relative;
}

.lp-01__head__img{
    display: none;
}
.lp-01 h2{
    font-size: 2.81rem;
    transform: rotate(-4deg);
    color: #fff;
    margin-bottom: 0;
}

.lp-01__wrapper{
    display: flex;
    column-gap:2.875rem;
    justify-content: center;
}

.lp-01__wrapper ul{
    padding-left: 0;
}

.lp-01__wrapper ul li{
    position: relative;
    line-height: 1em;
    display: flex;
    align-items: flex-end;
    padding-top: calc(0.875rem + 0.5rem);
    width: fit-content;
}

.lp-01__wrapper ul li:after{
    content:"";
    width: calc(100%);
    height: 1px;
    border-bottom:1px solid #fff;
    position: absolute;
    top:calc(100% + 0.5rem);
    left:0;
}

.lp-01__wrapper ul li p{
    font-size: 1.05rem;
    color:#fff;
    font-weight: 700;
    line-height: 1em;
}

.lp-01__wrapper ul li .num{
    height: 2.2rem;
    width: 3.2rem;
    text-align: right;
}

.lp-01__wrapper ul li .num img{
    width:100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

.lp-01__illust{
    position: absolute;
    bottom:0;
    right:0;
    width: 13.5rem;
    height: 16.625rem;
}
.lp-01__illust img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {

    .lp-01{
        padding-left:24px;
        padding-right:24px;
        text-align: left;
    }
    .lp-01__head{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lp-01__head__img{
        display: block;
        width: 40%;
    }
    .lp-01__head__img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .lp-01 h2 {
        width: auto;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-left: 0;
        padding-right: 0;
        margin-left: -12px;
        text-align: left;
    }
    .lp-01__wrapper{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .lp-01__wrapper ul{
        margin-top: 0;
        margin-bottom: 0;

    }
    .lp-01__illust{
        display: none;
    }

}

@media screen and (max-width: 430px) {
    .lp-01__wrapper ul li p {
        font-size: 0.9rem;
    }
}

/*================================
    lp-02
=================================*/

.lp-02{
    background: rgba(37, 161, 199,0.1);
    position: relative;
    padding: 0;
}
.lp-02::after{
    background: rgba(255, 255, 255,1);
    border-radius: 8px;
    width: calc(100% - 2.5rem);
    height: calc(100% - 1.875rem);
    position: absolute;
    top:2.5rem;
    right:1.875rem;
    z-index: 0;
}
.lp-02__wrapper{
    display: flex;
    column-gap:10px;
}
.lp-02__wrapper__img{
    width:35%;
    position: relative;
    z-index: 2;
}
.lp-02__wrapper__txt{
    width:calc(100% - 35% - 10px);
    margin-top: 1.5rem;
    margin-right: 2.5rem;
    padding-top: 1.5rem;
    padding-right: 4.2rem;

    position: relative;
    z-index: 1;
}

.lp-02__wrapper__txt:before{
    content:"";
    background: #fff;
    width: 120%;
    height: 100%;
    position: absolute;
    bottom:0;
    right:0;
    z-index: -1;
    padding-top: 1.5rem;
    border-radius: 20px;
}

.lp-02__wrapper__txt h2{
    font-size: 1.875rem;
    letter-spacing: 0em;
    color:#EA5514;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
}
.lp-02__wrapper__txt h3{
    background:#F39800;
    color:#fff;
    font-size: 1.375rem;
    padding:0.5rem 2rem;
    text-align: center;
    border-radius: 50px;
    letter-spacing: -0.09em;
}
.lp-02__wrapper__txt__area{
    display: flex;
    column-gap:8px;
}
.lp-02__wrapper__txt__area__inner{
    width: calc((100% - 10px *2) / 3);
    height: auto;
}
.lp-02__wrapper__txt__area__inner img{
    width: 100%;
}
.lp-02__wrapper__txt__area__inner p{
    font-size: 1.0625rem;
    line-height: 1.4em;
    text-align: center;
    font-weight: 700;
}


@media screen and (max-width: 1000px) {

    .lp-02__wrapper{
        flex-wrap: wrap;
        position: relative;
        padding-top: 7.5rem;
        padding-right: 4px;
    }
    .lp-02__wrapper__img{
        position: absolute;
        top:0;
        left:0;
        z-index: -1;
    }
    .lp-02__wrapper__txt{
        width:100%;
        margin-top: 0rem;
        margin-right: 0rem;
        padding: 1.5rem;
        margin: 0;
    }
    .lp-02__wrapper__txt h2{
        font-size: 1.3rem;
        position: absolute;
        bottom: 103%;
        width: 59%;
        right: 24px;
    }
    .lp-02__wrapper__txt h3 {
        font-size: 1.2rem;
    }

    .lp-02__wrapper__txt__area{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
    }
    .lp-02__wrapper__txt__area__inner{
        width: calc((100% - 10px) / 2);
        height: auto;
    }
    .lp-02__wrapper__txt__area__inner p{
        font-size: 0.8rem;
    }

}

/*lp02のみ*/
.lp02 .lp-02__wrapper__txt h2{
    margin-top: 3.5rem;
    font-size: 2.5rem;
    text-align: left;
}

.lp02 .lp-02__wrapper__txt ul{
    padding-left: 0;
    margin-top: 2.5rem;
}

.lp02 .lp-02__wrapper__txt ul li{
    list-style: none;
    align-items: center;
    font-size: 1.6875rem;
    font-weight: 700;
    display: flex;
}
.lp02 .lp-02__wrapper__txt ul li:before{
    content:"";
    width: 2.125rem;
    height: 2.125rem;
    background: url(../img/lp/check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 0.1rem;
    display: inline-block;
    margin-right: 0.875rem;
}


.lp02 .lp-02__wrapper__txt ul li span{
    font-size: 2.5rem;
}

@media screen and (max-width: 1000px) {
    .lp02 .lp-02__wrapper__txt h2{
        font-size: 1.8rem;
    }
    .lp02 .lp-02__wrapper__txt ul{
        margin-top: 0rem;
    }
    .lp02 .lp-02__wrapper__txt ul li{
        font-size: 1.2875rem;
    }
    .lp02 .lp-02__wrapper__txt ul li span{
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 430px) {
    .lp02 .lp-02__wrapper__txt h2{
        font-size: 1.5rem;
    }
    .lp02 .lp-02__wrapper__txt ul li{
        font-size: 1.1rem;
    }
    .lp02 .lp-02__wrapper__txt ul li span{
        font-size: 1.5rem;
    }

}


/*================================
    lp-03
=================================*/

.lp-03{
    background: rgba(37, 161, 199,0.1);
    position: relative;
    padding: 0;
}

.lp-03__wrapper{
    display: flex;
    align-items: center;
}
.lp-03__wrapper__txt{
    width: 63%;
    padding-left:9.25rem;
}
.lp-03__wrapper__txt h2{
    font-size: 1.875rem;
    letter-spacing: -0.08em;
    line-height: 1.66em;
    font-weight: 700;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
}


.lp-03__wrapper__txt__area{
    display: flex;
    column-gap:8px;
}
.lp-03__wrapper__txt__area__inner{
    width: calc((100% - 10px *2) / 3);
    background: #fff;
    border-radius: 8px;
}

.lp-03__wrapper__txt__area__inner h3{
    padding:0.46rem 1.25rem;
    background:#25A1C7;
    color: #fff;
    font-size: 1.0625rem;
    line-height: 1.676em;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;

}
.lp-03__wrapper__txt__area__inner p{
    font-size: 1rem;
    line-height: 1.5em;
    padding:0.75rem 1.25rem;

}
.lp-03__wrapper__img{
    width: 37%;
}

@media screen and (max-width: 1000px) {
    .lp-03{
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
    }
    
    .lp-03__wrapper{
        flex-wrap: wrap;
        position: relative;
        padding-top: 1rem;

    }
    .lp-03__wrapper__txt{
        width: 100%;
        padding-left:0rem;
        padding-top:0rem;
    }
    .lp-03__wrapper__txt h2{
        font-size: 1.4rem;
        letter-spacing: -0.12em;
    }
    .lp-03__wrapper__img{
        position: absolute;
        z-index: -1;
        top:0;
        right:-24px;
        width: 41%;
    }
    .lp-03__wrapper__txt__area{
        flex-wrap: wrap;
        row-gap:8px;
    }
    .lp-03__wrapper__txt__area__inner{
        width: 100%;
    }
    



}


/*================================
    lp-04
=================================*/


.lp-04{
    max-width: 718px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top:0;
    padding-bottom: 0;
}
.lp-04 h2{
    font-size: 2rem;
    padding-top: 4.25rem;
    padding-left:0;
    padding-right:0;
}


.lp-04 h3{
    font-size: 1.5rem;
}
.lp-04 p{
    line-height: 2rem;
    margin-bottom: 2rem;
}

.lp-04__wrapper{
    background-color: rgba(37, 161, 199, 0.1) !important;
    border-radius: 50px;
    background-color: #fff;
    margin-top: 10%;
    padding: 0 8% 20px;
    position: relative;
    margin-top: 0;
}

.lp-04__wrapper__inner{
    padding: 1% 1% 2% 1%;
    border-bottom: 3px solid #25a1c7;
    margin: 3.5rem 0 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.lp-04__wrapper__inner__num{
    color: transparent;
    -webkit-text-stroke: 1px #25a1c7;
    text-stroke: 1px #25a1c7;
    font-size: 4rem;
    letter-spacing: 1px;
    position: relative;
    left: -5%;
    font-family: "Public Sans", sans-serif;
}

@media screen and (max-width: 1000px) {
    .lp-04 h2{
        font-size: 1.6rem;
    }
    .lp-04__wrapper__inner__num{
        font-size: 3rem;
        margin-bottom: 1rem!important;
    }
    .lp-04 h3{
        font-size: 1.4rem;
    }
    

}


/*================================
    lp-05
=================================*/

.lp-05{
    max-width: 718px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top:4.375rem;
    padding-bottom:0;
    position: relative;
    
}

.lp-05 h2{
    font-size: 2rem;
    padding-top: 4.25rem;
    padding-left:0;
    padding-right:0;
    border-radius: 50px;
    width: 100%;
}

.lp-05 .voice__wrapper{
    background-color: rgba(136, 185, 40, 0.1) !important;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 50px;
}


/*================================
    lp-06
=================================*/

.lp-06{
    margin-top:4.375rem;
    position: relative;
    padding: 0 0 24px 0;
}

.lp-06:before{
    background-color: rgba(246, 193, 86, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    content: "";
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
}


.lp-06 h2{
    text-align: center;
    background: #F6C156;
    color: #000;
    padding:8px 16px;
}

.lp-06__detail{
    background: rgba(255,255,255,0);
    margin-top:4.37rem;
    width: 100%;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    border-bottom:2px solid #F6C156;
    padding-bottom: 2.5rem;

}
.lp-06__detail p{
    font-size: 1.0625rem;
    line-height: 1.4em;
}

.lp-06__detail__num{
    color: transparent;
    -webkit-text-stroke: 1px #F6C156;
    text-stroke: 1px #F6C156;
    font-size: 3.625rem!important;
    letter-spacing: 1px;
    position: relative;
    left: -5%;
    line-height: 1em;
    font-family: "Public Sans", sans-serif;
}

.lp-06 .box-2{
    column-gap: 8%;
    flex-wrap: nowrap;
    margin-top: 2.375rem;
}

.lp-06 .box-2 .box__inner{
    display: flex;
    width: 38%;
    justify-content: center;
    align-content: flex-start;
    box-sizing: border-box;
}

.lp-06 .box-2 .box__inner .img{
    width: 30%;
    align-items: flex-start;
}

.lp-06 .box-2 .box__inner .img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.lp-06 .box-2 .box__inner .txt{
    width: 70%;
    box-sizing: border-box;
    padding:12px;
}

.lp-06 .box-2 .box__inner .txt h4{
    color:#000;
    background: #F6C156;
    display: inline-block;
    padding:0px 10px;
    border-radius: 16px;
    margin-bottom: 0.7em;
    margin-top:1em;
}


.lp-06 .box-2.type2 .box__inner{
    width: 50%;
    flex-wrap: wrap;
    row-gap: 0;
}

.lp-06 .box-2.type2 .box__inner .ttl{
    width: 50%;
    max-height: 160px;
}
.lp-06 .box-2.type2 .box__inner .ttl h4{
    color:#fff;
    background: #F6C156;
    display: inline-block;
    padding:0px 10px;
    border-radius: 16px;
    margin-bottom: 0.7em;
}

.lp-06 .box-2.type2 .box__inner .img{
    width: 50%;
    height: 100%;
    max-height: 160px;
}

.lp-06 .box-2.type2 .box__inner .img img{
    height: 100%;
    width: auto;
    object-fit: contain;
    
}


.lp-06 .box-2.type2 .box__inner .txt{
    width: 100%;
}



@media screen and (max-width: 768px) {
    .lp-06{
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;

    }

    .lp-06 h2{
        margin:0 calc(50% - 50vw)
    }

    .lp-06 .box-2{
        flex-wrap: wrap;
    }
    .lp-06 .box-2 .box__inner{
        width: 100%;
    }

    .lp-06 .box-2.type2 .box__inner{
        width: 100%;
    }
    
}

/*================================
    lp-07
=================================*/

.lp-07{
    max-width: 718px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top:4.375rem;
    padding-bottom:0;
}

.lp-07 p{
    font-size: 1.0625rem!important;
    line-height: 1.4em!important;
}


.lp-07__inner{
    position: relative;
    border: 4px solid #DE5419;
    border-radius: 50px;
    background-color: #fff;
    margin-top: 7rem;
    padding:98px 8% 20px;
    position: relative;
}

.lp-07 h3{
    color:#fff;
    background:#DE5419;
    display: inline-block;
    border-radius: 48px;
    position: absolute;
    text-align: center;
    font-size: 2.0rem;
    padding:12px 64px;
    line-height: 1.2em;
    left:50%;
    top:-1.5em;
    transform: translateX(-50%);
    white-space: nowrap;
}

.lp-07 .flow2__inner{
    display: flex;
    column-gap:5%;
    position: relative;
    margin-bottom: 3vw;
}
.lp-07 .flow2__inner:after{
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url(https://sbm-g.jp/etec/wp-content/themes/etec/lp/img/flow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 9vw;
    height: 3vw;
    left: 50%;
    transform: translateX(-50%);
    top:96%;
}

.lp-07 .flow2__inner.last:after{
    content:none;
}

.lp-07 .flow2__inner .img{
    width: 22.5%;
    border-radius: 0;
}

.lp-07 .flow2__inner .img img{
    border-radius: 0;
}

.lp-07 .flow2__inner .txt{
    width: 72.5%;
}
.lp-07 .flow2__inner .txt h4{
    background: rgba(222,84,25, 0.1) ;
    padding:4px 16px;
    border-radius: 24px;
    margin-bottom: 8px;
    font-size: 1.25rem;
    display: inline-block;
}

.lp-07 .flow2__inner .txt h4 span{
    color:#DE5419;
    letter-spacing: 1px;
    font-family: "Public Sans", sans-serif;
    font-size: 1.5rem;
    margin-right: 0.5em;

}
.lp-07 .flow2__inner .txt p{
    margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
    .lp-07{
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;

    }

    .lp-07 h3{
        font-size: 1.2rem;
        padding:12px 32px;
    }

    .flow2__inner{
        flex-wrap: wrap;
        row-gap:12px;
        margin-bottom: 62px;

    }
    .flow2__inner:after{
        height: 62px;
    }

    .flow2__inner .img{
        width: 100%
    }
    .flow2__inner .txt{
        width: 100%;
    }
}


/*================================
    lp-08
=================================*/

.lp-08{
    padding-top:0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom:4.375rem;

    position: relative;
}

.lp-08:before{
    background-color: rgba(37, 161, 199, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    content: "";
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;

}

.lp-08 h2{
    text-align: center;
    background: #25a1c7;
    color: #fff;
    padding:8px 16px;
    margin-bottom: 0;
}

.lp-08 p.read{
    font-size: 1.0625rem!important;
    line-height: 1.4em!important;
    margin-top: 3.875rem;
    margin-bottom: 3.875rem;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}
.lp-08 p.read-type2{
    font-size: 1.0625rem!important;
    line-height: 1.4em!important;
    margin-top: 3.875rem;
    margin-bottom: 1.875rem;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}


.lp-08 .promiss{
    margin-bottom: 3.875rem;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    border:2px solid #DE5419;
}
.lp-08 .promiss .ttl{
    background:#DE5419;
    color:#fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    padding:8px;
    margin-bottom: 0;
}
.lp-08 .promiss .detail{
    background:#fff;
    padding:8px;
}

.lp-08 .case__wrapper{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    column-gap: 2.25rem;
    row-gap: 2.25rem;
    padding-bottom: 0;
}
.lp-08 .case__wrapper__inner {
    width: calc((100% - 2.25rem) / 2);
    background: #fff;
    border-radius: 10.3px;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
}

.lp-08 .case__wrapper__inner .head p {
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.6em;
}

.lp-08 .case__wrapper__inner .body .detail p{
    padding-left: 1em;
}

.lp-08 h3{
    text-align: center;
}

.lp-08 h3.margin-ajust{
    margin-top: 3rem;
}


.lp-08 .service-detail__inner{
    background: rgba(255,255,255,0);
    margin-top: 0;
}

.lp-08 .note ul{
    padding-left:0;
}

.lp-08 .note ul li{
    list-style: none;
    font-size: 0.8rem;
    padding-left: 1em;
    text-indent: -1em;
}
.lp-08 .note ul li:before{
    content:"※";
}

.lp-08 h4.price-in{
    color: #fff;
    background: #F39800;
    display: block;
    padding: 0px 10px;
    border-radius: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: center;
    font-size: 1.8rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.625rem;
    margin-bottom: 3.125rem;


}
.lp-08 h4.price-in:before{
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background: url(../img/service/service01/icon-prevention.svg);
    background-repeat: no-repeat;
    background-size: contain;

}

.lp-08 .price-in__wrapper{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


@media screen and (max-width: 768px) {
    .lp-08{
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;

    }

    .lp-08 h2{
        margin:0 calc(50% - 50vw)
    }

    .lp-08 h4.price-in{
        font-size: 1.2rem;
    }
    .lp-08 h4.price-in:before{
        width: 1.2rem;
        height: 1.2rem;
    }

    .lp-08 .case__wrapper__inner {
        width: 100%;
    }
    
}


/*lp02のみ*/

.lp-08 .prevention-price{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.lp-08 .note{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .lp-08 .prevention-price{
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
}

/*================================
    lp-09
=================================*/


.lp-09{
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    margin-top: 4.375rem;
    position: relative;
    background:rgba(37, 161, 199, 0.1);
    padding:4.375rem 24px 6.25rem;
}

.lp-09__detail{
    padding: 2.875rem 24px 3.125rem;
    border-bottom: 3px solid #25a1c7;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.lp-09__detail p{
    font-size: 1.0625rem;
    line-height: 1.4em;

}

.lp-09__detail__num, .lp-09 .box-2 .box-2__inner .lp-09__detail__num{
    color: transparent;
    -webkit-text-stroke: 1px #25a1c7;
    text-stroke: 1px #25a1c7;
    font-size: 3.625rem!important;
    letter-spacing: 1px;
    position: relative;
    left: -5%;
    line-height: 1em!important;
    font-family: "Public Sans", sans-serif;
    margin-bottom: 2rem;
}

.lp-09 .box-2{
    margin-top: 1rem;
}
.lp-09 .box-2 .box-2__inner{
    box-sizing: border-box;
}
.lp-09 .box-2 .box-2__inner p{
    margin-top: 0.5rem;
}

.lp-09 .box-2 .box-2__inner .center-txt{
    margin-bottom: 0;
    margin-top: 0rem;

}

.lp-09 .box-2 .box-2__inner.img{
    padding: 6%;
    margin-top: -14%;
}

@media screen and (max-width: 768px) {
    .lp-09{
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 48px);
        box-sizing: border-box;

    }

    .lp-09 .box-2 .detail__num {
        padding-bottom:0;
    }

    .lp-09 .box-2{
        flex-wrap: wrap;
    }
    .lp-09 .box-2 .box-2__inner{
        width: 100%;
    }
    .lp-09__detail__num, .lp-09 .box-2 .box-2__inner .lp-09__detail__num{
        font-size: 3rem!important;

    }
}

/*================================
    lp-10
=================================*/
.lp-10{
    width: 100%;
    max-width: 548px;
    padding-top: 5rem;
    padding-bottom: 6.875rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.lp-10:before{
    background-color: rgba(37, 161, 199, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    content: "";
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
}
.lp-10 h2{
    padding-left: 0;
    padding-right:0;
    margin-bottom: 6.875rem;

}

.lp-10 .service-flow__inner__detail__txt h3{
    max-width: 100%;
    width: auto;
    display: inline-block;
    position: relative;
}

.lp-10 .service-flow__inner__detail__txt p{
    font-size: 1.0625rem;
    line-height: 1.4em;
}

.lp-10 .service-flow__inner__detail__txt h3.free:after{
    content: "";
    width: 3rem;
    height: 3rem;
    position: absolute;
    top:0;
    right:-1.7rem;
    background: url(../img/service/service01/icon-free.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.lp-10 .service-flow__inner__detail__num{
    width: 20%;
    color: #fff;
    -webkit-text-stroke: 1px #25a1c7;
    text-stroke: 2px #25a1c7;
    font-size: 4rem;
    letter-spacing: 1px;
    position: relative;
    line-height: 3rem;
    font-family: "Public Sans", sans-serif;
}
@media screen and (max-width: 768px) {
    .lp-10{
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
    }
    .lp-10 .service-flow__inner__detail__txt{
        padding-left: 1rem;
    }
    .lp-10 .service-flow__inner__detail__txt h3{
        font-size: 1.1rem;
    }
    .lp-10 .service-flow__inner__detail__txt h3:after{
        right:-2rem;
    }
    .lp-10 .service-flow__inner__detail__num{
        font-size: 3rem;

    }

}

/*================================
    lp-11
=================================*/

.lp-11 h2{
    font-size: 1.875rem;
}

.lp-11 .form-tell{
    margin-top: 3.625rem;
    line-height: 1.8em;
}

.lp-11 .form-tell-ex{
    text-align: center;
    line-height: 1.4em;
}

.lp-11 .form-tell a{
    font-size: 1.875rem;
    color:#3D3939;
    line-height: 1.8em;
}

.lp-11 .form-tell a .type-btn{
    color: #fff;
    background: #25a1c7;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
}


.lp-11 .form-mail{
    margin-top: 3.625rem;
    font-size: 1.875rem;
    color:#3D3939;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 700;
    position: relative;
    max-width: 762px;
    margin-left: auto;
    margin-right: auto;
}
.lp-11 .form-mail span{
    padding:0 12px;
    background: #fff;
    position: relative;
}
.lp-11 .form-mail:before{
    content:"";
    position: absolute;
    background: #F2F2F2;
    height: 1px;
    width: 100%;
    top:50%;
    left:0;
}



.lp-11 .contactform form{
    padding: 0px 24px;
    filter: drop-shadow(3px 5px 10px rgba(100, 100, 100, 0));
    max-width: 762px;
    margin-left: auto;
    margin-right: auto;
}



/*================================
    lp-12
=================================*/

.lp-12{
    padding:0 0 4.375rem 0;
    position: relative;
}


.lp-12:before{
    background-color: rgba(246, 193, 86, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    content: "";
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
}

.lp-12 h2{
    text-align: center;
    background: #F6C156;
    color: #fff;
    padding:8px 16px;
}

.lp-12__wrapper{
    width: 100%;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.lp-12__wrapper__inner{
    background: rgba(255,255,255,0);
    margin-top:0;
    border-bottom:3px solid #F6C156;
    padding:2.375rem 0 2.75rem;
}

.lp-12 .question{
    display: flex;
    align-items: center;
    margin-bottom: 1.625rem;
}
.lp-12__wrapper__inner .question:before{
    content:"Q1.";
    color: transparent;
    -webkit-text-stroke: 1.5px #F6C156;
    text-stroke: 1.5px #F6C156;
    font-size: 1.875rem;
    letter-spacing: 0.1em;
    position: relative;
    font-family: "Public Sans", sans-serif;
    width: 2em;
    margin-right: 0.1em;

}

.lp-12__wrapper__inner:nth-child(1) .question:before{
    content:"Q1.";
}
.lp-12__wrapper__inner:nth-child(2) .question:before{
    content:"Q2.";
}
.lp-12__wrapper__inner:nth-child(3) .question:before{
    content:"Q3.";
}
.lp-12__wrapper__inner:nth-child(4) .question:before{
    content:"Q4.";
}
.lp-12__wrapper__inner:nth-child(5) .question:before{
    content:"Q5.";
}
.lp-12__wrapper__inner:nth-child(6) .question:before{
    content:"Q6.";
}
.lp-12__wrapper__inner:nth-child(7) .question:before{
    content:"Q7.";
}
.lp-12__wrapper__inner:nth-child(8) .question:before{
    content:"Q8.";
}
.lp-12__wrapper__inner:nth-child(9) .question:before{
    content:"Q9.";
}

.lp-12 .question p{
    margin-bottom: 0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.lp-12 .answer{
    display: flex;
    align-items: flex-start;
}

.lp-12__wrapper__inner .answer:before{
    content:"A.";
    color:#F6C156;
    font-size: 1.875rem;
    letter-spacing: 0.1em;
    position: relative;
    font-family: "Public Sans", sans-serif;
    width: 2em;
    padding-left: 0.7em;
    margin-right: 0.5em;
}

.lp-12 .answer p{
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 2.14em;
}

.lp-12 .box-2{
    column-gap: 8%;
    flex-wrap: nowrap;
}

.lp-12 .box-2 .box__inner{
    display: flex;
    width: 38%;
    justify-content: center;
    box-sizing: border-box;
}

.lp-12 .box-2 .box__inner .img{
    width: 30%;
    align-items: flex-start;
}

.lp-12 .box-2 .box__inner .img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.lp-12 .box-2 .box__inner .txt{
    width: 70%;
    box-sizing: border-box;
    padding:12px;
}

.lp-12 .box-2 .box__inner .txt h4{
    color:#fff;
    background: #25a1c7;
    display: inline-block;
    padding:0px 10px;
    border-radius: 16px;
    margin-bottom: 0.7em;
    margin-top:1em;
}

.lp-12 .box-2.type2 .box__inner{
    width: 50%;
    flex-wrap: wrap;
    row-gap: 0;
}

.lp-12 .box-2.type2 .box__inner .ttl{
    width: 50%;
    max-height: 160px;
}
.lp-12 .box-2.type2 .box__inner .ttl h4{
    color:#fff;
    background: #25a1c7;
    display: inline-block;
    padding:0px 10px;
    border-radius: 16px;
    margin-bottom: 0.7em;
}

.lp-12 .box-2.type2 .box__inner .img{
    width: 50%;
    max-height: 160px;
}

.lp-12 .box-2.type2 .box__inner .img img{
    height: 100%;
    width: auto;
    object-fit: contain;
    
}


.lp-12 .box-2.type2 .box__inner .txt{
    width: 100%;
}

@media screen and (max-width: 768px) {
    .lp-12{
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
        padding-bottom: 300px;

    }

    .lp-12 h2{
        margin:0 calc(50% - 50vw)
    }

    .lp-12 .box-2{
        flex-wrap: wrap;
    }
    .lp-12 .box-2 .box__inner{
        width: 100%;
    }

    .lp-12 .box-2.type2 .box__inner{
        width: 100%;
    }
    
}


/*================================
    lp-13
=================================*/

.lp-13{
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0;
    padding-top: 4.125rem;

}
.lp-13__inner{
    max-width: 670px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 48px;
    background: rgba(246, 193, 86,0.1);
    padding:3.125rem 1.875rem;
}

.lp-13__inner h2{
    font-size: 1.6875rem;
    text-align: center;
    padding:0;
    color: #DE5419;
    font-weight: 700;
}
.lp-13__read{
    padding:0 3.125rem;
}
.lp-13__read p{
    font-size: 1.06rem;
    margin-bottom: 1.8rem;
    line-height: 2em;
}
.lp-13__read p span{
    font-size: 1.5rem;
    font-weight: 700;
}

.lp-13__wrapper .ttl{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.lp-13__wrapper .ttl .line1{
    font-size: 1.6875rem;
    color: #DE5419;
    transform: rotate(-4deg);
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lp-13__wrapper .ttl .line1:before{
    content:"";
    transform: rotate(-35deg);
    width: 2px;
    height: 100%;
    background: #DE5419;
    position: absolute;
    bottom:0;
    right:106%;
}
.lp-13__wrapper .ttl .line1:after{
    content:"";
    transform: rotate(35deg);
    width: 2px;
    height: 100%;
    background: #DE5419;
    position: absolute;
    bottom:0;
    left:106%
}

.lp-13__wrapper .ttl .line2{
    font-size: 1.6875rem;
    color: #DE5419;
    font-weight: 700;
}

.lp-13__contents{
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    margin-top: 1.75rem;
}
.lp-13__contents__inner{
    width: calc((100% - 8px * 2) / 3);
}
.lp-13__contents__inner p{
    font-size: 1.0625rem;
    text-align: center;
    line-height: 1.35em;
}
.lp-13__contents__inner p span{
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .lp-13__read{
        padding:0;
    }

    .lp-13__contents{
        flex-wrap: wrap;
        row-gap: 16px;
        justify-content: center;
    }
    .lp-13__contents__inner{
        width: calc((100% - 8px) / 2);
    }
}