/* スタッフ募集全体の囲い */
.recruit-box {
    margin: 40px auto;
    padding: 30px;
    background-color: #fdfaf5; /* 既存の白に馴染む、ごく薄いベージュ */
    border: 2px dashed #b5a397; /* 落ち着いた茶色の点線 */
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

/* タイトルに植物のような緑をアクセントに */
.recruit-box h3 {
    color: #6b8e23; /* オリーブグリーン */
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.recruit-box p {
    color: #555;
    line-height: 1.8;
}

/* 電話番号をボタン風に */
.recruit-tel {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #b5a397;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.recruit-tel:hover {
    background-color: #8e7d72;
    transform: translateY(-2px);
}
