/* 追加のスタイル */

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* アニメーション */
.announcer-card,
.job-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ローディング状態 */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* フォーカススタイル */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid #1a1a2e;
    outline-offset: 2px;
}

/* エラーメッセージ */
.error-message {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 5px;
}

/* 成功メッセージ */
.success-message {
    color: #388e3c;
    font-size: 13px;
    margin-top: 5px;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.pagination .current {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

/* レスポンシブ画像 */
img {
    display: block;
}

/* ヒーロー画像の背景 */
.hero-section.has-background {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.hero-section.has-background .container {
    position: relative;
    z-index: 1;
}

/* 検索結果メッセージ */
.search-results-info {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 40px;
}

.search-results-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-results-info p {
    color: #666;
}

/* 空の状態 */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #666;
}

.empty-state p {
    color: #999;
}
