@charset "utf-8";

.careers-page .category-title{
    margin-bottom: 5px;
}

/* ---------- 
newgraduates-comment
----------*/
.newgraduates-comment{
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: calc(30/16);
    margin-bottom: 60px;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .newgraduates-comment{
        font-size: calc(15px / var(--fs-base) * 1rem);
        line-height: calc(28/15);
        text-align: left;
    }
}

/* ---------- 
newgraduates-block
----------*/
.newgraduates-block {
    margin-top: 60px;
    margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
    .newgraduates-block {
        margin: 60px 0;
    }
}

/* ---------- 
newgraduates-info(表組部分)
----------*/
.newgraduates-info .link-hover-line{
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    letter-spacing: 0.05em;
}

.newgraduates-selection-table {
    margin-bottom: 40px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-line);
    border-bottom: none;
    table-layout: fixed;
}

.newgraduates-selection-table th,
.newgraduates-selection-table td {
    padding: 12px 30px;
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: calc(34/16);
    border-bottom: 1px solid var(--color-line);
    vertical-align: initial;
}

.newgraduates-selection-table th:not(:last-child),
.newgraduates-selection-table td:not(:last-child) {
    border-right: 1px solid var(--color-line);
}

.newgraduates-selection-table .table-head th, .newgraduates-selection-table .table-head td {
    padding: 5px 30px;
}

.newgraduates-selection-table th {
    width: 16%;
    font-weight: bold;
    text-align: center;
    background-color: var(--color-sub);
    padding: 20px 0;
}

.newgraduates-selection-table th.text-dark {
    background-color: var(--color-line);
    vertical-align: middle;
}

.newgraduates-selection-table td {
    /* width: 84%; */
    font-weight: 400;
    background-color: var(--color-text-sub);
}

.newgraduates-selection-table tbody tr:first-child th {
    vertical-align: middle;
}

.newgraduates-selection-table tbody tr:first-child td {
    text-align: center;
    vertical-align: middle;
    background-color: var(--color-sub);
}

.newgraduates-selection-table__merged {
    text-align: center;
    vertical-align: middle;
}

.newgraduates-selection-table td .link-text {
    line-height: 2.125;
}

.newgraduates-selection-table td small {
    display: block;
    margin-top: 6px;
    font-size: clamp(12px, 0.875vw, calc(12px * var(--ratio)));
    font-weight: 400;
    line-height: calc(20/12);
    letter-spacing: 0.05em;
}

.newgraduates-selection-table td small + small{
    margin-top: 0;
}

.newgraduates-selection-table ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.newgraduates-selection-table ul li {
    position: relative;
    padding-left: 1em;
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    letter-spacing: 0.05em;
}

.newgraduates-selection-table ul li::before {
    content: "";
    position: absolute;
    top: 0.9em;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: var(--color-link_009BDA);
}

@media screen and (max-width: 700px) {
    .newgraduates-selection-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        margin-bottom: 60px;
        padding-bottom: 15px;
        scrollbar-width: thin;
        scrollbar-color: var(--color-707070) transparent;
    }

    .newgraduates-selection-table-wrap::-webkit-scrollbar {
        height: 10px;
    }

    .newgraduates-selection-table-wrap::-webkit-scrollbar-track {
        background: transparent;
    }

    .newgraduates-selection-table-wrap::-webkit-scrollbar-thumb {
        background-color: var(--color-707070);
    }

    .newgraduates-selection-table-wrap .newgraduates-selection-table {
        margin-bottom: 0;
        min-width: 725px;
        width: 100%;
    }

    .newgraduates-selection-table th,
    .newgraduates-selection-table td{
        font-size: calc(13px / var(--fs-base) * 1rem);
    }

    .newgraduates-selection-table th {
        width: 125px;
        line-height: calc(34 / 13);
        padding: 5px 0;
    }

    .newgraduates-selection-table td{
        line-height: calc(21 / 13);
        padding: 8px 20px;
    }

    .newgraduates-info .link-hover-line{
        font-size: calc(13px / var(--fs-base) * 1rem);
        line-height: calc(21 / 13);
    }

    .newgraduates-selection-table ul li {
        font-size: calc(13px / var(--fs-base) * 1rem);
        line-height: calc(21 / 13);
    }

    .newgraduates-selection-table ul li::before{
        top: 0.65em;
        width: 0.46em;
        height: 0.46em;
    }
}

/* ---------- 
contact
----------*/
.contact{
    background: var(--color-sub);
    border: none;
    padding: 40px;
    color: var(--color-text);
}

.contact h4:before{
    background-color: var(--color-link_009BDA);
}

@media screen and (max-width: 700px) {
    .contact{
        padding: 30px;
    }
}


/* ---------- 
btn-wrap
----------*/
.btn-wrap {
    margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
    .btn-wrap {
        margin-bottom: 60px;
    }
}