/*recruitページ独自のスタイル 直接記述*/
ul.recruit_links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}
ul.recruit_links li {
    width: calc(50% - 10px);
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: #ccc;
    mix-blend-mode: multiply;
    border: 4px solid white;
    transition: 0.6s;
}
ul.recruit_links li a {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(18px,2.5vw,26px);
    font-weight: bold;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    line-height: 1em;
    width: 100%;
    height: 160px;
    z-index: 1;
}
ul.recruit_links li img {
    width: 100%;
    height: 160px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    z-index: -1;
    transition: 0.6s;
}
ul.recruit_links li:hover {
    border: 4px solid #0071bc;
}
ul.recruit_links li:hover img{
    transform: scale(1.1);
}

/*採用求人バナー*/
.recruit-photo {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.recruit-photo:after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 100%;
    background-image: linear-gradient(90deg, transparent, #ffffff 60%);
    transition: 0.4s;
}
.recruit-photo img {
    width: 100%;
    height: 30vw;
    max-height: 280px;
    object-fit: cover;
    object-position: center center;
}
@media only screen and (min-width: 1380px) {
    .recruit-photo img {
        width: 100%;
        max-width: 1380px;
        height: 30vw;
        max-height: 280px;
        object-fit: cover;
        object-position: center left;
    }
    .recruit-photo:after {
        width: 55%;
    }
}
@media only screen and (min-width: 1680px) {
    .recruit-photo img {
        max-width: 1580px;        
        max-height: 320px;
    }
    .recruit-photo:after {
        width: 250px;
        background-image: linear-gradient(90deg, transparent, #ffffff 60%);
        left: 1430px;
    }
}

@media only screen and (max-width: 890px) {
    ul.recruit_links {
        gap: 10px;
    }
    ul.recruit_links li {
        width: calc(50% - 5px);
    }
    ul.recruit_links li a,
    ul.recruit_links li img {
        height: 100px;
    }
   .recruit-photo img {
        height: 140px;
    }
}

/*フッターでボランティア募集／採用求人削除*/
body.recruit_tags footer div.volunteer,
body.recruit_tags footer div.recruit-box {
    display: none;
}