@charset "utf-8";

#consulting .flex .photo,
#consulting .flex p {
    width: 325px;
}

#consulting .flex:not(:last-of-type) {
    margin-bottom: 40px;
}

#rental .flex .photo,
#rental .flex p {
    width: 325px;
}

#rental ul {
    counter-reset: no;
    margin-top: 20px;
}

#rental ul li {
    position: relative;
    font-weight: bold;
}

#rental ul li:not(:last-child) {
    margin-bottom: 10px;
}

#rental ul li::before {
    content: "";
    padding: 0 10px;
    background: #f39700;
    display: inline-block;
    margin-right: 10px;
    counter-increment: no;
    content: counter(no);
    color: #fff;
    border-radius: 3px;
}

#rental dl {
    background: #f6faff;
    padding: 30px;
    margin-top: 20px;
}

#rental dt {
    font-weight: bold;
    border-bottom: 1px solid #00bbd5;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#rental dd {
    line-height: 2;
}


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

    #consulting .flex .photo,
    #consulting .flex p {
        width: 100%;
    }

    #rental .flex .photo,
    #rental .flex p {
        width: 100%;
    }

    #rental dl {
        padding: 20px;
    }

    #rental dd {
        padding-left: 14px;
        position: relative;
    }

    #rental dd::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 5px;
        background: #079d66;
        display: block;
        position: absolute;
        left: 0;
        top: 12px;
    }
}
