@charset "utf-8";

/* common */
.section-border__bar--recruitment {
    background-color: var(--primary-blue);
}

.topic--recruitment {
    color: var(--primary-blue);
}

/* .article__header */
/* 価値 */
.value {
    padding: 0 5%;
    margin: 25px auto 0;
    width: 100%;
}

.value__container {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
    background-color: var(--primary-white);
    padding: 25px;
}

.value__title {
    color: var(--primary-blue);
    font-size: 2.4rem;
    font-weight: 500;
    white-space: nowrap;
}

.value__txt {
    /* width: 75%; */
    color: var(--primary-blue);
}

/* slider */
.recruitment-slider {
    margin-top: 50px;
    padding: 20px 0;
    background-color: var(--primary-blue);
}

.slick-slide {
    padding: 0 10px;
    /* paddingでスライド間のスペースを調整 */
}

/*==========================
voice
==========================*/
.slick-track {
    display: flex;
}

.slick-slide {
    height: auto !important;
}

.slick-prev:before,
.slick-next:before {
    color: var(--primary-grayLow);
}

.voiceInner {
    margin-top: 50px;
    padding: 50px 5% 0;
    clip-path: inset(0);
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.voiceInner::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../images/voice_background.webp);
    background-size: cover;
    background-position: center;
}

.voice {
    display: flex;
    padding: 25px 0 50px;
    width: 100%;
    justify-content: center;
    gap: 30px;
}

.voice__ttl {
    font-size: 2rem;
    font-weight: 500;
    border-bottom: 1px solid #2A2A2A;
    text-align: start;
    margin-top: 20px;
}

.voice__item {
    padding: 20px 4%;
    width: 33%;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.50);
}

/* >直下の */
.voice .slick-slide>div,
.voice__item {
    height: 100%;
}

.voice__nameWrap {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: flex-end;
}

.voice__num {
    text-align: center;
    padding: 5px 10px;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.voice__txt {
    word-wrap: break-word;
    margin-top: 20px;
}

/* 矢印 */
.voiceInner {
    position: relative;
}

/* デフォルトの矢印非表示 */
.slick-prev::before,
.slick-next::before {
    content: none !important;
}

.voiceInner .slick-prev,
.voiceInner .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.voiceInner .slick-prev {
    left: -10px;
}

.voiceInner .slick-next {
    right: -10px;
}

/* 矢印の形 */
.slick-prev::after,
.slick-next::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #003057;
    border-right: 2px solid #003057;
}

/* 向き調整 */
.slick-prev::after {
    transform: rotate(-135deg);
    transform-origin: center;
}

.slick-next::after {
    transform: rotate(45deg);
    transform-origin: center;
}

.slick-list {
    margin: 0 auto;
}

.slick-dots {
    bottom: 12px;
}

/* slick dots カスタマイズ */
ul.slick-dots li button::before {
    content: none !important;
}

ul.slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

ul.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 1px solid #003057;
    border-radius: 50%;
    background-color: #fff;
    padding: 0;
    outline: none;
    transition: all 0.3s ease;
}

ul.slick-dots li.slick-active button {
    border-radius: 0;
    /* 正方形に */
    background-color: #003057;
}


/*==========================
process
==========================*/
.recruitmentProcess {
    margin-top: 25px;
}

.recruitmentProcess__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.recruitmentProcess__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: var(--primary-black);
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}

.process-arrow::before,
.process-arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.process-arrow::before {
    left: 3px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--primary-black);
    border-right: 1px solid var(--primary-black);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.recruitmentProcess__img {
    max-width: 200px;
}

/*==========================
職種一覧
==========================*/
.rInfo-detail-button--link {
    position: relative;
    width: 300px;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 34px;
    border-radius: 50px;
    background: var(--primary-white);
    backdrop-filter: blur(3.5px);
    box-shadow: 2px 8px 14px 0px rgba(0, 48, 87, 0.05);
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    margin-top: 30px;
}

.rInfo-detail-button--link:hover {
    background: #CDD9E3;
    box-shadow: 8px 8px 14px 0px rgba(0, 48, 87, 0.03)
}

.btnArrow--rInfo-detail-button {
    width: 46px;
}

.rInfo-detail-button--link:hover .btnArrow svg:first-child {
    left: 200%
}

.rInfo-detail-button--link:hover .btnArrow svg:last-child {
    left: 50%
}

/*------ 768------*/
@media screen and (min-width: 768px) {

    /* process */
    .recruitmentProcess__container {
        flex-direction: row;
    }

    .process-arrow::before {
        left: 3px;
        width: 10px;
        height: 10px;
        border-top: 1px solid var(--primary-black);
        border-right: 1px solid var(--primary-black);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/*------pc 1100------*/
@media screen and (min-width: 1100px) {
    .value__container {
        flex-direction: row;
        padding: 50px;
        gap: 50px;
        margin-top: 80px;
    }

    .recruitmentProcess {
        margin-top: 50px;
    }

    .value__title {
        font-size: 3.2rem;
    }

    /* slider */
    .recruitment-slider {
        margin-top: 80px;
        padding: 50px 0;
    }

    /* voice */
    .voiceInner {
        padding-top: 100px;
        margin-top: 100px;
    }

    .voice {
        padding: 50px 0 100px;
    }

    .voice__item {
        padding: 20px;
    }

    /* entry */
    .entry {
        margin-top: 50px;
    }
}