@charset "UTF-8";
/* CSS Document */
/*--------------------------------------------------------------
/* 就職実績 （employment.html）*/
:root {
    --colorPoint_01: #f8f1e6;
    --colorPoint_02: #8A91C7;
    --colorPoint_03: #5DC2D0;
    --colorPoint_04: #fdd000;
    --colorPoint_05: #EE86A8;
}
#employment .p-index {
    width: 60%;
    max-width: 600px;
    margin: 0 auto;
    padding: 3em 0;
}
#employment .p-index .p-index_list {
    display: grid;
    gap: 3rem 5%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    li {
        position: relative;
        width: 100%;
        border-bottom: solid 1px #1E1E1E;
        text-align: center;
        font-weight: bold;
        &::before {
            content: "";
            position: absolute;
            inset: 0;
            margin: auto auto -2px auto;
            display: inline-block;
            width: min(50%, 100px);
            height: 4px;
            background: #1E1E1E;
        }
    }
    .index_p-course_adviser{
        &::before {
            background: var(--colorPoint_02);
        }
    }
    .index_p-course_esthe {
        &::before {
            background: var(--colorPoint_03);
        }
    }
    .index_p-course_beauty {
        &::before {
            background: var(--colorPoint_04);
        }
    }
    .index_p-course_makeup {
        &::before {
            background: var(--colorPoint_05);
        }
    }
    .index_p-course_hairdresser {
        &::before {
            background: var(--colorPoint_01);
        }
    }
    a {
        display: block;
        padding-bottom: .5em;
    }
    p {
        position: relative;
        display: inline-block;
        padding-right: 2em;
        &::before {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: block;
            width: .8em;
            height: .5em;
            clip-path: polygon(0 0, 50% 100%, 100% 0);
            background: #1E1E1E;
        }
    }
}

#employment .graduateCont {
    margin: 0 auto 80px;
    padding-top: 100px;
}
#employment .p-course_hairdresser .lineTtl::before {
    background: var(--colorPoint_01);
}
#employment .p-course_hairdresser .gradBox .course {
    color: #333;
}
#employment .gradBox {
    position: relative;
    &.mark_newOffer {
        &::before {
            content: "";
            position: absolute;
            top: 5px;
            left: 10px;
            display: block;
            width: 4em;
            height: 4em;
            aspect-ratio: 1/1;
            z-index: 99;
            background: url(../images/employment/2025/icon_offer.png) no-repeat 100% 100% / contain;
        }
    }
}
#employment .gradBox .prof {
    text-align: center;
}
