@charset "utf-8";

/*============================
NK架設のいいところ
============================*/
#point {
    position: relative;
}

#point::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -40%;
    width: 100%;
    height: 390px;
    background: #009f41;
    border-radius: 60px 0 0 60px;
}

#point .flex {
    align-items: center;
    justify-content: flex-start;
    width: 900px;
    background: #fff;
    border: 2px solid #009f41;
    border-left: none;
    padding: 60px 0;
    margin: 0;
    border-radius: 0 60px 60px 0;
    overflow: inherit;
    position: relative;
}

#point .flex::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 386px;
    border-top: 2px solid #009f41;
    border-bottom: 2px solid #009f41;
}

#point .box {
    width: 240px;
    text-align: center;
    margin-left: 60px;
}

#point h3 {
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 400;
    border-left: none;
    border-bottom: none;
    color: #009f41;
    font-size: 30px;
}

#point h3 span {
    font-size: 40px;
}

#point .box p {
    font-weight: 500;
    margin-bottom: 20px;
}

#point .box img {
    width: 123px;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    #point .flex {
        width: 90.625%;
        display: block;
        border-left: 2px solid #009f41;
        border-radius: 60px;
        padding: 30px;
        margin: auto
    }

    #point .flex::after,
    #point::before {
        position: unset;
    }

    #point .box {
        width: 100%;
        margin-left: 0;
    }

    #point .box:first-of-type {
        margin-bottom: 30px;
    }

    #point h3 {
        margin-bottom: 0;
        font-size: 24px;
    }

    #point h3 span {
        font-size: 30px;
    }
}
/*============================
募集要項
============================*/

#recruit_info h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    border-left: none;
    border-bottom: none;
    color: #fff;
    background: #259f41;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
}

#recruit_info .inner:last-of-type {
    margin-top: 100px;
}

@media only screen and (max-width: 768px) {
    #recruit_info .inner:last-of-type {
        margin-top: 40px;
    }
    #recruit_info .info br{
        display: none;
    }

}