.recruit_info_item {
    padding: 1rem;
    border-bottom: solid 1px var(--main_color);
    margin: 1rem 0;
}

.Content_inner {
    margin-bottom: 80px;
}
.Content_wrapper h2 {
    text-align: center;
}
.apply_text {
    text-align: center;
    margin-bottom: 2rem;
}
.recruit_apply {
    margin-top: 2rem;
    text-align: center;
}
.recruit_emptype {
    border-radius: 20px;
    border: solid 1px var(--main_color);
    display: inline-block;
    padding: 0 1rem;
}
/* 応募ボタン */
.recruit_apply a {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: auto;
    padding: 1rem;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    background-color: var(--main_color);
    color: #fff;
    box-sizing: border-box;
    box-shadow: 0 10px 0 #1b5b91;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
/*ホバーでボタンが下に移動*/
.recruit_apply a:hover {
    box-shadow: 0 3px 0 #1b5b91 !important;
    transform: translateY(10px) !important;
    opacity: 100;
}

.apply_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 3rem 1rem;
    background-color: var(--sub_color);
}

.apply_list_urgent_recruit {
    background-color: #ffeeee;
}

.apply_item a {
    padding: 0.5rem 2rem;
    border: solid 2px var(--main_color);
    text-align: center;
    color: var(--text_color);
    text-decoration: none;
    border-radius: 10px;
    background-color: #fff;
    display: inline-block;
}
.apply_item {
    margin-bottom: 0.5rem;
}
.apply_item a:hover {
    background-color: var(--main_color);
    color: #fff;
    opacity: 100;
}

.recruit_urgent_recruit {
    color: red;
    padding-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .apply_list {
        justify-content: flex-start;
    }
}
