/* Staffing Page Styles */
.staffing-page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
}

/* Hero Section */
.staffing-hero {
    position: relative;
    width: 100%;
    margin-bottom:0px;
}

.staffing-hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.staffing-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 30px;
    background-color: transparent;
    max-width: 80%;
}
.staffing-subheading {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #000;
}
.staffing-title {
    font-size: 32px;
    margin: 0;
    font-weight: 500;
    color: #000;
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}
.sp{
display: none;
}

.staffing-post-list {
    max-width: 700px; 
    margin: 40px auto;
    padding: 20px 0;
}

.staffing-post-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-left: 4px solid #ffe42d; 
    background-color: #ffffff; 
}

.staffing-post-date {
    font-size: 14px;
    color: #666666;
    margin-right: 15px;
    font-family: monospace;
}

/* カテゴリー（背景を黄色に） */
.staffing-post-category {
    font-size: 12px;
    font-weight: bold;
    color: #333333;
    background-color: #ffe42d; /* 背景の黄色 */
    padding: 4px 8px;
    border-radius: 3px;
    margin-right: 15px;
    white-space: nowrap;
}

/* タイトル */
.staffing-post-title {
    font-size: 16px;
    margin: 0;
    flex: 1;
    min-width: 200px; /* スマホで崩れないよう折り返し対策 */
}

/* タイトルのリンク */
.staffing-post-title a {
    color: #333333;
    text-decoration: none;
}

.staffing-post-title a:hover {
    text-decoration: underline;
}

/* スマホ表示の調整（日付、カテゴリー、タイトルを縦並びにする場合） */
@media (max-width: 600px) {
    .staffing-post-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .staffing-post-date,
    .staffing-post-category {
        margin-right: 0;
    }
}






/* Responsive Design */
@media (max-width: 768px) {
    .pc{
    display: none;
    }

    .sp{
	display: block;
	}
}

@media (max-width: 480px) {

    
} 







