@charset "UTF-8";

/* ===============================
   recruit.css 
   採用情報セクション・リニューアル用
   =============================== */

/* 1. 共通余白・レイアウト調整 */
#sec06 {
    padding-top: 40px;
    padding-bottom: 60px;
}

.recruit-jobs-container {
    margin-bottom: 60px;
}

/* 2. サブタイトル（職種一覧の上） */
.recruit-sub-ttl {
    font-size: 26px;
    color: #2f553b;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.recruit-sub-ttl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2f553b;
}

/* 3. カードレイアウト本体 */
.recruit-job-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.job-card {
    background: #f9fdfa;
    border: 1px solid #e0e0e0;
    width: calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-sizing: border-box;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #2f553b;
}

/* カテゴリラベル */
.job-category {
    display: inline-block;
    font-size: 13px;
    background: #2f553b;
    color: #fff !important;
    padding: 3px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.job-category.AP {
    background: #6b8c75;
}

/* 職種名 */
.job-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.4;
}

/* 募集要項ボタン */
.btn-recruit {
    display: block;
    background: #fff;
    border: 2px solid #2f553b;
    color: #2f553b !important;
    padding: 12px 0;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    width: 100%;
}

.btn-recruit:hover {
    background: #2f553b;
    color: #fff !important;
}

/* 4. お問い合わせボックス */
.recruit-contact-box {
    background: #f4f7f5;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid #e0e8e2;
}

.recruit-contact-text {
    font-size: 19px;
    margin-bottom: 25px;
    color: #2f553b;
    font-weight: bold;
}

.recruit-contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333 !important;
    border: 1px solid #ddd;
    min-width: 260px;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #eef5f0;
    border-color: #2f553b;
}

.contact-btn small {
    font-size: 11px;
    color: #888;
    margin-bottom: 5px;
}

.contact-btn span {
    font-size: 20px;
    font-weight: bold;
    color: #2f553b;
}

/* 5. 画像周り */
.recruit-img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* ===============================
   スマホ調整
   =============================== */
@media screen and (max-width: 767px) {
    .job-card {
        width: 100%;
        margin-bottom: 15px;
    }
    .recruit-contact-box {
        padding: 30px 15px;
    }
    .contact-btn {
        width: 100%;
        min-width: auto;
    }
    .recruit-contact-text {
        font-size: 17px;
    }
    .recruit-sub-ttl {
        font-size: 22px;
    }
}