.sp{
    display: none;
}
/*title-area*/
.title_top{
    background-color: #fff;
    color: #0099FF;
    padding: 10px 0;
    border-radius: 18px;
    font-size: 16px;
    max-width: 790px;
    font-weight: bold;
    margin: 30px auto 0;
    text-align: center;

}
#service_top h2::after {
    content: "";
    position: absolute;
    bottom: -33px;
    right: -94px;
    background: url(../img/icon_bg_emi.png);
    background-size: contain;
    width: 139px;
    height: 120px;
    z-index: -1;
    background-repeat: no-repeat;
}


@media (max-width:768px) {
    .title_top{
        border-radius: 13vw;
        font-size: 4vw;
        padding: 3vw 5vw;
        margin: 30px 30px 0px;
    }
    .sp{
        display: block;
    }
}
/* point-area */
.point_img{
    padding-top: 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
}
.point_area{
    display: flex;   
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;

}
.point_area-card{
    max-width: 280px;
    width: 100%;
}
.point_number, .point_title{
    text-align: center;
}
.point_number{
    background-color: #0099FF;
    color: #fff;
    border-radius: 18px;
    font-size: 18px;
    padding: 5px 0 5px;
    font-weight: 700;
}
.point_title{
    color: #0099FF;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 15px;
}
.point_text{

}
@media (max-width:768px) {
    .point_img{
        padding:0 2.66vw;
    }
    .point_area{
        flex-direction: column;
        padding:0 2.66vw;
    }
    .point_area-card{
        max-width: none;
    }
}
/* feature-area */
.feature_area{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}
.feature_area-card{
    display: flex;
    flex-direction: column;
    max-width: 440px;
    background-color: #fff;
    border-radius: 18px;
}
.feature_area-card .card_text{
    padding: 30px;
    line-height: 1.8;
}
.feature_area-card .card_title{
    font-size: 24px;
    font-weight: bold;
}
.link_button a{
    max-width: 440px;
}
.link_button.border a{
    margin: 25px auto 20px;
}
@media (max-width:768px) {
    .feature_area{
        flex-direction: column;
        align-items: center;
    }
}




/* flow-area */
#service_area .flow_box {
    display: flex;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
#service_area .flow_box:not(:last-child) {
    margin-bottom: 63px;
}
#service_area .flow_box .step {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background: #09F;
    color: #fff;
    display: flex;
    justify-content: center;
    width: 85px;
    align-items: center;
    text-align: center;
}
#service_area .flow_box .step p {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}
#service_area .flow_box .step p span {
    font-size: 36px;
    letter-spacing: 0.08em;
}
#service_area .flow_box .flow_contents {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    background: #F5F5F5;
    padding: 0 40px 0;
    width: 100%;
}
#service_area .flow_box .flow_contents h4 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.35;
    margin: 25px 0 25px 0;
    padding: 0;
    text-align: left;
}
#service_area .flow_box .flow_contents h4+.acc_body {
    border-top: 2px solid #888888;
    margin: 0 0 0;
    padding: 20px 0 0;
}
#service_area .flow_box :not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -43px;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 23px solid #09F;
    border-bottom: 0;
    margin: auto;
}
@media (max-width:768px) {
    #service_area .flow_box{
        flex-direction: column;
    }
    #service_area .flow_box:not(:last-child)::after{
        margin-bottom: 12vw;
    }
    #service_area .flow_box .step {
        width: 100%;
        border-top-left-radius: 2.133vw;
        border-top-right-radius: 2.133vw;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 4vw 0;
    }
    #service_area .flow_box .step p span {
        font-size: 8vw;
    }
    #service_area .flow_box .step p {
        font-size: 5.6vw;
        line-height: 1;
    }
    #service_area .flow_box .flow_contents {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 2.133vw;
        border-bottom-right-radius: 2.133vw;
        padding: 8vw 5.333vw 5.333vw;
    }
    #service_area .flow_box .flow_contents h4 {
        font-size: 5.333vw;
        text-align: center;
        position: relative;
    }
    #service_area .flow_box .flow_contents h4+.acc_body {
        margin-top: 5.333vw;
        padding-top: 5.333vw;
    }
    #service_area .flow_box:not(:last-child)::after {
        bottom: -8vw;
        border-right: 5.33vw solid transparent;
        border-left: 5.33vw solid transparent;
        border-top: 4vw solid #09F;
    }
}

/* recruit_area */
.recruit_area{
    max-width: 740px;
    margin: 0 auto 0;
    background-color: #F0F0F0;
    padding: 35px 40px 40px 40px;
    border-radius: 10px;
}
@media (max-width:768px) {
    .recruit_area{
        width: 90%;
    }

}
