﻿
@font-face {
    font-family: 'lato-heavy';
    src: url('../../assets/fonts/Lato-Heavy.ttf') format('truetype');
}


#jobs .header-title {
    display: flex;
    margin-bottom: 80px;
    /*height: 8.2%;
    min-height: 118px;*/
    background: linear-gradient(to right, #2772fa, #020483);
}

    #jobs .header-title img {
        margin-left: 20px;
        height: 100px;
        padding: 20px 10px;
    }

    #jobs .header-title h1 {
        margin: auto 0;
        text-align: justify;
    }
#jobs-mb .header-title {
    display: flex;
    margin-bottom: 93px;
    height: 8.2%;
    min-height: 118px;
    background: linear-gradient(to right, #2772fa, #020483);
}

    #jobs-mb .header-title img {
        padding: 10px;
    }

    #jobs-mb .header-title h1 {
        margin: auto 0;
        text-align: justify;
    }

#keySearch {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    /*line-height: 24px;*/
    height: 47px;
    display: block;
}
.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*padding: 0 3.8%;*/
    gap: 20px 30px;
    margin-bottom: 80px;
}


.job-box {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    height: 100%;
}

.row-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px;
}


.job-image {
    flex: 1;
    min-width: 30%;
    max-width: 33%;
    align-self: flex-end;
}

    .job-image img {
        padding-top: 20px;
        width: auto;
        height: auto;
        object-fit: cover;
        display: block;
    }
.next-btn-unicode {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    border: 2px solid #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 24px;
    margin-left: 10px
}
    .next-btn-unicode:hover {
        background-color: #ffffff;
        color: #0056b3;
        text-decoration: none;
    }

.job-content {
    flex: 2;
    padding: 20px 0;
    text-align: left;
    color: #ffffff;
    align-self: center;
}

    .job-content h4 {
        /*font-size: 26.6667px;
        line-height: 37px;
        margin-bottom: 25px;*/
        font-weight: 700;
    }
    .job-content h5 {
        /*font-size: 21px;
        line-height: 27px;
        margin-bottom: 22px;*/
        font-weight: 700;
    }
    .job-content p {
        font-weight: 700;
        margin-bottom: 0;
        font-size: 14px;
    }
        .job-content ul {
        padding-left: 20px;
        margin: 0;
        font-size: 14px;
    }

.job-list-section {
    display: flex;
    /*padding: 0 120px;*/
    align-items: flex-start;
    position: relative;
}

.filter {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
    position: sticky;
    top: 200px;
    z-index: 100;
}
    .filter h2 {
        margin-bottom: 30px;
        font-weight: 700;
        color: #272e4e;
        /*font-size: 28px;*/
    }

.filter button {
    outline: none;
    box-shadow: none;
    border: none;
}

    .filter .arrow-btn {
        display: inline-block;
        transform: rotate(-45deg) translateY(-5px);
    }
.divider {
    width: 2px;
    background-color: #d0d0ce;
    height: 450px;
    flex-shrink: 0;
    margin-top: 50px;
    position: sticky;
    top: 220px; 
    z-index: 100;
    margin-left: 115px;
}

.job-list {
    flex: 3;
    padding-left: 115px;
    box-sizing: border-box;
}

    .job-list h2 {
        color: #272e4e;
        font-weight: 700;
        margin-bottom: 15px;
    }

.job-list-item {
    /*width: 70%;*/
    padding: 15px;
    border-radius: 6px;
    background: #ffffff;
    font-weight: 700;
}
    .job-list-item a {
        /*font-size: 22px;*/
        color: #0c5eda
    }

.job-highlight {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
    .job-highlight p{
        margin: 0;
    }
    .custom-dropdown {
        position: relative;
        width: 100%;
        font-family: 'Noto Sans JP', sans-serif;
    }

.dropdown-toggle {
    background-color: #d0d0ce;
    color: #0c41be;
    display: flex;
    width: 100%;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: left;
    font-weight: 700;
    justify-content: space-between;
}

    .dropdown-toggle .arrow {
        float: right;
    }
    .dropdown-toggle::after {
        display: none !important;
    }

.dropdown-menu {
    display: none;
    position: relative;
    top: 100%;
    width: 100%;
    background: white;
    z-index: 10;
    padding: 10px 0;
    margin: -15px 0 30px;
    border: none;
}

    .dropdown-menu label {
        display: block;
        padding: 8px 15px;
        cursor: pointer;
        color: #272e4e;
        font-weight: 600;
        margin: 0;
    }

    .dropdown-menu .skills-menu, .dropdown-menu .loc-menu, .dropdown-menu .cat-menu {
        max-height: 200px;
        overflow-y: auto;
    }
.form-control{
    background: #efefee;
    color: #272e4e;
    border: none;
}

.button-clear-search {
    width: 80%;
    max-width: 200px;
}
#keySearchHome {
    /*font-size: 18px;*/
    font-weight: 700;
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    height: 47px;
    display: block;
    background: #efefee;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
}
input[type=checkbox] {
    display: none;
}
input[type="checkbox"] + label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: #efefee;
    transition: background-color 0.2s ease;
}
input[type="checkbox"]:checked + label::before {
    background-color: #0c5eda;
    content: "✔";
    color: white;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
    text-align: center;
}


.clear {
    background: #ffffff;
    color: #272e4e;
    font-weight: 700;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 6px 0;
    border-radius: 8px;
    border: 4px solid #272e4e !important;
}
    .clear:hover {
        color: #0c41be;
    }

.search {
    background: linear-gradient(to right, #0c41be, #0ac3d1);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /*margin-bottom: 10px;*/
    padding: 5px 0;
    border-radius: 8px;
}
    .search:hover {
        filter: brightness(1.5);
    }
    .search img {
        margin-left: 10px;
        width: 36px;
        padding: 3px
    }

.job-tags {
    margin: 8px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #272e4e;
    border-radius: 6px;
    background-color: #ffffff;
    color: #272e4e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}


.btn-container-sta1 {
    display: flex;
    justify-content: center;
    margin: 0 auto 100px;
}

.btn-more-info-sta1 {
    padding: 25px 0 25px 74px;
    border-radius: 100px;
    font-size: 26.6667px;
    line-height: 37px;
    font-weight: 700;
    background-color: transparent;
    color: #272e4e;
    border: 2px solid #272e4e;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-more-info-sta1 .btn-arrow {
        width: 100px;
        transform: scaleX(1.5);
        font-weight: 700;
        margin-left: 74px;
        margin-right: 33px;
        font-size: 39px;
        position: relative;
        top: 5px;
    }

    .btn-more-info-sta1:hover {
        background-color: #ffffff;
        text-decoration: none;
    }

.btn-container-sta2 {
    display: flex;
    justify-content: center;
}

.btn-more-info-sta2 {
    text-align: center;
    width: 400px;
    padding: 15px 0;
    border-radius: 100px;
    /*font-size: 26.6667px;
    line-height: 37px;*/
    font-weight: 700;
    background-color: transparent;
    color: #272e4e;
    border: 2px solid #272e4e;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 80px 0 100px;
}

    .btn-more-info-sta2 .btn-arrow {
        width: 100px;
        transform: scaleX(1.5);
        font-weight: 700;
        margin-left: 10px;
        /*font-size: 24px;
        top: 5px;*/
        position: relative;
    }

    .btn-more-info-sta2:hover {
        background-color: #ffffff;
        text-decoration: none;
        color: #0c41be;
    }
.left-content-header p{
    font-family: sf-display-light;
}
.content-header p {
    font-family: sf-display-light;
    margin-bottom: 20px;
}
.left-content > * {
    margin-bottom: 10px;
}
.left-content hr {
    width: 100%;
    color: #EBF2FD;
}
.right-content {
    text-align: center;
}
.right-content img{
    max-width: 85%;
}
.statistic-des-container {
    display:flex;
}
.statistic-des-container img {
    width: 22px;
    margin-right: 10px;
}
.content-main-item {
    height: 100%;
}
.content-main {
    padding-bottom: 20px ;
}
.content-main .statistic-logo {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15% 15%;
    width: 100%;
    gap: 2%;
    padding: 0 15px;
}

.statistic-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #F4F8FB;
    height: 40px;
}
.statistic-logo .logo-container {
    text-align: center;
    padding: 15px;
    background: #F4F8FB;
    border-radius: 8px;
}
.statistic-logo img {
    height: 60px;
}

.statistic-number-container {
    display: grid;
    grid-template-columns: auto auto;
    height: inherit;
}
.statistic-num {
    font-size: 3rem;
    color: aliceblue;
    line-height: normal;
    letter-spacing: normal;
    pointer-events: auto;
    font-weight: 700;
    background: linear-gradient(to right, #0873D6 0%, #0835D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.statistic-des {
    color: #565E64;
    font-family: sf-display-light;
}

.statistic-item {
    border-right: 2px solid #fff;
    display: inline-grid;
}

.statistic-item:last-child {
    border: none !important;
}



@media (max-width: 1024px) {
    .divider {
        margin-left: 50px;
    }

    .job-list {
        padding-left: 50px;
    }

    .filter {
        padding-right: 0;
        top: 100px;
    }
    .statisticSection .row {
        padding: 0.75rem 0;
        margin-right: 0;
        margin-left: 0;
    }

    .content-header {
        text-align: justify;
        margin: 0;
    }

        .content-header h2 {
            text-transform: uppercase;
        }

    .statisticSection .row .first-child {
        border-right: 1px solid #fff;
    }

    .job-list-item a {
        font-size: 18px;
    }

    .pagination {
        justify-content: center;
    }

    .statisticSection .sec-container {
        width: 100%;
        display: block;
        padding: 0;
        /*text-align: center;*/
    }

    .content-main {
        bottom: 5%;
    }

        .content-main .statistic-logo {
            padding: 0;
        }

    .row-layout {
        padding: 0 20px;
    }

    .next-btn-unicode {
        height: 45px;
        width: 45px;
        font-size: 26px;
        border: 2px solid #ffffff;
    }

    .job-image {
        /*align-self: center;*/
    }
    .job-content ul li:nth-last-child(-n+3) {
        display: none !important;
    }
    .job-content h3 {
        /*font-size: 19px;*/
        margin-bottom: 15px;
    }

    .job-content p {
        /*font-size: 18px;*/
        margin-bottom: 10px;
    }

    .job-content ul {
        font-size: 16px;
    }

    .job-list-item {
        width: 100%;
    }

    .btn-container-sta1 {
        margin: 100px auto;
    }
}
@media (max-width: 767px) {
    #jobs .header-title {
        margin-bottom: 40px;
    }
        #jobs .header-title img {
            margin-left: 0;
            padding: 10px 5px;
        }
    .img-statistic .content-main {
        padding: 0 !important;
    }

    .job-content ul li:nth-last-child(-n+3) {
        display: none !important;
    }
    .job-list-section {
        padding: 0;
        gap: 0;
        display: block;
    }

    .job-list {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .job-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .job-content {
        padding: 10px 0;
    }
        .job-content p {
            /* font-size: 18px; */
            margin-bottom: 0;
        }

    .next {
        max-width: 50%;
        height: 50px;
    }

    .next-btn-unicode {
        height: 35px;
        width: 35px;
        font-size: 18px;
        border: 2px solid #ffffff;
    }

    .btn-more-info-sta1 {
        padding: 25px 0 25px 25px;
    }

        .btn-more-info-sta1 .btn-arrow {
            margin-left: 25px;
            margin-right: 25px;
            top: 0;
        }

    .filter {
        flex: 1;
        padding: 40px 0 40px;
        box-sizing: border-box;
        position: relative;
        top: 0;
    }
        .filter h2 {
            margin-bottom: 15px;
        }
    .dropdown-toggle {
        margin-bottom: 15px;
    }
    #keySearchHome {
        margin-bottom: 15px;
    }
    .search {
        margin-bottom: 0;
    }
    .clear {
        margin-bottom: 0;
    }
    .button-clear-search {
        width: 100%;
        display: flex;
        gap: 20px;
        max-width: 100%;
    }

    .job-cat {
        font-size: 16px;
        height: 44px;
        padding: auto 20px;
    }

    .search {
        height: 44px
    }

        .search img {
            width: 24px;
            height: 24px
        }

    .filter h4 {
        text-align: left;
    }

    .clearMobile {
        background: #ffffff;
        color: #272e4e;
        font-weight: 700;
        display: block;
        width: 100%;
        margin-bottom: 20px;
        padding: 6px 0;
        border-radius: 8px;
        border: 4px solid #272e4e !important;
    }

    .divider {
        width: 0;
        background-color: none;
        height: 0;
        margin-top: 0;
    }

    .btn-more-info-sta2 {
        margin: 40px 0 50px;
        width: 100%;
    }
    .pagination-list .nav-links h5 {
         margin-right: 0; 
         margin-top: 0; 
    }

        /*.btn-more-info-sta2 .btn-arrow {
            width: 100px;
            transform: scaleX(1.5);
            font-weight: 700;
            margin: 0 15px;*/
            /*font-size: 24px;*/
            /*position: relative;*/
            /*top: 5px;*/
        /*}*/
}

    @media (min-width: 850px) and (max-width: 1024px) {
        .statistic-num {
            font-size: 3rem;
            margin-bottom: 0;
        }

        .statistic-des {
            font-size: 2rem;
        }
    }

    @media (max-width: 1024px) {
        .statistic-item {
            justify-content: center;
        }
    }

    @media (min-width: 550px) and (max-width: 849px) {

        .statistic-num {
            font-size: 2.25rem;
            margin-bottom: 0;
        }

        .statistic-des {
            font-size: 1rem;
        }

        .statisticSection .row {
            padding: 0.25rem 0;
            margin-right: 0;
            margin-left: 0;
        }
    }

    @media (max-width: 549px) {
        .statisticSection .row {
            padding: 0.25rem 0;
            margin-right: 0;
            margin-left: 0;
        }

        .statistic-num {
            font-size: 1.75rem;
            margin-bottom: 0;
        }

        .content-main .statistic-logo {
            display: grid;
            grid-template-columns: 49% 49%;
            width: 100%;
            gap: 2%;
            margin-top: 20px;
        }

        .statistic-des {
            font-size: 16px;
        }

        .img-statistic .content-main {
            padding: 0 15px 15px 15px;
        }
    }

    #circle-statistic {
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 4em;
        color: #dd9d11;
        animation: animate 20s infinite linear;
    }

    @keyframes animate {
        0% {
            transform: translate(-50%, -50%) rotate(360deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
    }

    .job-info {
        list-style: none;
        margin: 0;
    }

    .job-count {
        color: #0c41be;
    }

    .pagination-list .nav-links {
        display: flex;
        /*gap: 25px;*/
        /*padding-bottom: 55px;*/
        align-items: center;
    }

        .pagination-list .nav-links h6 {
            margin-right: 10px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

    .pagination-list .pagination .nav-links a {
        outline: none;
    }

    .pagination-list .pagination .nav-links .page-numbers {
        height: 40px;
        width: 40px;
        line-height: 40px;
        border-radius: 8px;
        text-align: center;
        /*font-size: 16px;*/
        display: inline-block;
        /*margin: 0 5px;*/
        font-weight: 700;
        color: #272e4e;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        position: relative; /*
    border: 1px solid #DAE2EE;*/
        background: #FFF;
    }

        .pagination-list .pagination .nav-links .page-numbers.current {
            color: #0c41be;
            text-decoration: underline;
            /*border: 1px solid #0873D6;*/
        }