/*--------------------------------
  基本設定
--------------------------------*/
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    background: #fdf6f5;
    color: #084d46;
    margin: 0;
    padding-bottom: 100px; /* ▼固定ボックス用の余白（縮めた） */
}

/*--------------------------------
  ページタイトル
--------------------------------*/
.page-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/*--------------------------------
  各セクション（登録ヘルパー / 正社員）
--------------------------------*/
.job-section {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.job-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.job-table p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.job-image {
    text-align: center;
    margin-top: 30px;
}

.job-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}


/*--------------------------------
  採用テーブル（PC：2列、SP：1列）
--------------------------------*/
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.job-table th {
    width: 25%;
    background: #fde7df;
    color: #084d46;
    font-weight: 700;
    padding: 14px;
    border-bottom: 1px solid #f2d2ca;
    vertical-align: top;
}

.job-table td {
    width: 75%;
    padding: 14px;
    border-bottom: 1px solid #f2d2ca;
    line-height: 1.8;
    color: #444;
}

/* 行の最終行は border なし */
.job-table tr:last-child th,
.job-table tr:last-child td {
    border-bottom: none;
}


@media (max-width: 768px) {

    .job-table {
        border-collapse: separate;
        border-spacing: 0 10px; /* 行の隙間つけて読みやすく */
    }

    .job-table tr {
        display: block;
        width: 100%;
    }

    .job-table th {
        display: block;
        width: 100%;
        background: #fde7df;
        color: #084d46;
        padding: 12px 14px;
        border-radius: 6px;
        margin: 0;
        box-sizing: border-box;
        text-align: center;
        font-size: 16px;
    }

    .job-table td {
        display: block;
        width: 100%;
        padding: 12px 14px 18px;
        background: #fff;
        border-radius: 6px;
        margin-top: 5px;
        box-sizing: border-box;
        font-size: 15px;
        line-height: 1.7;
    }

    /* 枠線を無しに（SPでは不要） */
    .job-table th,
    .job-table td {
        border: none;
    }
}




/*--------------------------------
  右下固定：採用問い合わせカード
--------------------------------*/
.recruit-contact-card {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 300px;
    background: #ffffff;
    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    padding: 20px 22px;

    z-index: 99999;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ホバーで少し浮く */
.recruit-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* 内側レイアウト */
.rc-inner {
    text-align: center;
}

/* タイトル */
.rc-title {
    font-size: 20px;
    font-weight: 700;
    color: #c23b8a;
    margin-bottom: 6px;
}

/* 担当名 */
.rc-staff {
    font-size: 14px;
    margin: 0 0 14px;
    color: #555;
}

/* 電話リンク */
.rc-tel {
    display: block;
    width: 100%;
    background: #c23b8a;
    color: #fff;

    padding: 12px 0;
    margin-bottom: 14px;

    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;

    transition: background 0.2s ease;
}

.rc-tel:hover {
    background: #a62871;
}

/* メールフォームボタン */
.rc-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-radius: 50px;

    color: #c23b8a;
    background: #fff;
    border: 2px solid #c23b8a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    transition: all 0.2s ease;
}

.rc-btn:hover {
    background: #c23b8a;
    color: #fff;
}




/*--------------------------------
  ▼ スマホ：タイトルありコンパクト版
--------------------------------*/
@media (max-width: 768px) {

    .recruit-contact-card {
        width: 80%;
        max-width: 290px;

        padding: 6px 10px !important; /* ←余白さらに削る */
        border-radius: 12px !important;

        bottom: 14px !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.14) !important;
    }

    /* タイトル：さらにコンパクト */
    .rc-title {
        font-size: 13px !important;
        margin-bottom: 1px !important;
    }

    /* 担当者：かなり小さく */
    .rc-staff {
        font-size: 10px !important;
        margin-bottom: 4px !important;
        line-height: 1.1;
    }

    /* TELボタンを薄く */
    .rc-tel {
        padding: 5px 0 !important;
        margin-bottom: 6px !important;
        font-size: 13px !important;
        border-radius: 24px !important;
    }

    /* メールフォームボタンも薄く */
    .rc-btn {
        padding: 5px 0 !important;
        font-size: 12px !important;
        border-radius: 24px !important;
    }
}
