/* -- Top Recruit Slider -- */
.top_slider_container {
    margin-top: 50px;
}
.top_slider_item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}
.top_slider_item a .left {
    box-sizing: border-box;
    padding: 30px 0 30px 30px;
    background: var(--main_color);
    color: #fff;
    width: 50%;
    min-height: 333px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.top_slider_item .slider_icon{
    display: block;
    border-bottom: 1px solid #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.top_slider_item .slider_title {
    font-size: 1.25rem;
    line-height: 2.1rem;
    font-weight: 800;
    margin-bottom: 57.5px;
}
.top_slider_item .name {
    font-size: 1.69rem;
    font-weight: 800;
    margin: 15px 0;
}
.top_slider_item .joining_year {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 35px;
    border: 1px solid #fff;
}
.top_slider_item .right {
    width: 50%;
    height: 333px;
    background-image: url("../img/recruit_03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* .top_slider_item .right {
    width: 54%;
}
.top_slider_item .right img {
    width: 100%;
} */
@media screen and (max-width: 767px) {
    .top_slider_container {
        margin-top: 30px;
        width: calc(100% - 60px);
        margin: 50px auto;
    }
    .top_slider_item a {
        flex-direction: column;
    }
    .top_slider_item a .left {
        padding: 15px 0 15px 15px;
        width: 100%;
        min-height: auto;
    }
    .top_slider_item .slider_icon{
        display: block;
        border-bottom: 1px solid #fff;
        font-size: 0.75rem;
        font-weight: 600;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
    .top_slider_item .slider_title {
        font-size: 1.25rem;
        line-height: 2.1rem;
        font-weight: 800;
        margin-bottom: 57.5px;
    }
    .top_slider_item .name {
        font-size: 1.69rem;
        font-weight: 800;
        margin: 15px 0;
    }
    .top_slider_item .joining_year {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 35px;
        border: 1px solid #fff;
    }
    .top_slider_item .right {
        width: 100%;
        height: 200px;
        background-image: url("../img/recruit_03.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    /* .top_slider_item .right {
        width: 100%;
    }
    .top_slider_item .right img {
        width: 100%;
    } */
}


/* recruit slider */
.recruit_slider {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto 30px;
    overflow: hidden;
}
.recruit_slider_item {
    width: 100%;
}
.recruit_slider_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .recruit_slider {
        width: 90%;
        margin: 0 auto;
    }
    .recruit_slider_item {
        width: 100%;
    }
    .recruit_slider_item img {
        width: 100%;
        height: 50vw;
        object-fit: cover;
    }
}


/* slick config style change */
.slick-slide {
    transform: scale(0.8);
    opacity: 0.5;
    transition: all .5s;

}
.slick-slide.slick-active {
    transform: scale(1);
    opacity: 1;
}
.slide-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 30px auto 50px;
}
.slide-dots li {
    width: 60px;
    height: 10px;
    background: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide-dots li:not(:last-child) {
    margin-right: 10px;
}
.slide-dots li.slick-active {
    background: var(--sec_color);
}
.slide-dots li button {
    color: transparent;
    width: 100%;
    height: 100%;
}
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 1;
}
.slick-prev:before, .slick-next:before {
    font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: var(--main_color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
    left: 1%;
}
.slick-next {
    right: 1%;
}
@media screen and (max-width: 767px) {
    .slick-slide {
        transform: scale(0.8);
        opacity: 0.5;
        transition: all .5s;
    }
    .slick-slide.slick-active {
        transform: scale(1);
        opacity: 1;
    }
    .slide-dots {
        margin: 15px auto 25px;
    }
    .slide-dots li {
        width: 30px;
        height: 5px;
    }
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 30px;
    }
    .slick-prev {
        left: -9%;
    }
    .slick-next {
        right: -9%;
    }
    .slick-prev.r-slick-prev {
        left: 2%;
    }
    .slick-next.r-slick-next {
        right: 2%;
    }
}