/* スタッフ募集セクション */
.recruit {
    border-radius: 15px;
    margin: 0 auto;
    margin-bottom: 2em;
    width: 90%;
    background: linear-gradient(135deg, #778ce6 0%, #ebfcff 100%);
    color: white;
    text-align: center;
    border: 3px dashed #292e6b;
    padding: 1em;
}

.recruit-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.recruit-info {
    text-shadow: 1px 1px 0 #333,
        -1px 1px 0 #333,
        1px -1px 0 #333,
        -1px -1px 0 #333;
}

.recruit-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.recruit-badge {
    background: #ff6b6b;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.recruit-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    margin-top: 30px;
    cursor: pointer;

}

.recruit-image {
    position: absolute;
    right: 3em;
    width: 3em;
    object-fit: cover;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .recruit-content {
        grid-template-columns: 1fr;
    }
}