@charset "UTF-8";
#recruit {
    margin-bottom: 80px;
}
#recruit .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
#recruit .inner .text {
    width: 65%;
}
#recruit .inner .text dl {
    display: flex;
    flex-wrap: wrap;
}
#recruit .inner .text dt {
    width: 15%;
    font-weight: bold;
    margin-bottom: 20px;
}
#recruit .inner .text dd {
    width: 85%;
    margin-bottom: 20px;
    line-height: 1.8;
}
#recruit .inner .img {
    width: 35%;
    margin-left: 3%;
}

/*---------------------------------------スマートフォン-----------------------------
----------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
    #recruit {
        margin-bottom: 50px;
    }
    #recruit .inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    #recruit .inner .text {
        width: 100%;
        margin-bottom: 10px;
    }
    #recruit .inner .text dl {
        display: flex;
        flex-wrap: wrap;
    }
    #recruit .inner .text dt {
        width: 25%;
        margin-bottom: 10px;
    }
    #recruit .inner .text dd {
        width: 75%;
        margin-bottom: 10px;
        padding-left: 3%;
    }
    #recruit .inner .img {
        width: 100%;
    }
    #recruit .inner .img img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}