/* 採択事業ページ固有のスタイル */



/* ページ内ナビゲーション */
.page-nav {
    display: flex;
    justify-content: center;
    margin: 60px;
    gap: 30px;
}

.nav-button {
    width: 380px;
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #003366;
    color: #003366;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
	font-size: 120%;
}

.nav-button:hover {
    background-color: #f0f8ff;
    color: #003366;
    text-decoration: none;
}

/* 採択事業テーブル */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.results-table th {
    background-color: #e0e0e0;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ccc;
    font-size: 14px;
}

.results-table td {
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    text-align: center;
}

.results-table th:nth-child(1),
.results-table td:nth-child(1) {
    width: 15%;
}

.results-table th:nth-child(2),
.results-table td:nth-child(2) {
    width: 25%;
}

.results-table th:nth-child(3) {
    width: 60%;
    text-align: center;
}


.results-table td:nth-child(3) {
    width: 60%;
    text-align: left;
}

/* アーカイブリンク */
.archive-link {
    margin-top: 30px;
    text-align: center;
}

.archive-link a {
    color: #0066cc;
    text-decoration: underline;
    font-size: 14px;
}

.archive-link a:hover {
    color: #004499;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-button {
        width: 300px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .results-table th,
    .results-table td {
        padding: 8px;
        font-size: 12px;
    }
    
    .results-table th:nth-child(1),
    .results-table td:nth-child(1) {
        width: 20%;
    }
    
    .results-table th:nth-child(2),
    .results-table td:nth-child(2) {
        width: 30%;
    }
    
    .results-table th:nth-child(3),
    .results-table td:nth-child(3) {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .nav-button {
        width: 280px;
    }
    
    .results-table {
        font-size: 11px;
    }
    
    .results-table th,
    .results-table td {
        padding: 6px;
    }
}

/* コンパクトなページ内ナビゲーション */
.page-nav-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-button-compact {
    padding: 8px 20px;
    background-color: #fff;
    border: 2px solid #003366;
    color: #003366;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    min-width: 120px;
    white-space: nowrap;
}

.nav-button-compact:hover {
    background-color: #f0f8ff;
    color: #003366;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-nav-compact {
        gap: 10px;
    }
    
    .nav-button-compact {
        font-size: 12px;
        padding: 6px 15px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .page-nav-compact {
        gap: 8px;
    }
    
    .nav-button-compact {
        font-size: 11px;
        padding: 5px 12px;
        min-width: 80px;
    }
}