/**
 * 関連情報リンクセクションのスタイル
 */

.related-links {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.related-links h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-links .link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.related-links .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.related-links .btn-outline {
    background-color: white;
    border: 2px solid #007bff;
    color: #007bff;
}

.related-links .btn-outline:hover {
    background-color: #007bff;
    color: white;
}

.related-links .btn-official {
    background-color: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.related-links .btn-official:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .related-links .link-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .related-links .btn {
        text-align: center;
        width: 100%;
    }
}