/* 自社求人一覧ページのスタイル */

.header .main-header {
    border-bottom: none;
}

/* 注意バナー */
.notice-banner {
    background-color: #333333;
    color: white;
    padding: 15px 20px;
    margin: 0 -15px 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1000px) {
    .notice-banner {
        margin: 0 0 40px;
        border-radius: 4px;
    }
}

.main-content .container-fluid .container-fluid {
    margin-top: auto;
}

/* 求人カテゴリー */
.job-category {
    margin-bottom: 91px;
}

.job-category h3 {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    line-height: 1.448;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
}

/* 求人アイテム */
.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.job-item:hover {
    background-color: #f9f9f9;
}

.job-item .job-title {
    flex: 1;
    color: #222222;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    display: block;
    padding-right: 20px;
}

.job-item .job-title:hover {
    color: #333;
}

.job-item .job-status {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #333;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.job-item .job-status span {
    color: white;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
}

.job-item .job-status:hover {
    background-color: #555;
}

/* コンテンツエリアの調整 */
.recruitments-content {
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 15px;
}

@media screen and (min-width: 1060px) {
    .recruitments-content {
        max-width: 100%;
    }
}

/* 空の状態 */
.no-recruitments {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 15px;
}

/** 求人詳細ページのスタイル*****************************************/

.recruitment-detail {
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 15px;
}

.main-content > .container > .container-fluid {
    margin-top: 0;
    min-height: calc(100vh - 200px); /* フッターが常に画面下にあるようにする */
}

/* 応募ボタン */
.recruitment-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px !important;
    min-width: 320px;
    height: 70px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: white !important;
    background-color: #EC3131 !important;
    gap: 8px;
    border: none;
    border-radius: 10px;
    padding: 0;
}

.recruitment-apply-btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 640px) {
    .recruitment-apply-btn {
        min-width: auto;
        max-width: 90%;
        width: 90% !important;
    }
}

.recruitment-apply-btn__icon {
    width: 30px;
    height: 30px;
    margin-right: 16px;
}

.recruitment-apply-btn__text {
    font-weight: 400;
    line-height: 1;
}

/* 固定フッター */
.guest-fixed-footer-wrapper {
    min-height: 140px;
    margin: 40px 0;
}

.guest-fixed-footer {
    position: fixed;
    bottom: 55px;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 40px;
    z-index: 100;
    background-color: transparent;
}

.guest-fixed-footer.container-fluid {
    min-height: auto;
}

.guest-fixed-footer_buttons_item {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 70px;
    max-width: 90%;
}

.js-footer-reached.guest-fixed-footer {
    position: initial;
}

@media screen and (max-width: 640px) {
    .guest-fixed-footer_buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
